Update mcp/orchestrator.py
Browse files- mcp/orchestrator.py +1 -1
mcp/orchestrator.py
CHANGED
@@ -114,4 +114,4 @@ async def orchestrate_search(query: str, *, llm: str = _DEF_MODEL) -> Dict[str,
|
|
114 |
|
115 |
async def answer_ai_question(question: str, *, context: str, llm: str = _DEF_MODEL) -> Dict[str, str]:
|
116 |
summarize, qa_fn, engine = _get_llm(llm)
|
117 |
-
return {"answer": await qa_fn(question, context)}
|
|
|
114 |
|
115 |
async def answer_ai_question(question: str, *, context: str, llm: str = _DEF_MODEL) -> Dict[str, str]:
|
116 |
summarize, qa_fn, engine = _get_llm(llm)
|
117 |
+
return {"answer": await qa_fn(question, context)}
|