feat: AgentManager - foundation for unified execution (#4389) (#4684)

This commit is contained in:
tlongwell-block
2025-09-24 16:15:26 -04:00
committed by GitHub
parent ad045bc94c
commit 9d40422e2d
34 changed files with 896 additions and 352 deletions
+5
View File
@@ -83,6 +83,10 @@ export type ContextManageRequest = {
* Collection of messages to be managed
*/
messages: Array<Message>;
/**
* Optional session ID for session-specific agent
*/
sessionId: string;
};
/**
@@ -113,6 +117,7 @@ export type CreateRecipeRequest = {
author?: AuthorRequest | null;
description: string;
messages: Array<Message>;
session_id: string;
title: string;
};