Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -50,7 +50,7 @@ def chat(id, npc, prompt):
|
|
| 50 |
"data": [
|
| 51 |
id,
|
| 52 |
"inference",
|
| 53 |
-
prompt + "\n\n### output:\n" + output
|
| 54 |
]}).json()
|
| 55 |
|
| 56 |
d = response["data"][0]
|
|
|
|
| 50 |
"data": [
|
| 51 |
id,
|
| 52 |
"inference",
|
| 53 |
+
"### input:\n" + prompt + "\n\n### output:\n" + output
|
| 54 |
]}).json()
|
| 55 |
|
| 56 |
d = response["data"][0]
|