File size: 185 Bytes
7c5c33c
3df7084
7c5c33c
b3978cc
 
7c5c33c
b3978cc
7c5c33c
1
2
3
4
5
6
7
8
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()