How to use from
Pi
Start the llama.cpp server
# Install llama.cpp:
brew install llama.cpp
# Start a local OpenAI-compatible server:
llama serve -hf Abiray/Agents-A1-Q4_K_M-GGUF:Q4_K_M
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": "Abiray/Agents-A1-Q4_K_M-GGUF:Q4_K_M"
        }
      ]
    }
  }
}
Run Pi
# Start Pi in your project directory:
pi
Quick Links

Agents-A1-Q4_K_M-GGUF

This repository contains the GGUF quantized version of Agents-A1, a 35B Mixture-of-Experts (MoE) agentic model developed by InternScience. Quantization has been performed using the Q4_K_M method to optimize performance and reduce memory consumption while preserving agentic reasoning capabilities.


Provided Files

File Name Size Quantization Method Description
Agents-A1-Q4_K_M.gguf 21.2 GB Q4_K_M Medium 4-bit quantization. Recommended balance between size, speed, and accuracy.

About Agents-A1

Agents‑A1 is a 35B Mixture‑of‑Experts agentic model built to scale heterogeneous agentic abilities across multiple domains including Long‑horizon Search, Engineering, Scientific Research, Instruction Following, and Tool-calling.

Key Highlights

  • Agentic Reasoning: Excels at decomposing complex tasks into executable sub-steps, planning ahead, and adapting its strategy based on intermediate results.
  • Tool Use: Natively supports function calling and tool integration, enabling seamless interaction with APIs, code interpreters, search engines, and external tools.
  • Scientific and Professional Reasoning: Handles tool-integrated scientific reasoning and professional knowledge question answering.
  • Instruction Following: Precisely follows detailed, multi-constraint instructions across diverse domains.

Performance Overview

Despite operating in the ~35B model class, Agents-A1 delivers highly competitive performance against frontier-scale systems such as GPT-5.5, DeepSeek-V4-pro, and Kimi-K2.6. It achieves overall SOTA results on several challenging benchmarks, including Seal-0 (56.4), HiPhO (46.4), FrontierScience-Olympiad (79.0), FrontierScience-Research (40.0), IFBench (80.6), and IFEval (94.8).


Deployment & Usage

You can run this GGUF model using popular inference engines like llama.cpp or Ollama.

Option 1: Using llama.cpp

To run inference via the command line with llama.cpp, download the file and use the following command structure:

./llama-cli \
  --model Agents-A1-Q4_K_M.gguf \
  --prompt "<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n<|im_start|>user\nHello, who are you?<|im_end|>\n<|im_start|>assistant\n" \
  --ctx-size 8192 \
  --threads 8
Downloads last month
38
GGUF
Model size
35B params
Architecture
qwen35moe
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Abiray/Agents-A1-Q4_K_M-GGUF

Quantized
(74)
this model

Paper for Abiray/Agents-A1-Q4_K_M-GGUF