File size: 653 Bytes
66d4558 |
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 |
{
"max_length": 2048,
"max_agents": 20,
"spec": {
"pad": "<|pad|>",
"bos": "<|bos|>",
"eos": "<|eos|>",
"unk": "<|unk|>",
"thought": "<|thought|>",
"action": "<|action|>",
"observe": "<|observe|>",
"route": "<|route|>",
"meta": "<|meta|>",
"system": "<|system|>",
"user": "<|user|>",
"assistant": "<|assistant|>",
"tool": "<|tool|>",
"agent_prefix": "<|agent:",
"agent_suffix": "|>",
"channel_id_map": {
"system": 0,
"user": 1,
"assistant": 2,
"thought": 3,
"action": 4,
"observe": 5,
"tool": 6,
"route": 7,
"meta": 8
}
}
} |