File size: 163 Bytes
c8b989d
f62991e
c8b989d
 
f62991e
c8b989d
 
 
1
2
3
4
5
6
7
8
import gradio as gr
import langchain

def greet(name):
    return "Helloooooo " + name 

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()