ai / index.html
mehranandi's picture
Update index.html
4a8e90f verified
raw
history blame contribute delete
No virus
1.12 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gradio-Lite: Serverless Gradio Running Entirely in Your Browser</title>
<meta name="description" content="Gradio-Lite: Serverless Gradio Running Entirely in Your Browser">
<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" />
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
</style>
</head>
<body>
<gradio-lite>
<gradio-file name="app.py" entrypoint>
import gradio as gr
def process(input_text):
output_text == (input_text)
return output_image
demo = gr.Interface(
process,
"text",
"text",
examples=["hi,how are you", "write code of python by flask for a bot of teleg4"],
)
demo.launch()
</gradio-lite>
</body>
</html>