graphchem / app.py
SanjeevReddy's picture
Add application file
e50dfb3
raw
history blame contribute delete
270 Bytes
#!/usr/bin/env python
# coding:utf-8
"""
Name: app.py
Author: Sanjeeva Reddy Dodlapati
Time: 8/21/22 10:17 PM
Desc:
"""
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()