mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 00:22:25 +00:00
resolve conflicts
This commit is contained in:
parent
a7a55748ca
commit
d0c8dced65
2 changed files with 240 additions and 16 deletions
|
|
@ -2737,6 +2737,40 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"/alpha/toolgroups/unregister": {
|
||||
"post": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"ToolGroups"
|
||||
],
|
||||
"summary": "Unregister a tool group",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "X-LlamaStack-ProviderData",
|
||||
"in": "header",
|
||||
"description": "JSON-encoded provider data which will be made available to the adapter servicing the API",
|
||||
"required": false,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/UnregisterToolGroupRequest"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"/alpha/version": {
|
||||
"get": {
|
||||
"responses": {
|
||||
|
|
@ -3840,9 +3874,6 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"built_in_type": {
|
||||
"$ref": "#/components/schemas/BuiltinTool"
|
||||
},
|
||||
"tool_prompt_format": {
|
||||
"$ref": "#/components/schemas/ToolPromptFormat",
|
||||
"default": "json"
|
||||
|
|
@ -5837,9 +5868,6 @@
|
|||
"$ref": "#/components/schemas/ToolParameter"
|
||||
}
|
||||
},
|
||||
"built_in_type": {
|
||||
"$ref": "#/components/schemas/BuiltinTool"
|
||||
},
|
||||
"metadata": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
|
|
@ -7933,6 +7961,18 @@
|
|||
"model_id"
|
||||
]
|
||||
},
|
||||
"UnregisterToolGroupRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tool_group_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"tool_group_id"
|
||||
]
|
||||
},
|
||||
"VersionInfo": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -8665,10 +8705,6 @@
|
|||
{
|
||||
"name": "ViolationLevel",
|
||||
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/ViolationLevel\" />"
|
||||
},
|
||||
{
|
||||
"name": "WolframAlphaToolDefinition",
|
||||
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/WolframAlphaToolDefinition\" />"
|
||||
}
|
||||
],
|
||||
"x-tagGroups": [
|
||||
|
|
@ -8862,8 +8898,7 @@
|
|||
"VectorMemoryBank",
|
||||
"VectorMemoryBankParams",
|
||||
"VersionInfo",
|
||||
"ViolationLevel",
|
||||
"WolframAlphaToolDefinition"
|
||||
"ViolationLevel"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue