forked from phoenix/litellm-mirror
v0 prisma schema
This commit is contained in:
parent
1cd24d8906
commit
d6f7fa7f4e
1 changed files with 10 additions and 0 deletions
|
@ -183,6 +183,16 @@ model LiteLLM_SpendLogs {
|
|||
end_user String?
|
||||
}
|
||||
|
||||
// View spend, model, api_key per request
|
||||
model LiteLLM_ErrorLogs {
|
||||
request_id String @id @default(uuid())
|
||||
model_name String @default("") // public model_name / model_group
|
||||
model_id String @default("") // ID of model in ProxyModelTable
|
||||
request_kwargs Json @default("{}")
|
||||
exceptionType String @default("")
|
||||
exceptionString String @default("")
|
||||
}
|
||||
|
||||
// Beta - allow team members to request access to a model
|
||||
model LiteLLM_UserNotifications {
|
||||
request_id String @id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue