Spaces:
Runtime error
Runtime error
Jayveersinh-Raj
commited on
Commit
•
057eaa2
1
Parent(s):
3e3adc9
Main file gradio
Browse files
app.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
description = "The Indic language supported sentence completion language model"
|
4 |
+
title = "Try it out!"
|
5 |
+
examples = [["Hello my name is Raj and"]]
|
6 |
+
|
7 |
+
interface = gr.Interface.load("huggingface/autopilot-ai/Indic-sentence-completion",
|
8 |
+
description=description,
|
9 |
+
examples=examples
|
10 |
+
)
|
11 |
+
|
12 |
+
interface.launch()
|