Image-Text-to-Text
GGUF
llama.cpp
llama-cpp
multimodal
vision
Mixture of Experts
agentic
conversational
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"
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,53 +1,60 @@
|
|
| 1 |
---
|
| 2 |
-
library_name:
|
| 3 |
license: apache-2.0
|
| 4 |
-
pipeline_tag: text-
|
|
|
|
| 5 |
tags:
|
|
|
|
| 6 |
- llama-cpp
|
| 7 |
-
-
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
-
#
|
| 12 |
-
This model was converted to GGUF format from [`InternScience/Agents-A1`](https://huggingface.co/InternScience/Agents-A1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
| 13 |
-
Refer to the [original model card](https://huggingface.co/InternScience/Agents-A1) for more details on the model.
|
| 14 |
|
| 15 |
-
|
| 16 |
-
Install llama.cpp through brew (works on Mac and Linux)
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
```
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
-
### CLI:
|
| 25 |
```bash
|
| 26 |
-
llama-
|
| 27 |
```
|
| 28 |
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
| 30 |
```bash
|
| 31 |
-
llama-
|
| 32 |
```
|
| 33 |
|
| 34 |
-
|
| 35 |
|
| 36 |
-
|
| 37 |
-
```
|
| 38 |
-
git clone https://github.com/ggerganov/llama.cpp
|
| 39 |
-
```
|
| 40 |
|
| 41 |
-
|
| 42 |
-
```
|
| 43 |
-
cd llama.cpp && LLAMA_CURL=1 make
|
| 44 |
-
```
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: llama.cpp
|
| 3 |
license: apache-2.0
|
| 4 |
+
pipeline_tag: image-text-to-text
|
| 5 |
+
base_model: InternScience/Agents-A1
|
| 6 |
tags:
|
| 7 |
+
- gguf
|
| 8 |
- llama-cpp
|
| 9 |
+
- multimodal
|
| 10 |
+
- vision
|
| 11 |
+
- moe
|
| 12 |
+
- agentic
|
| 13 |
---
|
| 14 |
|
| 15 |
+
# Agents-A1 — Q8_0 GGUF (with vision)
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
GGUF quantization of [`InternScience/Agents-A1`](https://huggingface.co/InternScience/Agents-A1) for [llama.cpp](https://github.com/ggml-org/llama.cpp), **including the vision projector** so the model keeps its multimodal (image + text) capability.
|
|
|
|
| 18 |
|
| 19 |
+
| File | Type | Size | Notes |
|
| 20 |
+
|------|------|------|-------|
|
| 21 |
+
| `agents-a1-q8_0.gguf` | text model, **Q8_0** | 36.9 GB | chat template + tokenizer embedded |
|
| 22 |
+
| `mmproj-Agents-A1-f16.gguf` | vision projector, **F16** | 0.9 GB | required for image input |
|
| 23 |
+
| `chat_template.jinja` | chat template | — | already baked into the GGUF; loose copy for `--chat-template-file` overrides |
|
| 24 |
|
| 25 |
+
Converted with `llama.cpp/convert_hf_to_gguf.py` (architecture `qwen35moe`, registered upstream as `Qwen3_5MoeForConditionalGeneration`). 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.
|
| 26 |
+
|
| 27 |
+
> [!IMPORTANT]
|
| 28 |
+
> Agents-A1 uses a **hybrid linear-attention + MoE** architecture (Qwen3.5-MoE family). You need a **recent llama.cpp build** that supports the `qwen35moe` inference graph — converter support landing does not guarantee your local binary can run it. If the model fails to load, update and rebuild llama.cpp from `master`.
|
| 29 |
+
|
| 30 |
+
## Usage
|
| 31 |
+
|
| 32 |
+
### Text + vision (recommended)
|
| 33 |
+
|
| 34 |
+
Download both GGUFs, then point `--mmproj` at the projector:
|
| 35 |
|
|
|
|
| 36 |
```bash
|
| 37 |
+
llama-server -m agents-a1-q8_0.gguf --mmproj mmproj-Agents-A1-f16.gguf -c 8192 -ngl 99
|
| 38 |
```
|
| 39 |
|
| 40 |
+
Then send images via the web UI or the OpenAI-compatible `image_url` message format.
|
| 41 |
+
|
| 42 |
+
### Text only
|
| 43 |
+
|
| 44 |
```bash
|
| 45 |
+
llama-cli -m agents-a1-q8_0.gguf -p "Hello"
|
| 46 |
```
|
| 47 |
|
| 48 |
+
Omitting `--mmproj` runs the language model alone and frees the compute/KV the vision encoder would use.
|
| 49 |
|
| 50 |
+
---
|
|
|
|
|
|
|
|
|
|
| 51 |
|
| 52 |
+
## About the original model
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
+
**Agents-A1** is a 35B Mixture-of-Experts agentic model from [InternScience](https://huggingface.co/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.
|
| 55 |
+
|
| 56 |
+
- 🏠 Homepage: https://internscience.github.io/Agents-A1/
|
| 57 |
+
- 📄 Technical Report: https://arxiv.org/abs/2606.30616
|
| 58 |
+
- 💻 GitHub: https://github.com/InternScience/Agents-A1
|
| 59 |
+
|
| 60 |
+
See the [original model card](https://huggingface.co/InternScience/Agents-A1) for full details, benchmarks, and licensing. All credit for the model goes to InternScience; this repo only provides GGUF conversions. License: Apache-2.0.
|
|
|