prepare 0.5.25 changelog (#778)

This commit is contained in:
ekko
2026-05-16 09:40:25 +08:00
committed by GitHub
parent 07257a8964
commit cf9d0c6008
15 changed files with 208 additions and 27 deletions
@@ -280,12 +280,13 @@ export class AgentBridgeClient {
conversationHistory?: unknown[],
instructions?: string,
profile?: string,
options: { force_compress?: boolean } = {},
options: { force_compress?: boolean; storage_message?: AgentBridgeMessage } = {},
): Promise<AgentBridgeChatStarted> {
return this.request<AgentBridgeChatStarted>({
action: 'chat',
session_id: sessionId,
message,
...(options.storage_message !== undefined ? { storage_message: options.storage_message } : {}),
...(conversationHistory ? { conversation_history: conversationHistory } : {}),
...(instructions ? { instructions } : {}),
...(profile ? { profile } : {}),