Skip to content

Commit c791cd5

Browse files
authored
Merge pull request #338 from tisnik/regenerated-openapi-schema
LCORE-248: regenerated OpenAPI schema
2 parents eb8635c + 8055fef commit c791cd5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

docs/openapi.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1443,6 +1443,18 @@
14431443
],
14441444
"title": "Attachments"
14451445
},
1446+
"no_tools": {
1447+
"anyOf": [
1448+
{
1449+
"type": "boolean"
1450+
},
1451+
{
1452+
"type": "null"
1453+
}
1454+
],
1455+
"title": "No Tools",
1456+
"default": false
1457+
},
14461458
"media_type": {
14471459
"anyOf": [
14481460
{
@@ -1461,7 +1473,7 @@
14611473
"query"
14621474
],
14631475
"title": "QueryRequest",
1464-
"description": "Model representing a request for the LLM (Language Model).\n\nAttributes:\n query: The query string.\n conversation_id: The optional conversation ID (UUID).\n provider: The optional provider.\n model: The optional model.\n system_prompt: The optional system prompt.\n attachments: The optional attachments.\n\nExample:\n ```python\n query_request = QueryRequest(query=\"Tell me about Kubernetes\")\n ```",
1476+
"description": "Model representing a request for the LLM (Language Model).\n\nAttributes:\n query: The query string.\n conversation_id: The optional conversation ID (UUID).\n provider: The optional provider.\n model: The optional model.\n system_prompt: The optional system prompt.\n attachments: The optional attachments.\n no_tools: Whether to bypass all tools and MCP servers (default: False).\n\nExample:\n ```python\n query_request = QueryRequest(query=\"Tell me about Kubernetes\")\n ```",
14651477
"examples": [
14661478
{
14671479
"attachments": [
@@ -1483,6 +1495,7 @@
14831495
],
14841496
"conversation_id": "123e4567-e89b-12d3-a456-426614174000",
14851497
"model": "model-name",
1498+
"no_tools": false,
14861499
"provider": "openai",
14871500
"query": "write a deployment yaml for the mongodb image",
14881501
"system_prompt": "You are a helpful assistant"

docs/openapi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,7 @@ Attributes:
727727
model: The optional model.
728728
system_prompt: The optional system prompt.
729729
attachments: The optional attachments.
730+
no_tools: Whether to bypass all tools and MCP servers (default: False).
730731

731732
Example:
732733
```python
@@ -742,6 +743,7 @@ Example:
742743
| model | | |
743744
| system_prompt | | |
744745
| attachments | | |
746+
| no_tools | | |
745747
| media_type | | |
746748

747749

0 commit comments

Comments
 (0)