bhulston commited on
Commit
3305431
1 Parent(s): 714a25b

Update router.py

Browse files
Files changed (1) hide show
  1. router.py +1 -1
router.py CHANGED
@@ -15,7 +15,7 @@ def routing_agent(query, key, chat_history):
15
  messages=[
16
  {"role": "system", "content": system_prompt},
17
  {"role": "user", "content": query},
18
- {"role": "chat_history", "content": chat_history}
19
  ]
20
  )
21
 
 
15
  messages=[
16
  {"role": "system", "content": system_prompt},
17
  {"role": "user", "content": query},
18
+ {"role": "assistant", "content": "Here is the chat history: " + chat_history}
19
  ]
20
  )
21