File size: 434 Bytes
883c6db
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

# This uses the Hugging Face Inference API (Serverless) 
# It is the best way to run large models on the Free CPU tier.
title = "Qwen 3.5 9B Uncensored Chat"
description = "A private instance of the Qwen 3.5 9B model."

interface = gr.load(
    name="models/LEONW24/Qwen3.5-9B-Uncensored",
    title=title,
    description=description,
    src="hf" # Tells Gradio to use the Hugging Face API
)

interface.launch()