File size: 2,318 Bytes
3ba9864
 
1a8d060
 
 
e9b5a1a
3ba9864
 
1a8d060
 
 
 
 
19926d9
 
 
 
 
1a8d060
 
 
3ba9864
 
ff21b1b
3ba9864
 
958370e
3ba9864
 
27e3301
 
 
 
2fcd4e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3ba9864
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e91469a
3ba9864
 
 
 
 
 
 
 
1a8d060
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
license: mit
language:
- vi
- en
base_model: Qwen/Qwen3.5-35B-A3B
library_name: transformers
pipeline_tag: text-generation
tags:
- agent
- tool-use
- reasoning
- esft
- claude-opus-5
- xhigh
- distillation
- coding
- terminal
- moe
datasets:
- beyoru/claude-opus-5-xhigh-workload-agent
---

# Orbit

Expert-Specialized Fine-Tune (ESFT) of
[`Qwen/Qwen3.5-35B-A3B`](https://huggingface.co/Qwen/Qwen3.5-35B-A3B)
for Vietnamese multi-turn tool-use, trained on reasoning traces.

Architecture is unchanged from the base model.

This model was training on the distillation dataset from `claude-opus-5`, effort `xhigh` for my custome workflow

# Capabilities
## Multi-turn tool use
This model is trained to maintain context across multiple tool interactions,
rather than treating each tool call as an isolated operation.
This makes it suitable for workflows where the result of one action determines
the next action.

## Tool selection

The model is trained on trajectories containing tool selection and execution,
allowing it to reason about:

- which tool should be used
- when a tool call is necessary
- what arguments should be provided
- how to interpret tool results
- whether additional actions are required

The training data contains high-effort reasoning trajectorie

## Training

- **ESFT**: only selected MoE experts are trained (router frozen).
- trainable: ~0.94B of 35.6B parameters (2.6%)
- expert selection: `top_p = 0.20`, ~7.5 of 256 experts per layer
- single NVIDIA GB10 (121 GB unified memory)

## Usage

```python
from transformers import AutoTokenizer, AutoModelForCausalLM

tk = AutoTokenizer.from_pretrained("beyoru/Clawd-Agent")
model = AutoModelForCausalLM.from_pretrained("beyoru/Clawd-Agent", dtype="auto", device_map="auto")

msgs = [{"role": "user", "content": "..."}]
ids = tk.apply_chat_template(msgs, tools=TOOLS, add_generation_prompt=True, return_tensors="pt")
```

Serving with vLLM:

```bash
vllm serve beyoru/Orbit --max-model-len 8192
```

The chat template emits `<think>\n` in the generation prompt, so the model continues the
reasoning block and closes it with `</think>` before the answer.

## Note

Inherits the base model's MIT license. Fine-tuned on a narrow task distribution — evaluate on
your own workload before relying on it for anything outside multi-turn tool use.