Update chatbot_page.py
Browse files- 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 |
|