FirstSpace / app.py
AminFaraji's picture
Update app.py
b4c3524 verified
raw
history blame
242 Bytes
import gradio as gr
import langchain
from google.colab import drive
drive.mount('/content/drive',force_remount=True)
def greet(name):
return "Helloooooo " + name
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()