Text Generation
Transformers
Safetensors
English
mistral
web-generation
html
css
tailwind-css
ui-generation
web-design
small-model
qwen3
conversational
text-generation-inference
How to use from
SGLangUse Docker images
docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "Tesslate/WEBGEN-Devstral-24B" \
--host 0.0.0.0 \
--port 30000# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Tesslate/WEBGEN-Devstral-24B",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'Quick Links
WEBGEN DEVSTRAL IMAGES.
WEBGEN MODELS MAKE HTML CSS JS TAILWIND ONLY LANDING PAGES. IF YOU NEED REACT, PYTHON, OR OTHER LANGUAGES, CHECK OUT UIGEN-X, UIGENT, UIGEN SERIES. IT WAS TRAINED ON CUSTOM TEMPLATES, FED INTO GPT-OSS-120B ON 13X MI300XS TO CREATE THE DATASET. THEN SFT FINETUNED. APACHE 2.0.
TRAINED BY QINGY2004.

- Downloads last month
- 20






Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Tesslate/WEBGEN-Devstral-24B" \ --host 0.0.0.0 \ --port 30000# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Tesslate/WEBGEN-Devstral-24B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'