b61524e5d9
1. chat.py stream 端点改为调用 regulatory_node.stream_working()(pydantic-ai run_stream),支持工具调用 + 逐 token 流式输出 2. regulatory_node 新增 stream_working 方法,通过 asyncio.Queue 推送 token 3. ConsciousnessNodeDeps.available_skills 加默认值 None,修复 ForWorkflowInput/ ForregulatoryInput 路径的 ValidationError Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
79 lines
2.8 KiB
Python
79 lines
2.8 KiB
Python
# Copyright 2026 zhaoxi826
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
from kilostar.core.work.workflow.workflow import KiloStarWorkflow, WorkflowStep
|
|
from kilostar.utils.agent_model import ResponseModel, DepsModel, RequestModel
|
|
from pydantic import Field
|
|
from typing import Optional, List
|
|
|
|
|
|
# 意识节点回复类
|
|
class ConsciousnessNodeResponse(ResponseModel):
|
|
"""Consciousness response model,是意识节点所有回复类型的父类"""
|
|
pass
|
|
|
|
class ConsciousnessNodeDeps(DepsModel):
|
|
"""ConsciousnessNode 在 pydantic-ai Agent 中使用的依赖:原始指令、当前指令以及可用 Skill 列表。"""
|
|
original_command: str
|
|
command: str
|
|
available_skills: Optional[List[str]] = None
|
|
|
|
class ConsciousnessNodeInput(RequestModel):
|
|
"""ConsciousnessNode 各类入参的共同基类,仅用于打 schema 标签。"""
|
|
pass
|
|
|
|
|
|
class ForWorkflowEngine(ConsciousnessNodeResponse):
|
|
"""生成workflow并放入WorkflowEngine"""
|
|
|
|
workflow: KiloStarWorkflow = Field(
|
|
..., description="生成好的符合规范的完整工作流对象。"
|
|
)
|
|
reasoning: str = Field(..., description="生成此工作流的原因和思路简述。")
|
|
|
|
|
|
class ForWorkflow(ConsciousnessNodeResponse):
|
|
"""处理workflow中需要ConsciousnessNode的工作"""
|
|
|
|
output: str = Field(..., description="对当前工作流步骤的具体处理结果或指导意见。")
|
|
|
|
|
|
class ForregulatoryNode(ConsciousnessNodeResponse):
|
|
"""工作流完成后进行校验并返回给regulatoryNode"""
|
|
|
|
output: str = Field(
|
|
..., description="为监控节点提供的全工作流执行情况的技术性总结报告。"
|
|
)
|
|
|
|
class ForWorkflowEngineInput(ConsciousnessNodeInput):
|
|
"""从 RegulatoryNode 移交过来生成 Workflow 的入参:原始指令 + 已注册的 Skill 列表。"""
|
|
|
|
original_command: str
|
|
available_skills: list[dict] | None = None
|
|
|
|
|
|
class ForWorkflowInput(ConsciousnessNodeInput):
|
|
"""工作流执行期分配给 ConsciousnessNode 的步骤入参:当前 step + 原始指令上下文。"""
|
|
|
|
workflow_step: WorkflowStep
|
|
original_command: str
|
|
|
|
|
|
class ForregulatoryInput(ConsciousnessNodeInput):
|
|
"""工作流跑完后回交给 RegulatoryNode 时的入参:完整 workflow 对象 + 原始指令。"""
|
|
|
|
workflow: KiloStarWorkflow
|
|
original_command: str
|