llama / app.py
aiwithankit's picture
Update app.py
25876af
raw
history blame
211 Bytes
message = "hi hello world"
import gradio as gr
def random_response(message, history):
return message + "heya"
demo = gr.ChatInterface(random_response)
if __name__ == "__main__":
demo.launch(debug=True)