Merge pull request #52 from TauricResearch/dev

Merge dev into main. Add support for Anthropic and OpenRouter.
This commit is contained in:
Yijia Xiao
2025-06-23 20:38:14 -04:00
committed by GitHub
5 changed files with 26 additions and 6 deletions

View File

@@ -51,9 +51,14 @@ def create_fundamentals_analyst(llm, toolkit):
result = chain.invoke(state["messages"])
report = ""
if len(result.tool_calls) == 0:
report = result.content
return {
"messages": [result],
"fundamentals_report": result.content,
"fundamentals_report": report,
}
return fundamentals_analyst_node