LLAMA-Romantica / app.py
Xteom's picture
waitig for LLAMA aproval .-.
1e6ae7a
raw
history blame contribute delete
221 Bytes
# import gradio as gr
# gr.ChatInterface(get_llama_response).launch()
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()