Spaces:
Runtime error
Runtime error
Commit
·
b34347b
1
Parent(s):
0b34360
Update app.py
Browse files
app.py
CHANGED
@@ -19,6 +19,6 @@ def CustomChatGPT(user_input):
|
|
19 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
20 |
return ChatGPT_reply
|
21 |
|
22 |
-
iface =
|
23 |
iface.launch()
|
24 |
|
|
|
19 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
20 |
return ChatGPT_reply
|
21 |
|
22 |
+
iface = gi.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "basit cyberwala gpt")
|
23 |
iface.launch()
|
24 |
|