Spaces:
Runtime error
Runtime error
Commit ·
927edf6
1
Parent(s): f657eba
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,6 +15,6 @@ def CustomChatGPT(user_input):
|
|
| 15 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
| 16 |
return ChatGPT_reply
|
| 17 |
|
| 18 |
-
demo = gradio.Interface(fn=CustomChatGPT, inputs
|
| 19 |
|
| 20 |
-
demo.launch(
|
|
|
|
| 15 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
| 16 |
return ChatGPT_reply
|
| 17 |
|
| 18 |
+
demo = gradio.Interface(fn=CustomChatGPT, inputs="text", outputs="text", title="Twitter Tweets Pro")
|
| 19 |
|
| 20 |
+
demo.launch()
|