Accio-Lab/occamy

Occamy model repo

JavaScript

57

4 commits

updated Sep 16, 2026

See the code

README

Accio      Occamy logo

Occamy-1.0

Open Pareto-frontier 35B Intelligence for Co-work


Project Website Hugging Face Technical Report Dressage License

1. Model Introduction

Occamy-1.0 is a compact agentic model purpose-built for real-world co-work: long-horizon, stateful tasks that require coordinated use of search, code, tools, files, structured APIs, and productivity software. Starting from the post-trained Qwen3.6-35B-A3B checkpoint, Occamy concentrates further training on reliable execution, persistent state tracking, recovery, and follow-through rather than relearning general capabilities from scratch.

Key Features

  • Co-work specialization: Designed for sustained execution across multi-step professional workflows, not isolated question answering.
  • Compact inference footprint: A 35B-total, 3B-active Mixture-of-Experts model that keeps long-running agent workloads practical.
  • Long-horizon continuity: Designed to keep work coherent across tool calls, delegated runs, and history rewrites such as context compaction.
  • Broad agentic capability: Co-work gains are accompanied by strong tool calling, terminal coding, and instruction following.
  • Execution-grounded training: Supervised fine-tuning spans general agentic work, long-horizon interaction, software engineering, and tool-call grounding.
  • Open training stack: The multi-harness reinforcement-learning infrastructure used to train Occamy is released as Dressage.

[!NOTE] Occamy is optimized for common co-work workloads, not as a replacement for frontier models on every task. Retrieval-heavy and simulated-user tasks still have headroom, and native browser or desktop visual interaction is not part of the current co-work training interface.

2. Model Summary

ArchitectureMixture-of-Experts causal model with vision encoder
Total Parameters35B
Activated Parameters3B
Number of Layers40
Number of Experts256
Activated Experts8 routed + 1 shared
Base Architecture Context262,144 tokens
SFT Sequence Length131,072 tokens
Starting CheckpointQwen3.6-35B-A3B
Post-trainingFull-parameter SFT, HDPO, model merging, and SAO

Architecture fields follow the starting checkpoint's published model card. Occamy post-trains the language backbone without changing the architecture; the vision encoder and projector are frozen during SFT. The released checkpoint configuration remains the source of truth for serving limits.

3. Evaluation Results

Occamy-1.0 results on co-work, tool-use, coding, and business benchmarks
BenchmarkOccamy-1.0Qwen3.6
35B-A3B
Agents-A1Nex-N2-miniBigBang-1.0Ornith-1.5
Claw-Eval (average)82.269.569.966.663.564.4
Claw-Eval (Pass³)71.454.841.737.040.248.7
WildClawBench49.1640.430.7330.3132.8745.91
CommerceAgentBench37.4019.69.316.830.837.40
Business Arena$79,868$44,751$33,626$13,325$56,477$66,292
GDPval1,1281,004869999951855
OfficeQA Pro48.139.123.346.643.659.4
τ³-Bench (Banking)37.111.97.225.810.321.7
AutomationBench (Pass¹)27.67.52.25.714.818.5
AutomationBench (partial)69.139.414.727.947.458.0
BFCL v465.4063.1957.2362.8157.8668.51
VitaBench41.7534.2537.0026.2546.0040.25
Terminal-Bench 2.159.049.541.660.7*33.767.8*
IFEval91.5386.9091.6091.6090.5081.80

Bold: Best result in each row; ties are both bolded. * Official model-card result.

4. Training Recipe

Occamy is trained through two complementary specialization tracks, followed by parameter-space consolidation and a final SAO stage:

                         Qwen3.6-35B-A3B
                                  │
                 ┌────────────────┴────────────────┐
                 │                                 │
                 ▼                                 ▼
        Marathon Expert                     Sprint Expert
           SFT → HDPO                             SFT
                 │                                 │
                 └────────────────┬────────────────┘
                                  ▼
                    Uniform parameter-space merge
                                  │
                                  ▼
                                 SAO
                                  │
                                  ▼
                             Occamy-1.0

