Instructions to use alexop1000/Agents-A1-Q8_0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use alexop1000/Agents-A1-Q8_0-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Use Docker
docker model run hf.co/alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use alexop1000/Agents-A1-Q8_0-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "alexop1000/Agents-A1-Q8_0-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "alexop1000/Agents-A1-Q8_0-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
- Ollama
How to use alexop1000/Agents-A1-Q8_0-GGUF with Ollama:
ollama run hf.co/alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
- Unsloth Studio
How to use alexop1000/Agents-A1-Q8_0-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for alexop1000/Agents-A1-Q8_0-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for alexop1000/Agents-A1-Q8_0-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for alexop1000/Agents-A1-Q8_0-GGUF to start chatting
- Pi
How to use alexop1000/Agents-A1-Q8_0-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "alexop1000/Agents-A1-Q8_0-GGUF:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use alexop1000/Agents-A1-Q8_0-GGUF with Docker Model Runner:
docker model run hf.co/alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
- Lemonade
How to use alexop1000/Agents-A1-Q8_0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Run and chat with the model
lemonade run user.Agents-A1-Q8_0-GGUF-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use alexop1000/Agents-A1-Q8_0-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use alexop1000/Agents-A1-Q8_0-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf alexop1000/Agents-A1-Q8_0-GGUF:Q8_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "alexop1000/Agents-A1-Q8_0-GGUF:Q8_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Agents-A1 — Q8_0 GGUF (with vision)
GGUF quantization of InternScience/Agents-A1 for llama.cpp, including the vision projector so the model keeps its multimodal (image + text) capability.
| File | Type | Size | Notes |
|---|---|---|---|
agents-a1-q8_0.gguf |
text model, Q8_0 | 36.9 GB | chat template + tokenizer embedded |
mmproj-Agents-A1-f16.gguf |
vision projector, F16 | 0.9 GB | required for image input |
chat_template.jinja |
chat template | — | already baked into the GGUF; loose copy for --chat-template-file overrides |
Converted with llama.cpp/convert_hf_to_gguf.py (architecture qwen35moe, registered upstream as Qwen3_5MoeForConditionalGeneration) using --no-mtp.
The upstream config.json declares mtp_num_hidden_layers: 1, but the published checkpoint contains no MTP / nextn weights (no layers.40.*, no eh_proj/enorm/hnorm/shared_head; highest layer index is 39). Any converter that honors the config bumps block_count to 41 and writes nextn_predict_layers, yet cannot fill block 40 — yielding a file that declares 41 blocks but ships 40, which fails to load with missing tensor 'blk.40.attn_norm.weight'. --no-mtp keeps block_count=40 to match the 40 real layers that actually shipped. MTP is only a speculative-decoding accelerator, so nothing is lost for normal inference.
The chat template embedded in the GGUF is byte-identical to the upstream chat_template.jinja and includes the vision-token, tool-call, and <think> reasoning logic.
Agents-A1 uses a hybrid linear-attention + MoE architecture (Qwen3.5-MoE family). You need a recent llama.cpp build that supports the
qwen35moeinference graph — converter support landing does not guarantee your local binary can run it. If the model fails to load, update and rebuild llama.cpp frommaster.
Usage
Text + vision (recommended)
Download both GGUFs, then point --mmproj at the projector:
llama-server -m agents-a1-q8_0.gguf --mmproj mmproj-Agents-A1-f16.gguf -c 8192 -ngl 99
Then send images via the web UI or the OpenAI-compatible image_url message format.
Text only
llama-cli -m agents-a1-q8_0.gguf -p "Hello"
Omitting --mmproj runs the language model alone and frees the compute/KV the vision encoder would use.
About the original model
Agents-A1 is a 35B Mixture-of-Experts agentic model from InternScience, built to scale heterogeneous agentic abilities across long-horizon search, engineering, scientific research, instruction following, and tool-calling. Despite the ~35B class, it reports competitive-to-SOTA results against much larger frontier systems on benchmarks such as Seal-0, HiPhO, FrontierScience, IFBench, BrowseComp, and GAIA.
- 🏠 Homepage: https://internscience.github.io/Agents-A1/
- 📄 Technical Report: https://arxiv.org/abs/2606.30616
- 💻 GitHub: https://github.com/InternScience/Agents-A1
See the original model card for full details, benchmarks, and licensing. All credit for the model goes to InternScience; this repo only provides GGUF conversions. License: Apache-2.0.
- Downloads last month
- 38
8-bit
Model tree for alexop1000/Agents-A1-Q8_0-GGUF
Base model
InternScience/Agents-A1