naman1102 commited on
Commit
09220f3
·
1 Parent(s): 8074815

Update chatbot_page.py

Browse files
Files changed (1) hide show
  1. chatbot_page.py +1 -0
chatbot_page.py CHANGED
@@ -57,6 +57,7 @@ def extract_keywords_from_conversation(history):
57
  max_tokens=64,
58
  temperature=0.3
59
  )
 
60
  keywords = response.choices[0].message.content.strip()
61
  return keywords
62
 
 
57
  max_tokens=64,
58
  temperature=0.3
59
  )
60
+ print(response.choices[0].message.content)
61
  keywords = response.choices[0].message.content.strip()
62
  return keywords
63