The Marathon Expert learns sustained execution and accuracy-conditioned efficiency, while the Sprint Expert preserves broader agentic capability. A uniform parameter-space merge combines both experts into one checkpoint with no inference-time routing or ensembling, and a final Single-Rollout Asynchronous Optimization (SAO) stage refines the merged policy on a broad co-work mixture.

The deduplicated SFT union across both experts is:

Data sourceTrajectoriesAverage lengthTokens
General agentic5,41837.7K204.1M
Long-horizon interactive agents92395.8K88.4M
Terminal and software engineering1,22835.1K43.1M
Tool-call grounding7,4299.1K67.7M
Overall14,99826.9K403.3M

Training tasks are grounded in executable environments with observable state transitions and task-level grading. The open-source Dressage stack provides multi-harness execution, token-exact trajectory capture, sandbox integration, and multi-segment conversion for reinforcement learning.

5. Deployment

Quantized Checkpoints and MTP

Official quantized checkpoints and a separately adapted MTP draft head are available on Hugging Face:

ReleaseDownload
GGUF (Q4_K_M / Q8_0)occamy-1.0-GGUF
FP8occamy-1.0-FP8
NVFP4occamy-1.0-NVFP4
Experimental MTP draft headoccamy-1.0-MTP

See each model card for loading instructions, supported runtimes, and validation results. The MTP head is used with a separate base checkpoint; the validated native three-step SGLang path requires the included runtime patch. Performance after the final patch has not yet been measured.

Base Checkpoint

Occamy-1.0 keeps the Qwen3.6-35B-A3B architecture, so the upstream deployment recipe is the reference serving path. The examples below mirror that recipe with eight-way tensor parallelism and its full context length; adjust both to fit your hardware and confirm them against the released Occamy checkpoint configuration.

SGLang

The upstream model card recommends SGLang 0.5.10 or newer for the Qwen3.6 architecture.

python -m sglang.launch_server \
  --model-path Accio-Lab/Occamy-1.0 \
  --port 8000 \
  --tp-size 8 \
  --mem-fraction-static 0.8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

vLLM

The upstream model card recommends vLLM 0.19.0 or newer for the Qwen3.6 architecture.

vllm serve Accio-Lab/Occamy-1.0 \
  --port 8000 \
  --tensor-parallel-size 8 \
  --max-model-len 262144 \
  --reasoning-parser qwen3 \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder

Both commands expose an OpenAI-compatible endpoint at http://localhost:8000/v1.

6. Model Usage

from openai import OpenAI

client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")

response = client.chat.completions.create(
    model="Accio-Lab/Occamy-1.0",
    messages=[
        {
            "role": "user",
            "content": "Inspect this repository, fix the failing test, and explain the change.",
        }
    ],
    max_tokens=32768,
    temperature=1.0,
    top_p=0.95,
    presence_penalty=1.5,
    extra_body={
        "top_k": 20,
        "chat_template_kwargs": {
            "enable_thinking": True,
            "preserve_thinking": True,
        },
    },
)

print(response.choices[0].message.content)

For multi-turn agent runs, retain the complete assistant message returned by the server, including reasoning content and tool calls, then append tool results using the standard OpenAI chat-completions schema. This preserves the execution context that Occamy relies on across long workflows.

Agent Frameworks

Occamy was trained and evaluated across multiple harnesses, including OpenClaw, Hermes Agent, and Accio Work. It can be integrated with other tool-using agent frameworks through the same OpenAI-compatible API.


7. License

This repository is released under the Apache License 2.0. See the Hugging Face model card for the terms that apply to the model weights.


8. Contact and Correspondence

For research inquiries, model questions, or collaboration opportunities, please contact the corresponding authors:

For bug reports or feature requests, please open an issue.

Contributors

yuchenwang3

3 commits

ccggddmm

1 commits

Accio-Lab/occamy

Occamy model repo

JavaScript

57

4 commits

updated Sep 16, 2026

