teacher_agent
teacher_agent
¶
TeacherAgent: frontier model as a tool-calling meta-engineer.
NOT registered in AgentRegistry. NOT a subclass of BaseAgent.
This is a standalone tool-calling loop that wraps CloudEngine with
diagnostic tools for the diagnose phase.
The teacher:
- Uses a frontier model (default claude-opus-4-6) regardless of the
user's local intelligence config.
- Has its own tool set (diagnostic tools) that user agents do not have.
- Tracks cost and stops when the budget is exhausted.
- Logs every tool call to a list of ToolCallRecord.
See spec §5.1.
Classes¶
TeacherAgentResult
dataclass
¶
TeacherAgentResult(content: str, turns: int, total_cost_usd: float, total_tokens: int, tool_call_records: list[ToolCallRecord] = list())
The result of a TeacherAgent.run() call.
TeacherAgent
¶
TeacherAgent(engine: Any, model: str, tools: list[DiagnosticTool], max_turns: int = 30, max_cost_usd: float = 5.0, max_tokens: int = 8192)
Frontier model tool-calling loop for the diagnose phase.
| PARAMETER | DESCRIPTION |
|---|---|
engine
|
A
TYPE:
|
model
|
The frontier model id (e.g.
TYPE:
|
tools
|
Diagnostic tools exposed to the teacher.
TYPE:
|
max_turns
|
Maximum number of generate() calls before stopping.
TYPE:
|
max_cost_usd
|
Maximum accumulated cost before stopping.
TYPE:
|
Source code in src/openjarvis/learning/distillation/diagnose/teacher_agent.py
Functions¶
run
¶
run(user_prompt: str, *, system_prompt: str | None = None) -> TeacherAgentResult
Run the teacher tool-calling loop.
| PARAMETER | DESCRIPTION |
|---|---|
user_prompt
|
The instruction to the teacher (e.g. "Analyze student failures").
TYPE:
|
system_prompt
|
Optional system prompt explaining the teacher's role.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
TeacherAgentResult
|
The teacher's final content, cost, and tool call records. |
Source code in src/openjarvis/learning/distillation/diagnose/teacher_agent.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | |