- 增加 Agent Run MVP-0,包括 RunDispatcher 和 AgentRunJob - 优化队列配置,支持 Redis 队列驱动,添加 Horizon 容器 - 更新 Docker 配置,细化角色分工,新增 Horizon 配置 - 增加测试任务 `TestJob`,扩展队列使用示例 - 更新 OpenAPI 规范,添加 Agent Run 相关接口及示例 - 编写文档,详细描述 Agent Run 流程与 MVP-0 功能 - 优化相关服务与文档,支持队列与异步运行
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Message;
|
|
|
|
class OutputSink
|
|
{
|
|
public function __construct(private readonly ChatService $chatService)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $meta
|
|
*/
|
|
public function appendAgentMessage(string $sessionId, string $runId, string $content, array $meta = []): Message
|
|
{
|
|
return $this->chatService->appendMessage([
|
|
'session_id' => $sessionId,
|
|
'role' => Message::ROLE_AGENT,
|
|
'type' => 'agent.message',
|
|
'content' => $content,
|
|
'payload' => array_merge($meta, ['run_id' => $runId]),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $meta
|
|
*/
|
|
public function appendRunStatus(string $sessionId, string $runId, string $status, array $meta = []): Message
|
|
{
|
|
$dedupeKey = $meta['dedupe_key'] ?? null;
|
|
unset($meta['dedupe_key']);
|
|
|
|
return $this->chatService->appendMessage([
|
|
'session_id' => $sessionId,
|
|
'role' => Message::ROLE_SYSTEM,
|
|
'type' => 'run.status',
|
|
'payload' => array_merge($meta, [
|
|
'run_id' => $runId,
|
|
'status' => $status,
|
|
]),
|
|
'dedupe_key' => $dedupeKey,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $meta
|
|
*/
|
|
public function appendError(string $sessionId, string $runId, string $code, string $message, array $meta = []): Message
|
|
{
|
|
return $this->chatService->appendMessage([
|
|
'session_id' => $sessionId,
|
|
'role' => Message::ROLE_SYSTEM,
|
|
'type' => 'error',
|
|
'content' => $code,
|
|
'payload' => array_merge($meta, [
|
|
'run_id' => $runId,
|
|
'message' => $message,
|
|
]),
|
|
]);
|
|
}
|
|
}
|