llama / app.py
aiwithankit's picture
Create app.py
14df1c4
raw
history blame
202 Bytes
message = "hi hello world"
import gradio as gr
def random_response(message, history):
return message
demo = gr.ChatInterface(random_response)
if __name__ == "__main__":
demo.launch(debug=True)