jupyter-agent 2025.6.104__py3-none-any.whl → 2025.7.100__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. jupyter_agent/bot_actions.py +270 -0
  2. jupyter_agent/bot_agents/__init__.py +0 -42
  3. jupyter_agent/bot_agents/base.py +89 -45
  4. jupyter_agent/bot_agents/master_planner.py +1 -0
  5. jupyter_agent/bot_agents/output_task_result.py +6 -7
  6. jupyter_agent/bot_agents/prepare_next_cell.py +52 -0
  7. jupyter_agent/bot_agents/request_user_supply.py +186 -0
  8. jupyter_agent/bot_agents/task_code_executor.py +3 -2
  9. jupyter_agent/bot_agents/task_planner_v3.py +16 -13
  10. jupyter_agent/bot_agents/task_reasoner.py +3 -2
  11. jupyter_agent/bot_agents/task_structrue_reasoner.py +22 -12
  12. jupyter_agent/bot_agents/task_structrue_summarier.py +22 -18
  13. jupyter_agent/bot_agents/task_summarier.py +3 -2
  14. jupyter_agent/bot_agents/task_verifier.py +2 -1
  15. jupyter_agent/bot_agents/task_verify_summarier.py +6 -6
  16. jupyter_agent/bot_chat.py +2 -2
  17. jupyter_agent/bot_contexts.py +37 -29
  18. jupyter_agent/bot_evaluation.py +262 -143
  19. jupyter_agent/bot_evaluators/__init__.py +0 -0
  20. jupyter_agent/bot_evaluators/base.py +42 -0
  21. jupyter_agent/bot_evaluators/dummy_flow.py +20 -0
  22. jupyter_agent/bot_evaluators/dummy_global.py +20 -0
  23. jupyter_agent/bot_evaluators/dummy_task.py +20 -0
  24. jupyter_agent/bot_evaluators/flow_global_planning.py +88 -0
  25. jupyter_agent/bot_evaluators/flow_task_executor.py +152 -0
  26. jupyter_agent/bot_flows/__init__.py +0 -4
  27. jupyter_agent/bot_flows/base.py +120 -41
  28. jupyter_agent/bot_flows/master_planner.py +15 -4
  29. jupyter_agent/bot_flows/task_executor_v3.py +57 -38
  30. jupyter_agent/bot_magics.py +119 -69
  31. jupyter_agent/bot_outputs.py +37 -43
  32. jupyter_agent/utils.py +20 -31
  33. {jupyter_agent-2025.6.104.dist-info → jupyter_agent-2025.7.100.dist-info}/METADATA +56 -4
  34. jupyter_agent-2025.7.100.dist-info/RECORD +41 -0
  35. jupyter_agent/bot_agents/task_planner_v1.py +0 -158
  36. jupyter_agent/bot_agents/task_planner_v2.py +0 -172
  37. jupyter_agent/bot_flows/task_executor_v1.py +0 -86
  38. jupyter_agent/bot_flows/task_executor_v2.py +0 -84
  39. jupyter_agent-2025.6.104.dist-info/RECORD +0 -35
  40. {jupyter_agent-2025.6.104.dist-info → jupyter_agent-2025.7.100.dist-info}/WHEEL +0 -0
  41. {jupyter_agent-2025.6.104.dist-info → jupyter_agent-2025.7.100.dist-info}/entry_points.txt +0 -0
  42. {jupyter_agent-2025.6.104.dist-info → jupyter_agent-2025.7.100.dist-info}/licenses/LICENSE +0 -0
  43. {jupyter_agent-2025.6.104.dist-info → jupyter_agent-2025.7.100.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,270 @@
1
+ """
2
+ Copyright (c) 2025 viewstar000
3
+
4
+ This software is released under the MIT License.
5
+ https://opensource.org/licenses/MIT
6
+ """
7
+
8
+ import json
9
+ import time
10
+ import uuid
11
+ import threading
12
+ import queue
13
+ import traceback
14
+ import importlib
15
+ import socket
16
+
17
+ from enum import Enum
18
+ from typing import Optional, Dict, List, Any
19
+ from pydantic import BaseModel, Field
20
+ from wsgiref.simple_server import make_server
21
+ from bottle import default_app, get, post, request, response
22
+ from .utils import get_env_capbilities
23
+
24
+
25
+ class ActionBase(BaseModel):
26
+ timestamp: float = 0
27
+ uuid: str = ""
28
+ source: str = ""
29
+ action: str
30
+ params: Dict[str, Any] = {}
31
+
32
+ def __init__(self, **data):
33
+ super().__init__(**data)
34
+ self.timestamp = self.timestamp or time.time()
35
+ self.uuid = self.uuid or str(uuid.uuid4())
36
+
37
+
38
+ class ReplyActionBase(ActionBase):
39
+ reply_host: str = ""
40
+ reply_port: int = 0
41
+
42
+
43
+ class SetCellContentParams(BaseModel):
44
+ index: int = 1 # -1 previous, 0 current, 1 next
45
+ type: str = "code" # code/markdown
46
+ source: str = ""
47
+ tags: List[str] = []
48
+ metadata: Dict[str, Any] = {}
49
+
50
+
51
+ class ActionSetCellContent(ActionBase):
52
+
53
+ action: str = "set_cell_content"
54
+ params: SetCellContentParams = SetCellContentParams()
55
+
56
+
57
+ class ConfirmChoiceItem(BaseModel):
58
+ label: str = ""
59
+ value: str
60
+
61
+
62
+ class RequestUserConfirmParams(BaseModel):
63
+ prompt: str = ""
64
+ choices: List[ConfirmChoiceItem] = []
65
+ default: str = ""
66
+
67
+
68
+ class ActionRequestUserConfirm(ReplyActionBase):
69
+
70
+ action: str = "request_user_confirm"
71
+ params: RequestUserConfirmParams = RequestUserConfirmParams()
72
+
73
+
74
+ class ReceiveUserConfirmParams(BaseModel):
75
+ result: str = ""
76
+
77
+
78
+ class ActionReceiveUserConfirm(ActionBase):
79
+
80
+ action: str = "receive_user_confirm"
81
+ params: ReceiveUserConfirmParams = ReceiveUserConfirmParams()
82
+
83
+
84
+ class RequestUserSupplyInfo(BaseModel):
85
+ prompt: str = Field(
86
+ description="需要用户补充详细信息的Prompt",
87
+ examples=["请补充与...相关的详细的信息", "请确认...是否...", "请提供..."],
88
+ )
89
+ example: Optional[str] = Field(None, description="示例", examples=["..."])
90
+
91
+
92
+ class UserSupplyInfoReply(BaseModel):
93
+ prompt: str = Field(description="需要用户补充详细信息的Prompt", examples=["..."])
94
+ reply: str = Field(description="用户补充的详细信息", examples=["..."])
95
+
96
+
97
+ class RequestUserSupplyInfoParams(BaseModel):
98
+ title: str = ""
99
+ issues: List[RequestUserSupplyInfo] = []
100
+
101
+
102
+ class ActionRequestUserSupplyInfo(ReplyActionBase):
103
+
104
+ action: str = "request_user_supply_info"
105
+ params: RequestUserSupplyInfoParams = RequestUserSupplyInfoParams()
106
+
107
+
108
+ class ReceiveUserSupplyInfoParams(BaseModel):
109
+ replies: List[UserSupplyInfoReply] = Field(
110
+ description="完成补充确认的信息列表",
111
+ examples=[
112
+ UserSupplyInfoReply(prompt="请确认...是否...", reply="是"),
113
+ UserSupplyInfoReply(prompt="请补充...", reply="..."),
114
+ ],
115
+ )
116
+
117
+
118
+ class ActionReceiveUserSupplyInfo(ActionBase):
119
+ action: str = "receive_user_supply_info"
120
+ params: ReceiveUserSupplyInfoParams = ReceiveUserSupplyInfoParams(replies=[])
121
+
122
+
123
+ def request_user_reply(prompts: list[RequestUserSupplyInfo]) -> list[UserSupplyInfoReply]:
124
+ responses = []
125
+ for prompt in prompts:
126
+ response = input(f"{prompt.prompt} (例如: {prompt.example})")
127
+ responses.append(UserSupplyInfoReply(prompt=prompt.prompt, reply=response))
128
+ return responses
129
+
130
+
131
+ def get_action_class(action_name: str) -> type[ActionBase]:
132
+ for obj in globals().values():
133
+ if isinstance(obj, type) and issubclass(obj, ActionBase):
134
+ if obj.__name__ == action_name or obj.model_fields["action"].default == action_name:
135
+ return obj
136
+ raise ValueError(f"Unknown action: {action_name}")
137
+
138
+
139
+ class ActionReply(BaseModel):
140
+ reply_timestamp: float
141
+ retrieved_timestamp: float = 0
142
+ uuid: str
143
+ source: str = ""
144
+ action: str = ""
145
+ retrieved: bool = False
146
+ reply: ActionBase
147
+
148
+
149
+ class ActionDispatcher(threading.Thread):
150
+ def __init__(self, host="127.0.0.1", port=0, app=None):
151
+ super().__init__(daemon=True)
152
+ self.action_queue = queue.Queue()
153
+ self.action_replies: dict[str, ActionReply] = {}
154
+ self.app = app or default_app()
155
+ self.host = host
156
+ self.port = port
157
+ self.server = None
158
+ if get_env_capbilities().user_confirm or get_env_capbilities().user_supply_info:
159
+ self.port = self.port or self.select_port(self.host)
160
+ self.server = make_server(self.host, self.port, self.app)
161
+ self.start()
162
+
163
+ def select_port(self, host):
164
+ sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
165
+ sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
166
+ sock.bind((host, 0))
167
+ port = sock.getsockname()[1]
168
+ sock.close()
169
+ return port
170
+
171
+ def run(self):
172
+ if self.server is not None:
173
+ self.server.serve_forever()
174
+
175
+ def close(self):
176
+ if self.server is not None:
177
+ self.server.shutdown()
178
+ self.server.server_close()
179
+
180
+ def __del__(self):
181
+ self.close()
182
+
183
+ def __enter__(self):
184
+ return self
185
+
186
+ def __exit__(self, exc_type, exc_value, traceback):
187
+ self.close()
188
+
189
+ def send_action(self, action: ActionBase, need_reply: bool = False):
190
+
191
+ if need_reply:
192
+ assert isinstance(action, ReplyActionBase)
193
+ action.reply_host = self.host
194
+ action.reply_port = self.port
195
+ action.timestamp = action.timestamp or time.time()
196
+ action.uuid = action.uuid and str(uuid.uuid4())
197
+ self.action_queue.put(action.model_dump())
198
+ bot_outputs = importlib.import_module(".bot_outputs", __package__)
199
+ bot_outputs.output_action(action)
200
+
201
+ def get_action_reply(self, action: ReplyActionBase, wait: bool = True) -> Optional[ActionBase]:
202
+
203
+ while wait and action.uuid not in self.action_replies:
204
+ time.sleep(1)
205
+ if action.uuid in self.action_replies:
206
+ self.action_replies[action.uuid].retrieved = True
207
+ self.action_replies[action.uuid].retrieved_timestamp = time.time()
208
+ return self.action_replies.get(action.uuid) and self.action_replies[action.uuid].reply
209
+
210
+
211
+ _default_action_dispatcher = None
212
+
213
+
214
+ def get_action_dispatcher() -> ActionDispatcher:
215
+ global _default_action_dispatcher
216
+
217
+ if not _default_action_dispatcher:
218
+ _default_action_dispatcher = ActionDispatcher()
219
+ elif not _default_action_dispatcher.is_alive():
220
+ _default_action_dispatcher.close()
221
+ _default_action_dispatcher = ActionDispatcher()
222
+ return _default_action_dispatcher
223
+
224
+
225
+ def close_action_dispatcher():
226
+ global _default_action_dispatcher
227
+
228
+ if _default_action_dispatcher:
229
+ _default_action_dispatcher.close()
230
+ _default_action_dispatcher = None
231
+
232
+
233
+ @get("/echo")
234
+ def echo():
235
+ response.content_type = "application/json"
236
+ return json.dumps({"status": "OK"})
237
+
238
+
239
+ @post("/action_reply")
240
+ def action_reply():
241
+ try:
242
+ uuid = request.GET["uuid"] # type: ignore
243
+ action = request.GET.get("a") or request.json.get("action") # type: ignore
244
+ source = request.GET.get("s") or request.json.get("source") # type: ignore
245
+ reply = get_action_class(action)(**request.json) # type: ignore
246
+ action_reply = ActionReply(reply_timestamp=time.time(), uuid=uuid, source=source, action=action, reply=reply)
247
+ get_action_dispatcher().action_replies[action_reply.uuid] = action_reply
248
+ response.content_type = "application/json"
249
+ return json.dumps({"status": "OK"})
250
+ except Exception as e:
251
+ response.content_type = "application/json"
252
+ return json.dumps(
253
+ {"status": "ERROR", "error": f"{type(e).__name__}: {e}", "traceback": traceback.format_exc()}
254
+ )
255
+
256
+
257
+ @get("/action_fetch")
258
+ def action_fetch():
259
+ try:
260
+ action = get_action_dispatcher().action_queue.get(block=False)
261
+ response.content_type = "application/json"
262
+ return json.dumps({"status": "OK", "action": action})
263
+ except queue.Empty:
264
+ response.content_type = "application/json"
265
+ return json.dumps({"status": "EMPTY"})
266
+ except Exception as e:
267
+ response.content_type = "application/json"
268
+ return json.dumps(
269
+ {"status": "ERROR", "error": f"{type(e).__name__}: {e}", "traceback": traceback.format_exc()}
270
+ )
@@ -1,42 +0,0 @@
1
- """
2
- Copyright (c) 2025 viewstar000
3
-
4
- This software is released under the MIT License.
5
- https://opensource.org/licenses/MIT
6
- """
7
-
8
- from .base import BaseChatAgent, AgentFactory
9
- from .master_planner import MasterPlannerAgent
10
- from .output_task_result import OutputTaskResult
11
- from .task_code_executor import CodeExecutor
12
- from .task_planner_v1 import TaskPlannerAgentV1
13
- from .task_planner_v2 import TaskPlannerAgentV2
14
- from .task_planner_v3 import TaskPlannerAgentV3
15
- from .task_coder import TaskCodingAgent
16
- from .task_debuger import CodeDebugerAgent
17
- from .task_verifier import TaskVerifyAgent, TaskVerifyState
18
- from .task_summarier import TaskSummaryAgent
19
- from .task_verify_summarier import TaskVerifySummaryAgent
20
- from .task_structrue_summarier import TaskStructureSummaryAgent
21
- from .task_reasoner import TaskReasoningAgent
22
- from .task_structrue_reasoner import TaskStructureReasoningAgent
23
-
24
- __all__ = [
25
- "AgentFactory",
26
- "BaseChatAgent",
27
- "CodeDebugerAgent",
28
- "CodeExecutor",
29
- "MasterPlannerAgent",
30
- "TaskCodingAgent",
31
- "TaskPlannerAgentV1",
32
- "TaskPlannerAgentV2",
33
- "TaskPlannerAgentV3",
34
- "TaskReasoningAgent",
35
- "TaskStructureReasoningAgent",
36
- "TaskStructureSummaryAgent",
37
- "TaskSummaryAgent",
38
- "TaskVerifyAgent",
39
- "TaskVerifyState",
40
- "TaskVerifySummaryAgent",
41
- "OutputTaskResult",
42
- ]
@@ -7,11 +7,13 @@ https://opensource.org/licenses/MIT
7
7
 
8
8
  import json
9
9
  import importlib
10
+ import traceback
10
11
 
11
12
  from typing import Tuple, Any
12
13
  from enum import Enum, unique
14
+ from pydantic import BaseModel, Field
13
15
  from IPython.display import Markdown
14
- from ..bot_outputs import _C, flush_output
16
+ from ..bot_outputs import _C, _O, _W, _T, flush_output
15
17
  from ..bot_chat import BotChat
16
18
  from ..utils import no_indent
17
19
 
@@ -133,6 +135,7 @@ class AgentModelType(str, Enum):
133
135
  DEFAULT = "default"
134
136
  PLANNER = "planner"
135
137
  CODING = "coding"
138
+ EVALUATING = "evaluating"
136
139
  REASONING = "reasoning"
137
140
 
138
141
 
@@ -150,6 +153,9 @@ class BaseAgent:
150
153
  def cells(self):
151
154
  return self.notebook_context.cells
152
155
 
156
+ def __call__(self, **kwds: Any) -> Tuple[bool, Any]:
157
+ raise NotImplementedError
158
+
153
159
 
154
160
  class BaseChatAgent(BotChat, BaseAgent):
155
161
  """基础聊天代理类"""
@@ -161,12 +167,13 @@ class BaseChatAgent(BotChat, BaseAgent):
161
167
  DISPLAY_REPLY = True
162
168
  COMBINE_REPLY = AgentCombineReply.MERGE
163
169
  ACCEPT_EMPYT_REPLY = False
170
+ REPLY_ERROR_RETRIES = 1
164
171
  MODEL_TYPE = AgentModelType.REASONING
165
172
 
166
- def __init__(self, notebook_context, base_url, api_key, model_name, **chat_kwargs):
173
+ def __init__(self, notebook_context, **chat_kwargs):
167
174
  """初始化基础任务代理"""
168
175
  BaseAgent.__init__(self, notebook_context)
169
- BotChat.__init__(self, base_url, api_key, model_name, **chat_kwargs)
176
+ BotChat.__init__(self, **chat_kwargs)
170
177
 
171
178
  def prepare_contexts(self, **kwargs):
172
179
  contexts = {
@@ -185,8 +192,16 @@ class BaseChatAgent(BotChat, BaseAgent):
185
192
  }
186
193
  else:
187
194
  json_example = {}
188
- contexts["OUTPUT_JSON_SCHEMA"] = json.dumps(json_schema, indent=2, ensure_ascii=False)
189
- contexts["OUTPUT_JSON_EXAMPLE"] = json.dumps(json_example, indent=2, ensure_ascii=False)
195
+
196
+ def _default(o):
197
+ if isinstance(o, BaseModel):
198
+ return o.model_dump()
199
+ if isinstance(o, Enum):
200
+ return o.value
201
+ return repr(o)
202
+
203
+ contexts["OUTPUT_JSON_SCHEMA"] = json.dumps(json_schema, indent=2, ensure_ascii=False, default=_default)
204
+ contexts["OUTPUT_JSON_EXAMPLE"] = json.dumps(json_example, indent=2, ensure_ascii=False, default=_default)
190
205
  contexts.update(kwargs)
191
206
  return contexts
192
207
 
@@ -220,30 +235,41 @@ class BaseChatAgent(BotChat, BaseAgent):
220
235
 
221
236
  def combine_json_replies(self, replies):
222
237
  json_replies = [reply for reply in replies if reply["type"] == "code" and reply["lang"] == "json"]
223
- if self.COMBINE_REPLY == AgentCombineReply.FIRST:
224
- json_obj = json.loads(json_replies[0]["content"])
225
- if self.OUTPUT_JSON_SCHEMA:
226
- json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
227
- return json_obj
228
- elif self.COMBINE_REPLY == AgentCombineReply.LAST:
229
- json_obj = json.loads(json_replies[-1]["content"])
230
- if self.OUTPUT_JSON_SCHEMA:
231
- json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
232
- return json_obj
233
- elif self.COMBINE_REPLY == AgentCombineReply.LIST:
234
- json_objs = [json.loads(reply["content"]) for reply in json_replies]
235
- if self.OUTPUT_JSON_SCHEMA:
236
- json_objs = [self.OUTPUT_JSON_SCHEMA(**json_obj) for json_obj in json_objs]
237
- return json_objs
238
- elif self.COMBINE_REPLY == AgentCombineReply.MERGE:
239
- json_obj = {}
240
- for json_reply in json_replies:
241
- json_obj.update(json.loads(json_reply["content"]))
242
- if self.OUTPUT_JSON_SCHEMA:
243
- json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
244
- return json_obj
245
- else:
246
- raise ValueError("Unsupported combine_reply: {} for json output".format(self.COMBINE_REPLY))
238
+ assert self.COMBINE_REPLY in [
239
+ AgentCombineReply.FIRST,
240
+ AgentCombineReply.LAST,
241
+ AgentCombineReply.LIST,
242
+ AgentCombineReply.MERGE,
243
+ ]
244
+ try:
245
+ if self.COMBINE_REPLY == AgentCombineReply.FIRST:
246
+ json_obj = json.loads(json_replies[0]["content"])
247
+ if self.OUTPUT_JSON_SCHEMA:
248
+ json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
249
+ return json_obj
250
+ elif self.COMBINE_REPLY == AgentCombineReply.LAST:
251
+ json_obj = json.loads(json_replies[-1]["content"])
252
+ if self.OUTPUT_JSON_SCHEMA:
253
+ json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
254
+ return json_obj
255
+ elif self.COMBINE_REPLY == AgentCombineReply.LIST:
256
+ json_objs = [json.loads(reply["content"]) for reply in json_replies]
257
+ if self.OUTPUT_JSON_SCHEMA:
258
+ json_objs = [self.OUTPUT_JSON_SCHEMA(**json_obj) for json_obj in json_objs]
259
+ return json_objs
260
+ elif self.COMBINE_REPLY == AgentCombineReply.MERGE:
261
+ json_obj = {}
262
+ for json_reply in json_replies:
263
+ json_obj.update(json.loads(json_reply["content"]))
264
+ if self.OUTPUT_JSON_SCHEMA:
265
+ json_obj = self.OUTPUT_JSON_SCHEMA(**json_obj)
266
+ return json_obj
267
+ else:
268
+ return False
269
+ except Exception as e:
270
+ _T(f"提取JSON失败: {type(e).__name__}: {e}")
271
+ _W(traceback.format_exc())
272
+ return False
247
273
 
248
274
  def combine_text_replies(self, replies):
249
275
  text_replies = [reply for reply in replies if reply["type"] == "text"]
@@ -274,10 +300,22 @@ class BaseChatAgent(BotChat, BaseAgent):
274
300
  def __call__(self, **kwargs) -> Tuple[bool, Any]:
275
301
  contexts = self.prepare_contexts(**kwargs)
276
302
  messages = self.create_messages(contexts)
277
- replies = self.chat(messages.get(), display_reply=self.DISPLAY_REPLY)
278
- reply = self.combine_replies(replies)
279
- if not self.ACCEPT_EMPYT_REPLY and not reply:
280
- raise ValueError("Reply is empty")
303
+ reply_retries = 0
304
+ while reply_retries <= self.REPLY_ERROR_RETRIES:
305
+ replies = self.chat(messages.get(), display_reply=self.DISPLAY_REPLY)
306
+ reply = self.combine_replies(replies)
307
+ if reply is False:
308
+ reply_retries += 1
309
+ if reply_retries > self.REPLY_ERROR_RETRIES:
310
+ raise ValueError("Failed to get reply")
311
+ _W("Failed to get reply, retrying...")
312
+ elif not self.ACCEPT_EMPYT_REPLY and not reply:
313
+ reply_retries += 1
314
+ if reply_retries > self.REPLY_ERROR_RETRIES:
315
+ raise ValueError("Reply is empty")
316
+ _W("Reply is empty, retrying...")
317
+ else:
318
+ break
281
319
  result = self.on_reply(reply)
282
320
  flush_output()
283
321
  if not isinstance(result, tuple):
@@ -300,25 +338,31 @@ class AgentFactory:
300
338
  "model": model_name,
301
339
  }
