PocketBrains233 commited on
Commit
5f4f403
·
verified ·
1 Parent(s): 7ed6c6d

Update README: rename to PocketPlaning-1

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -17,9 +17,9 @@ library_name: transformers
17
  pipeline_tag: text-generation
18
  ---
19
 
20
- # PocketPlan-27B
21
 
22
- **PocketPlan-27B** is a specialized AI agent planning model built on Qwen3.5-27B. It is fine-tuned for intelligent task routing, complexity estimation, and tool-calling orchestration in agentic workflows.
23
 
24
  ## Key Capabilities
25
 
@@ -46,7 +46,7 @@ pipeline_tag: text-generation
46
  ```python
47
  from transformers import AutoModelForCausalLM, AutoTokenizer
48
 
49
- model_name = "PocketBrains/PocketPlan-27B"
50
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
51
  model = AutoModelForCausalLM.from_pretrained(
52
  model_name,
@@ -65,7 +65,7 @@ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
65
  ### With vLLM
66
 
67
  ```bash
68
- vllm serve PocketBrains/PocketPlan-27B \
69
  --tensor-parallel-size 2 \
70
  --max-model-len 131072 \
71
  --dtype bfloat16 \
@@ -76,7 +76,7 @@ vllm serve PocketBrains/PocketPlan-27B \
76
 
77
  ## Intended Use
78
 
79
- PocketPlan-27B is designed to serve as the planning and routing layer inside AI agent systems. It determines *what to do next* and *how much compute to spend doing it*, enabling cost-efficient agent execution by routing simple tasks locally and escalating complex tasks to frontier models.
80
 
81
  ## Limitations
82
 
@@ -88,10 +88,10 @@ PocketPlan-27B is designed to serve as the planning and routing layer inside AI
88
 
89
  ```bibtex
90
  @misc{pocketplan2026,
91
- title={PocketPlan-27B: Efficient Planning Models for AI Agents},
92
  author={PocketBrains Inc.},
93
  year={2026},
94
- url={https://huggingface.co/PocketBrains/PocketPlan-27B}
95
  }
96
  ```
97
 
 
17
  pipeline_tag: text-generation
18
  ---
19
 
20
+ # PocketPlaning-1
21
 
22
+ **PocketPlaning-1** is a specialized AI agent planning model built on Qwen3.5-27B. It is fine-tuned for intelligent task routing, complexity estimation, and tool-calling orchestration in agentic workflows.
23
 
24
  ## Key Capabilities
25
 
 
46
  ```python
47
  from transformers import AutoModelForCausalLM, AutoTokenizer
48
 
49
+ model_name = "PocketBrains/PocketPlaning-1"
50
  tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
51
  model = AutoModelForCausalLM.from_pretrained(
52
  model_name,
 
65
  ### With vLLM
66
 
67
  ```bash
68
+ vllm serve PocketBrains/PocketPlaning-1 \
69
  --tensor-parallel-size 2 \
70
  --max-model-len 131072 \
71
  --dtype bfloat16 \
 
76
 
77
  ## Intended Use
78
 
79
+ PocketPlaning-1 is designed to serve as the planning and routing layer inside AI agent systems. It determines *what to do next* and *how much compute to spend doing it*, enabling cost-efficient agent execution by routing simple tasks locally and escalating complex tasks to frontier models.
80
 
81
  ## Limitations
82
 
 
88
 
89
  ```bibtex
90
  @misc{pocketplan2026,
91
+ title={PocketPlaning-1: Efficient Planning Models for AI Agents},
92
  author={PocketBrains Inc.},
93
  year={2026},
94
+ url={https://huggingface.co/PocketBrains/PocketPlaning-1}
95
  }
96
  ```
97