Spaces:
Runtime error
Runtime error
change code
Browse files
app.py
CHANGED
|
@@ -41,7 +41,7 @@ def predict(message, history):
|
|
| 41 |
if response.status_code != 200:
|
| 42 |
raise Exception(f'Request failed with status {response.status_code}, {response.text}')
|
| 43 |
print(response.json())
|
| 44 |
-
yield response.json()
|
| 45 |
|
| 46 |
|
| 47 |
gr.ChatInterface(predict).launch()
|
|
|
|
| 41 |
if response.status_code != 200:
|
| 42 |
raise Exception(f'Request failed with status {response.status_code}, {response.text}')
|
| 43 |
print(response.json())
|
| 44 |
+
yield response.json()['predictions'][0].result
|
| 45 |
|
| 46 |
|
| 47 |
gr.ChatInterface(predict).launch()
|