CoolFace
Apppublic

dispatchAI/welcome

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes
app.py36 linesDownload Raw Back to root
1import gradio as gr2 3with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue"), title="dispatchAI") as demo:4    gr.Markdown("""5    # ๐Ÿš€ Welcome to dispatchAI6    7    **Small. Mobile. Free. UAE-built.**8    9    31 verified working models. Zero broken. Zero partial.10    11    ## Quick Start12    13    ```bash14    pip install dispatchai15    ```16    17    ```python18    from dispatchai import load_model19    model = load_model("SmolLM2-135M-Instruct-mobile", backend="gguf")20    print(model.chat("What is the capital of France?"))21    # โ†’ "The capital of France is Paris."22    ```23    24    ## Links25    26    - [All Models](https://huggingface.co/dispatchAI)27    - [SDK](https://huggingface.co/dispatchAI/dispatchAI-SDK)28    - [Hub](https://huggingface.co/spaces/dispatchAI/hub)29    - [MCP Tools](https://huggingface.co/spaces/dispatchAI/mcp-hub)30    - [Leaderboard](https://huggingface.co/spaces/dispatchAI/mobile-llm-leaderboard)31    32    ---33    Dispatch AI (FZE) โ€” Sharjah, UAE. License No. 10818.34    """)35    demo.launch()36