pvanand commited on
Commit
1e5af2b
·
verified ·
1 Parent(s): f22261c

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
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": MULTI_AGENT_PROMPT}
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})