Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -224,7 +224,7 @@ class BasicAgent:
|
|
224 |
|
225 |
def _ask_gpt4o(self, text: str) -> str:
|
226 |
response = self.agent.chat(text)
|
227 |
-
return
|
228 |
'''
|
229 |
messages = [{"role": "user", "content": text}]
|
230 |
response = self.client.chat.completions.create(
|
|
|
224 |
|
225 |
def _ask_gpt4o(self, text: str) -> str:
|
226 |
response = self.agent.chat(text)
|
227 |
+
return str(response)
|
228 |
'''
|
229 |
messages = [{"role": "user", "content": text}]
|
230 |
response = self.client.chat.completions.create(
|