Jayveersinh-Raj's picture
Update app.py
413c339
raw
history blame
338 Bytes
import gradio as gr
description = "The Indic language supported sentence completion language model"
title = "Try it out!"
examples = [["Hello my name is Raj and"]]
interface = gr.Interface.load("huggingface/autopilot-ai/Indic-sentence-completion",
description=description,
examples=examples
)
interface.launch()