AI-EMBD / app.py
csalabs's picture
Update app.py
3df7084
raw
history blame
164 Bytes
import gradio as gr
from run_localGPT import main
def greet(query):
return answer
iface = gr.Interface(fn=greet, inputs=query, outputs=answer)
iface.launch()