@feedmepos/mf-remy-panel 0.18.0-dev.4 → 0.18.0-dev.6
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.
- package/dist/{HomeView-1b85fcce.js → HomeView-19e1e478.js} +1 -1
- package/dist/{RemyButton-3121f8b5.js → RemyButton-70c89b65.js} +1 -1
- package/dist/api/memory.d.ts +1 -13
- package/dist/{app-fed1e7f2.js → app-f99554cd.js} +7771 -7717
- package/dist/app.js +1 -1
- package/dist/components/chatPanel/MemoryFactsBadge.vue.d.ts +4 -1
- package/dist/components/chatPanel/actionCards/McpAppCard.vue.d.ts +9 -0
- package/dist/components/chatPanel/commands/mcpPromptInvocation.d.ts +12 -0
- package/dist/stores/previewStore.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/chat.d.ts +5 -2
- package/dist/utils/memoryContext.d.ts +9 -0
- package/package.json +1 -1
package/dist/types/chat.d.ts
CHANGED
|
@@ -235,8 +235,11 @@ export interface ChatMessage {
|
|
|
235
235
|
feedback?: 'helpful' | 'unhelpful';
|
|
236
236
|
isStreaming?: boolean;
|
|
237
237
|
toolCalls?: ToolCall[];
|
|
238
|
-
/**
|
|
239
|
-
|
|
238
|
+
/** Exact durable facts and episode summaries provided to Remy for this turn. */
|
|
239
|
+
retrievedMemoryContext?: {
|
|
240
|
+
facts?: string;
|
|
241
|
+
episodes?: string;
|
|
242
|
+
};
|
|
240
243
|
}
|
|
241
244
|
export interface Conversation {
|
|
242
245
|
id: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface RetrievedMemoryContext {
|
|
2
|
+
facts?: string;
|
|
3
|
+
episodes?: string;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Reads durable memory evidence from both live and reloaded AI SDK messages.
|
|
7
|
+
* The legacy fact-only part stays readable during rollout.
|
|
8
|
+
*/
|
|
9
|
+
export declare function extractRetrievedMemoryContext(parts: readonly unknown[]): RetrievedMemoryContext | undefined;
|