Spaces:
Runtime error
Runtime error
File size: 1,030 Bytes
e8c9ad6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import gradio as gr
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue"), title="dispatchAI") as demo:
gr.Markdown("""
# ๐ Welcome to dispatchAI
**Small. Mobile. Free. UAE-built.**
31 verified working models. Zero broken. Zero partial.
## Quick Start
```bash
pip install dispatchai
```
```python
from dispatchai import load_model
model = load_model("SmolLM2-135M-Instruct-mobile", backend="gguf")
print(model.chat("What is the capital of France?"))
# โ "The capital of France is Paris."
```
## Links
- [All Models](https://huggingface.co/dispatchAI)
- [SDK](https://huggingface.co/dispatchAI/dispatchAI-SDK)
- [Hub](https://huggingface.co/spaces/dispatchAI/hub)
- [MCP Tools](https://huggingface.co/spaces/dispatchAI/mcp-hub)
- [Leaderboard](https://huggingface.co/spaces/dispatchAI/mobile-llm-leaderboard)
---
Dispatch AI (FZE) โ Sharjah, UAE. License No. 10818.
""")
demo.launch()
|