JoelGPT / app.py
Jedordon's picture
Update app.py
d47443e verified
raw
history blame contribute delete
197 Bytes
import gradio as gr
def respond(message, history):
return "You asked about: " + message
gr.ChatInterface(fn=respond, title="JoelGPT: Ask Me About Machine Learning").launch(share=True)