ChatWithWebsite / app.py
ashutoshzade's picture
Update app.py
55e44e5
import gradio as gr
def greet(website, question):
greeting = f"{name} {lastname}"
return greeting
demo = gr.Interface(
fn=greet,
inputs=["text", "text"],
outputs=["text"]
)
demo.launch()