{"openapi":"3.0.0","paths":{"/ask_query":{"post":{"tags":["ask_query"],"operationId":"post__ask_query","requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["query"],"properties":{"query":{"type":"string","description":"Give me query."}}}}}},"responses":{"200":{"description":"Response generated successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Success message"}}}}}},"400":{"description":"Invalid Query","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"}}}}}}}}},"/configure_llm":{"post":{"tags":["configure_llm"],"operationId":"post__configure_llm","requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["apiKey","model"],"properties":{"apiKey":{"type":"string"},"model":{"type":"string"}}}}}},"responses":{"200":{"description":"Configured successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Success message"}}}}}},"400":{"description":"Invalid Key","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"}}}}}}}}},"/upload_docs":{"post":{"tags":["upload_docs"],"operationId":"post__upload_docs","requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["filename","file"],"properties":{"filename":{"type":"string"},"file":{"type":"string"}}}}}},"responses":{"200":{"description":"Uploaded file successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","description":"Success message"}}}}}},"400":{"description":"Invalid file","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string","description":"Error message"}}}}}}}}}},"servers":[{"url":"http://localhost:10947"}],"components":{"schemas":{}}}