reaperdoesntknow commited on
Commit
0ea8609
·
verified ·
1 Parent(s): a0f77ce

Upload swarm_tokenizer.json

Browse files
Files changed (1) hide show
  1. swarm_tokenizer.json +32 -0
swarm_tokenizer.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "max_length": 2048,
3
+ "max_agents": 20,
4
+ "spec": {
5
+ "pad": "<|pad|>",
6
+ "bos": "<|bos|>",
7
+ "eos": "<|eos|>",
8
+ "unk": "<|unk|>",
9
+ "thought": "<|thought|>",
10
+ "action": "<|action|>",
11
+ "observe": "<|observe|>",
12
+ "route": "<|route|>",
13
+ "meta": "<|meta|>",
14
+ "system": "<|system|>",
15
+ "user": "<|user|>",
16
+ "assistant": "<|assistant|>",
17
+ "tool": "<|tool|>",
18
+ "agent_prefix": "<|agent:",
19
+ "agent_suffix": "|>",
20
+ "channel_id_map": {
21
+ "system": 0,
22
+ "user": 1,
23
+ "assistant": 2,
24
+ "thought": 3,
25
+ "action": 4,
26
+ "observe": 5,
27
+ "tool": 6,
28
+ "route": 7,
29
+ "meta": 8
30
+ }
31
+ }
32
+ }