mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
making logging a class - adding input-callbacks
This commit is contained in:
parent
dbda81c6ec
commit
7c33d1157a
12 changed files with 237 additions and 315 deletions
|
@ -22,11 +22,13 @@ create table
|
|||
messages json null default '{}'::json,
|
||||
response json null default '{}'::json,
|
||||
end_user text null default ''::text,
|
||||
status text null default ''::text,
|
||||
error json null default '{}'::json,
|
||||
response_time real null default '0'::real,
|
||||
total_cost real null,
|
||||
additional_details json null default '{}'::json,
|
||||
constraint request_logs_pkey primary key (id)
|
||||
litellm_call_id text unique,
|
||||
primary key (id)
|
||||
) tablespace pg_default;
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue