Update agents/build_graph
Browse files- agents/build_graph +2 -0
agents/build_graph
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
from langgraph.graph import StateGraph, END
|
|
|
|
|
|
|
| 2 |
|
| 3 |
def build_graph(llm_model_name: str = "gpt-4o-mini"):
|
| 4 |
|
|
|
|
| 1 |
from langgraph.graph import StateGraph, END
|
| 2 |
+
from agent_builder import make_news_agent, make_earnings_agent, make_market_agent, make_synthesizer
|
| 3 |
+
from state_graph import StateGraph
|
| 4 |
|
| 5 |
def build_graph(llm_model_name: str = "gpt-4o-mini"):
|
| 6 |
|