@feedmepos/mf-remy-panel 0.18.0-dev.3 → 0.18.0-dev.5
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-70f9570b.js → HomeView-07d2f6c0.js} +1 -1
- package/dist/{RemyButton-3538eab4.js → RemyButton-35134fe9.js} +1 -1
- package/dist/api/conversations.d.ts +1 -1
- package/dist/api/memory.d.ts +1 -13
- package/dist/{app-a9672762.js → app-aba90059.js} +7479 -7480
- 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/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/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;
|