glite-pg / index.html
morisono
Upload folder using huggingface_hub
27f2b67 verified
raw
history blame contribute delete
No virus
622 Bytes
<html>
<head>
<script type="module" crossorigin src="https://cdn.jsdelivr.net/npm/@gradio/lite/dist/lite.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@gradio/lite/dist/lite.css" />
</head>
<body>
<gradio-lite theme="light">
<gradio-requirements>
</gradio-requirements>
<gradio-file name="demo.py" entrypoint>
import gradio as gr
def greet(name):
return "Hello, " + name + "!"
gr.Interface(greet, "textbox", "textbox").launch()
</gradio-file>
</gradio-lite>
</body>
</html>