You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/openapi.json
+29-4Lines changed: 29 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3986,7 +3986,8 @@
3986
3986
"get_metrics",
3987
3987
"get_config",
3988
3988
"info",
3989
-
"model_override"
3989
+
"model_override",
3990
+
"rlsapi_v1_infer"
3990
3991
],
3991
3992
"title": "Action",
3992
3993
"description": "Available actions in the system.\n\nNote: this is not a real model, just an enumeration of all action names."
@@ -5833,7 +5834,7 @@
5833
5834
],
5834
5835
"title": "Name space",
5835
5836
"description": "Database namespace",
5836
-
"default": "lightspeed-stack"
5837
+
"default": "public"
5837
5838
},
5838
5839
"ssl_mode": {
5839
5840
"type": "string",
@@ -6205,6 +6206,26 @@
6205
6206
"application/json",
6206
6207
"text/plain"
6207
6208
]
6209
+
},
6210
+
"vector_store_ids": {
6211
+
"anyOf": [
6212
+
{
6213
+
"items": {
6214
+
"type": "string"
6215
+
},
6216
+
"type": "array"
6217
+
},
6218
+
{
6219
+
"type": "null"
6220
+
}
6221
+
],
6222
+
"title": "Vector Store Ids",
6223
+
"description": "Optional list of specific vector store IDs to query for RAG. If not provided, all available vector stores will be queried.",
6224
+
"examples": [
6225
+
"ocp_docs",
6226
+
"knowledge_base",
6227
+
"vector_db_1"
6228
+
]
6208
6229
}
6209
6230
},
6210
6231
"additionalProperties": false,
@@ -6213,7 +6234,7 @@
6213
6234
"query"
6214
6235
],
6215
6236
"title": "QueryRequest",
6216
-
"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 generate_topic_summary: Whether to generate topic summary for new conversations.\n media_type: The optional media type for response format (application/json or text/plain).\n\nExample:\n ```python\n query_request = QueryRequest(query=\"Tell me about Kubernetes\")\n ```",
6237
+
"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 generate_topic_summary: Whether to generate topic summary for new conversations.\n media_type: The optional media type for response format (application/json or text/plain).\n vector_store_ids: The optional list of specific vector store IDs to query for RAG.\n\nExample:\n ```python\n query_request = QueryRequest(query=\"Tell me about Kubernetes\")\n ```",
6217
6238
"examples": [
6218
6239
{
6219
6240
"attachments": [
@@ -6239,7 +6260,11 @@
6239
6260
"no_tools": false,
6240
6261
"provider": "openai",
6241
6262
"query": "write a deployment yaml for the mongodb image",
0 commit comments