nmarafo commited on
Commit
c516493
·
verified ·
1 Parent(s): 42dfe50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -104,11 +104,11 @@ with gr.Blocks() as demo:
104
 
105
  I'm Norberto Martín Afonso. Follow me on [Twitter](https://twitter.com/norbertomartnaf) and [GitHub](https://github.com/nmarafo) for more updates and projects!
106
  """)
107
-
 
108
  chatbot = gr.ChatInterface(
109
- chat_stream_completion,
110
  additional_inputs=[gr.Textbox("You are a helpful AI.", label="System Prompt")]
111
  )
112
 
113
- demo.append(chatbot)
114
- demo.launch(server_name="0.0.0.0", debug=True)
 
104
 
105
  I'm Norberto Martín Afonso. Follow me on [Twitter](https://twitter.com/norbertomartnaf) and [GitHub](https://github.com/nmarafo) for more updates and projects!
106
  """)
107
+
108
+ # Añade el ChatInterface al bloque
109
  chatbot = gr.ChatInterface(
110
+ fn=chat_stream_completion,
111
  additional_inputs=[gr.Textbox("You are a helpful AI.", label="System Prompt")]
112
  )
113
 
114
+ demo.launch(server_name="0.0.0.0", debug=True)