qlogicagent 2.23.9 → 2.23.10
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.
|
@@ -42,15 +42,6 @@ export declare function persistInboundUploadUrl(url: string, projectId: string,
|
|
|
42
42
|
export declare function persistInboundUploadsForTurn(messages: ChatMessage[], projectId: string | undefined, sessionId: string | undefined): Promise<ChatMessage[]>;
|
|
43
43
|
/**
|
|
44
44
|
* 在任意模型可见文本中查找文档类传输 URL,落盘并追加本地路径注记。
|
|
45
|
-
*
|
|
46
|
-
* turn-handler 的 attachmentModelContext(拼接到 LLM 视图的附件上下文)。
|
|
45
|
+
* 供 turn-handler 的 attachmentModelContext 使用;持久会话正文不包含该清单。
|
|
47
46
|
*/
|
|
48
47
|
export declare function appendLocalDocumentNotesToText(text: string, projectId: string | undefined, sessionId: string | undefined): Promise<string>;
|
|
49
|
-
/**
|
|
50
|
-
* 把最后一条用户消息文本里的文档类传输 URL 抓下来落盘,并在消息末尾追加本地
|
|
51
|
-
* 路径注记 —— 模型从"短命 URL"起步变成从"可 read/exec 的本地文件"起步。
|
|
52
|
-
* image/video/audio 已由 persistInboundUploadsForTurn 处理,这里只管文档。
|
|
53
|
-
* 仅覆盖清单被烤进 user text 的 gateway 及 legacy 会话;新版 turn 的文档引用
|
|
54
|
-
* 走 attachmentModelContext,由 turn-handler 调 appendLocalDocumentNotesToText。
|
|
55
|
-
*/
|
|
56
|
-
export declare function persistInboundDocumentRefsForTurn(messages: ChatMessage[], projectId: string | undefined, sessionId: string | undefined): Promise<ChatMessage[]>;
|