🦙 LlamaNet

Run AI Models on Your Local Mac / CPU / GPU Rig. Share Them With The World.

Turn your Apple Silicon Mac, NVIDIA GPU, or any computer into a free, public AI API.
Run Llama, Qwen, Mistral, DeepSeek — any open-source LLM. OpenAI-compatible.

Apple Silicon M1–M4 NVIDIA GPU OpenAI Compatible Free Public URLs 60 Second Setup
Nodes
Models
Tokens
TPS
Avg Load

Find a Model

Popular:

Loading available models...

How It Works

1
Clone & Run

./start-app.sh --tunnel

2
Download a Model

Search & download via the built-in Web UI

3
Get API Key

Sign in with Google at llamanet.app

4
Use the API

OpenAI-compatible, auto-routed

Quick Start

Python
import openai

client = openai.OpenAI(
    base_url="https://llamanet.app/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="Ministral-3-3B-Instruct-2512-Q4_K_M.gguf",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True
)

for chunk in response:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="")
curl
curl https://llamanet.app/v1/chat/completions \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"model": "Ministral-3-3B-Instruct-2512-Q4_K_M.gguf", "messages": [{"role": "user", "content": "Hello!"}]}'

Features

No-Model Mode

Start instantly, download models via Web UI

Hot Reload

Switch models without restarting your node

OpenAI Compatible

Drop-in replacement for any OpenAI client

Free Public URLs

Automatic Cloudflare tunnels, zero config

Model Manager

Search Hugging Face, download with progress tracking

Reasoning Support

DeepSeek-R1, Qwen reasoning models

Load Balancing

Auto-route to the best available node

GPU Auto-detect

NVIDIA, Apple Silicon, CPU fallback

Recommended Models

Run any GGUF model. These tiers map to your hardware.

Tier Model Size (Q4) Min RAM Best For
Tiny Phi-4 Mini ~1.5 GB 8 GB Quick tasks, edge devices, fast iteration
Fast Qwen 4B ~2.5 GB 8 GB Daily driver — fast responses, solid quality
Standard Ministral 3 8B ~4.5 GB 16 GB Best all-round balance of speed and quality
Coding Qwen 14B ~8 GB 32 GB Code generation, technical tasks
Premium GPT-OSS 20B ~12 GB 32 GB High-quality general-purpose inference
High Quality Qwen 35B-A3B ~20 GB 48 GB Expert-level reasoning, long-form generation
Reasoning DeepSeek-R1 Distill 32B ~18 GB 48 GB Chain-of-thought reasoning, math, analysis

Sizes are approximate for Q4_K_M quantization. Apple Silicon uses unified memory. Use Model Search above to find and download any model.

Start a Node on Your Machine

Pick your platform. Same command. Automatic GPU detection.

Apple Silicon — M1, M2, M3, M4

Metal GPU acceleration is automatic. No drivers, no CUDA, no setup. Works on MacBook Air, MacBook Pro, Mac Mini, Mac Studio, and Mac Pro with any M-series chip.

Terminal (macOS)
git clone https://github.com/machaao/llama-net.git
cd llama-net
pip install -r requirements-inference.txt
sh start-app.sh --tunnel --bootstrap-peers https://llamanet.app

8GB RAM (M1/M2/M3/M4 base): Tiny & Fast tiers at Q4_K_M
16GB RAM (Pro): Up to Standard tier comfortably
36GB+ RAM (Max/Ultra): Up to Coding tier and beyond

NVIDIA GPU — CUDA

Works on any Linux or Windows system with NVIDIA drivers and CUDA installed. LlamaNet auto-detects your GPU and offloads model layers automatically.

Terminal (Linux)
git clone https://github.com/machaao/llama-net.git
cd llama-net
pip install -r requirements-inference.txt
sh start-app.sh run hf.co/mistralai/Ministral-3-8B-Instruct-GGUF:Q4_K_M \
  --tunnel --bootstrap-peers https://llamanet.app

8GB VRAM (RTX 3070/4060): Tiny & Fast tiers
12GB VRAM (RTX 3060 12GB/4070): Up to Standard tier
24GB VRAM (RTX 3090/4090): Up to Premium tier

CPU Only

No dedicated GPU? Smaller models (Tiny & Fast tiers) run well on modern CPUs. Significantly slower than GPU inference, but works on any machine.

Terminal
N_GPU_LAYERS=0 sh start-app.sh \
  --tunnel --bootstrap-peers https://llamanet.app

Best with Tiny tier models: Phi-4 Mini, Qwen 1.5B