AI-EMBD / app.py
csalabs's picture
Update app.py
b3978cc
raw
history blame
185 Bytes
import gradio as gr
from run_localGPT import main
def greet(name):
return "Hello" + + "I am from CSA"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()