mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
chore(proxy): regenerate lazy OpenAPI snapshot and dashboard schema
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
57d8ae9d17
commit
7dd79ece2b
2 changed files with 40 additions and 0 deletions
|
|
@ -10238,6 +10238,18 @@
|
|||
"description": "AWS Bedrock runtime endpoint URL",
|
||||
"title": "Aws Bedrock Runtime Endpoint"
|
||||
},
|
||||
"aws_external_id": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
}
|
||||
],
|
||||
"description": "External ID required by the target role's trust policy on sts:AssumeRole",
|
||||
"title": "Aws External Id"
|
||||
},
|
||||
"aws_profile_name": {
|
||||
"anyOf": [
|
||||
{
|
||||
|
|
@ -25237,6 +25249,9 @@
|
|||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/ChatCompletionImageObject"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/ChatCompletionToolReferenceObject"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -25324,6 +25339,26 @@
|
|||
"title": "ChatCompletionToolParamFunctionChunk",
|
||||
"type": "object"
|
||||
},
|
||||
"ChatCompletionToolReferenceObject": {
|
||||
"description": "Anthropic tool-search result block, carried through untouched so it survives a round trip.",
|
||||
"properties": {
|
||||
"tool_name": {
|
||||
"title": "Tool Name",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"const": "tool_reference",
|
||||
"title": "Type",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"tool_name"
|
||||
],
|
||||
"title": "ChatCompletionToolReferenceObject",
|
||||
"type": "object"
|
||||
},
|
||||
"ChatCompletionUserMessage": {
|
||||
"properties": {
|
||||
"cache_control": {
|
||||
|
|
|
|||
5
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
5
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -29466,6 +29466,11 @@ export interface components {
|
|||
* @description AWS Bedrock runtime endpoint URL
|
||||
*/
|
||||
aws_bedrock_runtime_endpoint?: string | null;
|
||||
/**
|
||||
* Aws External Id
|
||||
* @description External ID required by the target role's trust policy on sts:AssumeRole
|
||||
*/
|
||||
aws_external_id?: string | null;
|
||||
/**
|
||||
* Aws Profile Name
|
||||
* @description AWS profile name for credential retrieval
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue