FirstSpace / app.py
AminFaraji's picture
Update app.py
f62991e verified
raw
history blame
163 Bytes
import gradio as gr
import langchain
def greet(name):
return "Helloooooo " + name
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()