302
340
 
303
- def __call__(self, agent_class):
304
-
341
+ def get_agent_class(self, agent_class):
305
342
  if isinstance(agent_class, str):
306
343
  bot_agents = importlib.import_module("..bot_agents", __package__)
307
344
  agent_class = getattr(bot_agents, agent_class)
345
+ assert issubclass(agent_class, BaseAgent), "Unsupported agent class: {}".format(agent_class)
346
+ return agent_class
308
347
 
348
+ def get_chat_kwargs(self, agent_class):
309
349
  if issubclass(agent_class, BaseChatAgent):
310
350
  agent_model = agent_class.MODEL_TYPE if hasattr(agent_class, "MODEL_TYPE") else AgentModelType.DEFAULT
311
- return agent_class(
312
- notebook_context=self.notebook_context,
313
- base_url=self.models.get(agent_model, {}).get("api_url")
351
+ chat_kwargs = {
352
+ "base_url": self.models.get(agent_model, {}).get("api_url")
314
353
  or self.models[AgentModelType.DEFAULT]["api_url"],
315
- api_key=self.models.get(agent_model, {}).get("api_key")
354
+ "api_key": self.models.get(agent_model, {}).get("api_key")
316
355
  or self.models[AgentModelType.DEFAULT]["api_key"],
317
- model_name=self.models.get(agent_model, {}).get("model")
356
+ "model_name": self.models.get(agent_model, {}).get("model")
318
357
  or self.models[AgentModelType.DEFAULT]["model"],
319
- **self.chat_kwargs,
320
- )
321
- elif issubclass(agent_class, BaseAgent):
322
- return agent_class(notebook_context=self.notebook_context)
358
+ }
359
+ chat_kwargs.update(self.chat_kwargs)
360
+ return chat_kwargs
323
361
  else:
324
- raise ValueError("Unsupported agent class: {}".format(agent_class))
362
+ return {}
363
+
364
+ def __call__(self, agent_class):
365
+
366
+ agent_class = self.get_agent_class(agent_class)
367
+ chat_kwargs = self.get_chat_kwargs(agent_class)
368
+ return agent_class(self.notebook_context, **chat_kwargs)
@@ -42,4 +42,5 @@ class MasterPlannerAgent(BaseChatAgent):
42
42
  MODEL_TYPE = AgentModelType.PLANNER
43
43
 
44
44
  def on_reply(self, reply):
45
+ self.task.agent_data.result = ""
45
46
  _C(Markdown(reply), reply_type=ReplyType.TASK_RESULT)
@@ -17,13 +17,12 @@ class OutputTaskResult(BaseAgent):
17
17
  def __call__(self):
18
18
  """执行代码逻辑"""
19
19
  if self.task.result:
20
- _O(Markdown("### 任务结果\n\n"))
21
- _C(Markdown(self.task.result), reply_type=ReplyType.TASK_RESULT)
20
+ _M("### 任务结果\n\n" + self.task.result)
22
21
  if self.task.important_infos:
23
- _O(
24
- markdown_block(
25
- f"```json\n{json.dumps(self.task.important_infos, indent=4, ensure_ascii=False)}\n```",
26
- title="重要信息",
27
- )
22
+ _B(
23
+ json.dumps(self.task.important_infos, indent=4, ensure_ascii=False),
24
+ title="重要信息",
25
+ format="code",
26
+ code_language="json",
28
27
  )
29
28
  return False, None
@@ -0,0 +1,52 @@
1
+ """
2
+ Copyright (c) 2025 viewstar000
3
+
4
+ This software is released under the MIT License.
5
+ https://opensource.org/licenses/MIT
6
+ """
7
+
8
+ import json
9
+ import datetime
10
+
11
+ from IPython.display import Markdown
12
+ from .base import BaseAgent
13
+ from ..bot_outputs import _D, _I, _W, _E, _F, _M, _B, _C, _O, ReplyType, markdown_block
14
+ from ..bot_actions import get_action_dispatcher, ActionSetCellContent, SetCellContentParams
15
+ from ..utils import get_env_capbilities
16
+
17
+
18
+ class PrepareNextCell(BaseAgent):
19
+
20
+ def __call__(self):
21
+ """执行代码逻辑"""
22
+ if get_env_capbilities().set_cell_content:
23
+ _I("set next cell content to generate the next task")
24
+ get_action_dispatcher().send_action(
25
+ ActionSetCellContent(
26
+ source=self.__class__.__name__,
27
+ params=SetCellContentParams(
28
+ index=1,
29
+ type="code",
30
+ source=(
31
+ "%%bot\n\n"
32
+ "# Execute this cell to generate the next task\n"
33
+ "# {}\n"
34
+ "# Special Note: Ensure the notebook is SAVED before executing this cell!\n"
35
+ ).format(datetime.datetime.now().isoformat()),
36
+ ),
37
+ ),
38
+ need_reply=False,
39
+ )
40
+ else:
41
+ _M("Copy the following code to the next cell to generate the next task ...")
42
+ _M(
43
+ (
44
+ "```python\n"
45
+ "%%bot\n\n"
46
+ "# Execute this cell to generate the next task\n"
47
+ "# {}\n"
48
+ "# Special Note: Ensure the notebook is SAVED before executing this cell!\n"
49
+ "```"
50
+ ).format(datetime.datetime.now().isoformat())
51
+ )
52
+ return False, None