See the code

README

Accio      Occamy logo

Occamy-1.0

Open Pareto-frontier 35B Intelligence for Co-work


Project Website Hugging Face Technical Report Dressage License

1. Model Introduction

Occamy-1.0 is a compact agentic model purpose-built for real-world co-work: long-horizon, stateful tasks that require coordinated use of search, code, tools, files, structured APIs, and productivity software. Starting from the post-trained Qwen3.6-35B-A3B checkpoint, Occamy concentrates further training on reliable execution, persistent state tracking, recovery, and follow-through rather than relearning general capabilities from scratch.

Key Features

  • Co-work specialization: Designed for sustained execution across multi-step professional workflows, not isolated question answering.
  • Compact inference footprint: A 35B-total, 3B-active Mixture-of-Experts model that keeps long-running agent workloads practical.
  • Long-horizon continuity: Designed to keep work coherent across tool calls, delegated runs, and history rewrites such as context compaction.
  • Broad agentic capability: Co-work gains are accompanied by strong tool calling, terminal coding, and instruction following.
  • Execution-grounded training: Supervised fine-tuning spans general agentic work, long-horizon interaction, software engineering, and tool-call grounding.
  • Open training stack: The multi-harness reinforcement-learning infrastructure used to train Occamy is released as Dressage.

[!NOTE] Occamy is optimized for common co-work workloads, not as a replacement for frontier models on every task. Retrieval-heavy and simulated-user tasks still have headroom, and native browser or desktop visual interaction is not part of the current co-work training interface.

2. Model Summary

ArchitectureMixture-of-Experts causal model with vision encoder
Total Parameters35B
Activated Parameters3B
Number of Layers40
Number of Experts256
Activated Experts8 routed + 1 shared
Base Architecture Context262,144 tokens
SFT Sequence Length131,072 tokens
Starting CheckpointQwen3.6-35B-A3B
Post-trainingFull-parameter SFT, HDPO, model merging, and SAO

Architecture fields follow the starting checkpoint's published model card. Occamy post-trains the language backbone without changing the architecture; the vision encoder and projector are frozen during SFT. The released checkpoint configuration remains the source of truth for serving limits.

3. Evaluation Results

Occamy-1.0 results on co-work, tool-use, coding, and business benchmarks
BenchmarkOccamy-1.0Qwen3.6
35B-A3B
Agents-A1Nex-N2-miniBigBang-1.0Ornith-1.5
Claw-Eval (average)82.269.569.966.663.564.4
Claw-Eval (Pass³)71.454.841.737.040.248.7
WildClawBench49.1640.430.7330.3132.8745.91
CommerceAgentBench37.4019.69.316.830.837.40
Business Arena$79,868$44,751$33,626$13,325$56,477$66,292
GDPval1,1281,004869999951855
OfficeQA Pro48.139.123.346.643.659.4
τ³-Bench (Banking)37.111.97.225.810.321.7
AutomationBench (Pass¹)27.67.52.25.714.818.5
AutomationBench (partial)69.139.414.727.947.458.0
BFCL v465.4063.1957.2362.8157.8668.51
VitaBench41.7534.2537.0026.2546.0040.25
Terminal-Bench 2.159.049.541.660.7*33.767.8*
IFEval91.5386.9091.6091.6090.5081.80

Bold: Best result in each row; ties are both bolded. * Official model-card result.

4. Training Recipe

Occamy is trained through two complementary specialization tracks, followed by parameter-space consolidation and a final SAO stage:

                         Qwen3.6-35B-A3B
                                  │
                 ┌────────────────┴────────────────┐
                 │                                 │
                 ▼                                 ▼
        Marathon Expert                     Sprint Expert
           SFT → HDPO                             SFT
                 │                                 │
                 └────────────────┬────────────────┘
                                  ▼
                    Uniform parameter-space merge
                                  │
                                  ▼
                                 SAO
                                  │
                                  ▼
                             Occamy-1.0

