Added writer agent to generate answers
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ class BasicAgent:
|
|
100 |
}
|
101 |
|
102 |
# Use the workflow to process the question
|
103 |
-
workflow_response = await self.agent_workflow.
|
104 |
question,
|
105 |
initial_state=initial_state
|
106 |
)
|
|
|
100 |
}
|
101 |
|
102 |
# Use the workflow to process the question
|
103 |
+
workflow_response = await self.agent_workflow.run(
|
104 |
question,
|
105 |
initial_state=initial_state
|
106 |
)
|