khushpatel2002's picture
Update app.py
e22b337
raw
history blame contribute delete
424 Bytes
import gradio as gr
description = "The Indic language supported sentence completion language model"
title = "Try it out!"
examples = [["Hello, welcome to AutopilotAI, thank"],
["नमस्कार, AutopilotAI में आपका"]]
interface = gr.Interface.load("huggingface/autopilot-ai/Indic-sentence-completion",
description=description,
examples=examples
)
interface.launch()