Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ from agents.build_graph import build_graph
|
|
| 4 |
|
| 5 |
app = build_graph(llm_model_name="gpt-4o-mini")
|
| 6 |
|
| 7 |
-
def run_user_query(ticker):
|
| 8 |
QUERY = f"Produce investor-ready insights for {ticker}."
|
| 9 |
init_state: GraphState = {
|
| 10 |
"ticker": ticker,
|
|
|
|
| 4 |
|
| 5 |
app = build_graph(llm_model_name="gpt-4o-mini")
|
| 6 |
|
| 7 |
+
def run_user_query(ticker, history):
|
| 8 |
QUERY = f"Produce investor-ready insights for {ticker}."
|
| 9 |
init_state: GraphState = {
|
| 10 |
"ticker": ticker,
|