Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def get_text_response(user_message,history):
|
|
33 |
response = llm_chain.predict(user_message = user_message)
|
34 |
return response
|
35 |
|
36 |
-
|
37 |
|
38 |
if __name__ == "__main__":
|
39 |
-
|
|
|
33 |
response = llm_chain.predict(user_message = user_message)
|
34 |
return response
|
35 |
|
36 |
+
iface = gr.ChatInterface(get_text_response)
|
37 |
|
38 |
if __name__ == "__main__":
|
39 |
+
iface.launch(share = True) #To create a public link, set `share=True` in `launch()`. To enable errors and logs, set `debug=True` in `launch()`.
|