The Marathon Expert learns sustained execution and accuracy-conditioned efficiency, while the Sprint Expert preserves broader agentic capability. A uniform parameter-space merge combines both experts into one checkpoint with no inference-time routing or ensembling, and a final Single-Rollout Asynchronous Optimization (SAO) stage refines the merged policy on a broad co-work mixture.

The deduplicated SFT union across both experts is:

Data sourceTrajectoriesAverage lengthTokens
General agentic5,41837.7K204.1M
Long-horizon interactive agents92395.8K88.4M
Terminal and software engineering1,22835.1K43.1M
Tool-call grounding7,4299.1K67.7M
Overall14,99826.9K403.3M

Training tasks are grounded in executable environments with observable state transitions and task-level grading. The open-source Dressage stack provides multi-harness execution, token-exact trajectory capture, sandbox integration, and multi-segment conversion for reinforcement learning.

5. Deployment

Quantized Checkpoints and MTP

Official quantized checkpoints and a separately adapted MTP draft head are available on Hugging Face:

ReleaseDownload
GGUF (Q4_K_M / Q8_0)occamy-1.0-GGUF
FP8occamy-1.0-FP8
NVFP4occamy-1.0-NVFP4
Experimental MTP draft headoccamy-1.0-MTP

See each model card for loading instructions, supported runtimes, and validation results. The MTP head is used with a separate base checkpoint; the validated native three-step SGLang path requires the included runtime patch. Performance after the final patch has not yet been measured.

Base Checkpoint

Occamy-1.0 keeps the Qwen3.6-35B-A3B architecture, so the upstream deployment recipe is the reference serving path. The examples below mirror that recipe with eight-way tensor parallelism and its full context length; adjust both to fit your hardware and confirm them against the released Occamy checkpoint configuration.

SGLang

The upstream model card recommends SGLang 0.5.10 or newer for the Qwen3.6 architecture.

python -m sglang.launch_server \
  --model-path Accio-Lab/Occamy-1.0 \
  --port 8000 \
  --tp-size 8 \
  --mem-fraction-static 0.8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --tool-call-parser qwen3_coder

vLLM

The upstream model card recommends vLLM 0.19.0 or newer for the Qwen3.6 architecture.

vllm serve Accio-Lab/Occamy-1.0 \
  --port 8000 \
  --tensor-parallel-size 8 \
  --max-model-len 262144 \
  --reasoning-parser qwen3 \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_coder

Both commands expose an OpenAI-compatible endpoint at http://localhost:8000/v1.

6. Model Usage

from openai import OpenAI

client = OpenAI(base_url="http://localhost:8000/v1", api_key="EMPTY")

response = client.chat.completions.create(
    model="Accio-Lab/Occamy-1.0",
    messages=[
        {
            "role": "user",
            "content": "Inspect this repository, fix the failing test, and explain the change.",
        }
    ],
    max_tokens=32768,
    temperature=1.0,
    top_p=0.95,
    presence_penalty=1.5,
    extra_body={
        "top_k": 20,
        "chat_template_kwargs": {
            "enable_thinking": True,
            "preserve_thinking": True,
        },
    },
)

print(response.choices[0].message.content)

For multi-turn agent runs, retain the complete assistant message returned by the server, including reasoning content and tool calls, then append tool results using the standard OpenAI chat-completions schema. This preserves the execution context that Occamy relies on across long workflows.

Agent Frameworks

Occamy was trained and evaluated across multiple harnesses, including OpenClaw, Hermes Agent, and Accio Work. It can be integrated with other tool-using agent frameworks through the same OpenAI-compatible API.


7. License

This repository is released under the Apache License 2.0. See the Hugging Face model card for the terms that apply to the model weights.


8. Contact and Correspondence

For research inquiries, model questions, or collaboration opportunities, please contact the corresponding authors:

For bug reports or feature requests, please open an issue.

Contributors

yuchenwang3

3 commits

ccggddmm

1 commits

Languages

JavaScript

45.2%

CSS

27.2%

TypeScript

15.7%

HTML

11.9%