Update utils.py
Browse files
utils.py
CHANGED
|
@@ -41,5 +41,4 @@ def chat_with_gpt(system_prompt: str, user_message: str) -> str:
|
|
| 41 |
temperature=0.7,
|
| 42 |
stream=False
|
| 43 |
)
|
| 44 |
-
return response.choices[0].message.content
|
| 45 |
-
|
|
|
|
| 41 |
temperature=0.7,
|
| 42 |
stream=False
|
| 43 |
)
|
| 44 |
+
return response.choices[0].message.content
|
|
|