@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/app.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "vue";
|
|
2
|
-
import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-
|
|
2
|
+
import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-f99554cd.js";
|
|
3
3
|
import "pinia";
|
|
4
4
|
import "@feedmepos/mf-common";
|
|
5
5
|
import "vue-router";
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
interface Props {
|
|
2
|
-
|
|
2
|
+
context: {
|
|
3
|
+
facts?: string;
|
|
4
|
+
episodes?: string;
|
|
5
|
+
};
|
|
3
6
|
}
|
|
4
7
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
8
|
export default _default;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders a tool call's MCP Apps (SEP-1865) UI resource.
|
|
3
|
+
*
|
|
4
|
+
* `sandbox="allow-downloads"` and nothing else: scripts, forms, same-origin
|
|
5
|
+
* and top-navigation all stay blocked, but a card whose point is handing the
|
|
6
|
+
* user a file (menu-mcp's `buildMenuPortalImport` download card) needs this
|
|
7
|
+
* one token — without it Chrome blocks the download the click starts, since
|
|
8
|
+
* the frame initiating it is sandboxed.
|
|
9
|
+
*/
|
|
1
10
|
import type { ToolCall } from '@/types/chat';
|
|
2
11
|
interface Props {
|
|
3
12
|
toolCall: ToolCall;
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import type { McpPromptArgument } from './types';
|
|
2
|
+
/** Literal suffix this repo's MCP servers append to a prompt argument's
|
|
3
|
+
* description to flag it as accepting MULTIPLE completion picks — MCP's
|
|
4
|
+
* `completion/complete` has no native multi-select concept (confirmed
|
|
5
|
+
* against both the installed SDK's targeted spec version and its `draft`),
|
|
6
|
+
* so this is a repo-local UI convention, not a protocol extension. See
|
|
7
|
+
* `apps/remy-mcp/src/weather/plan-trip-prompt.ts`'s `interests` argument and
|
|
8
|
+
* remy-cli's identical `mcp-prompts.ts` convention. */
|
|
9
|
+
export declare const MCP_PROMPT_MULTI_SELECT_SUFFIX = " (select multiple)";
|
|
10
|
+
export declare function isMultiSelectMcpPromptArg(arg: McpPromptArgument): boolean;
|
|
11
|
+
/** `arg.description` with the multi-select marker suffix stripped, if
|
|
12
|
+
* present — never show the raw marker text to the user. */
|
|
13
|
+
export declare function displayMcpPromptArgDescription(arg: McpPromptArgument): string | undefined;
|
|
2
14
|
/**
|
|
3
15
|
* Names of `args` that are `required` but have no value (or only a
|
|
4
16
|
* blank/whitespace value) in `argValues` yet. Used by `ChatInput.vue` to
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReportArtifactResult, ExcelExportActionCardResult, RcaInsightCardResult } from '@/types/chat';
|
|
2
|
-
export type PreviewPage = 'all-sessions' | 'tasks' | 'integrations' | 'memory';
|
|
2
|
+
export type PreviewPage = 'all-sessions' | 'tasks' | 'integrations' | 'dreamer' | 'memory';
|
|
3
3
|
export type AllSessionsTab = 'all' | 'this';
|
|
4
4
|
export type PreviewFocus = {
|
|
5
5
|
kind: 'docx';
|