Spaces:
Sleeping
Sleeping
Commit ·
9d72398
1
Parent(s): be92417
Fixed issue in agent orchestratoe
Browse files
insucompass/core/agent_orchestrator.py
CHANGED
|
@@ -121,7 +121,7 @@ def plan_recommender_node(state: AgentState) -> Dict[str, Any]:
|
|
| 121 |
ingestor.ingest_documents(documents)
|
| 122 |
|
| 123 |
# 3. Generate structured recommendations from the live search results
|
| 124 |
-
recommendations =
|
| 125 |
|
| 126 |
# Create a human-friendly message to present the plans
|
| 127 |
generation_message = "Great, your profile is all set! I've prepared a few initial plan recommendations just for you. \n Ask me anything about these plans or any questions you have related to Health Insurance!"
|
|
|
|
| 121 |
ingestor.ingest_documents(documents)
|
| 122 |
|
| 123 |
# 3. Generate structured recommendations from the live search results
|
| 124 |
+
recommendations = planner.generate_recommendations(user_profile, documents)
|
| 125 |
|
| 126 |
# Create a human-friendly message to present the plans
|
| 127 |
generation_message = "Great, your profile is all set! I've prepared a few initial plan recommendations just for you. \n Ask me anything about these plans or any questions you have related to Health Insurance!"
|