Ayushdavidkushwahaaaa's picture
Update app.py
b8966f9 verified
raw
history blame contribute delete
227 Bytes
import gradio as gr
def chatbot_response(message):
return f"You said: {message}"
iface = gr.Interface(fn=chatbot_response, inputs="text", outputs="text")
iface.launch(server_name="0.0.0.0", server_port=7860, share=True)