Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -508,7 +508,7 @@ def followup_agent(query: FollowupQueryModel, background_tasks: BackgroundTasks,
|
|
508 |
logger.info(f"Received followup agent query: {query.query}")
|
509 |
if query.conversation_id not in conversations:
|
510 |
conversations[query.conversation_id] = [
|
511 |
-
{"role": "system", "content":
|
512 |
]
|
513 |
|
514 |
conversations[query.conversation_id].append({"role": "user", "content": query.query})
|
|
|
508 |
logger.info(f"Received followup agent query: {query.query}")
|
509 |
if query.conversation_id not in conversations:
|
510 |
conversations[query.conversation_id] = [
|
511 |
+
{"role": "system", "content": MULTI_AGENT_PROMPT_V2}
|
512 |
]
|
513 |
|
514 |
conversations[query.conversation_id].append({"role": "user", "content": query.query})
|