Haven-Al / app.py
Heaven-AI's picture
Update app.py
297cc83 verified
raw
history blame contribute delete
557 Bytes
import gradio as gr
from datasets import load_dataset
ds = load_dataset("TuringEnterprises/Turing-Open-Reasoning")
print(ds)
with gr.Blocks(fill_height=True) as demo:
with gr.Sidebar():
gr.Markdown("# Inference Provider")
gr.Markdown("This Space showcases the deepseek-ai/DeepSeek-V3.2-Exp model, served by the novita API. Sign in with your Hugging Face account to use this API.")
button = gr.LoginButton("Sign in")
gr.load("models/deepseek-ai/DeepSeek-V3.2-Exp", accept_token=button, provider="novita")
demo.launch()