File size: 557 Bytes
4b33500
dc289aa
297cc83
 
 
 
 
f83db16
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()