@mastra/client-js 0.0.0-vector-sources-20250516175436 → 0.0.0-vector-query-tool-provider-options-20250828222356
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/.turbo/turbo-build.log +18 -0
- package/CHANGELOG.md +1318 -2
- package/LICENSE.md +11 -42
- package/README.md +2 -1
- package/dist/adapters/agui.d.ts +23 -0
- package/dist/adapters/agui.d.ts.map +1 -0
- package/dist/client.d.ts +274 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/example.d.ts +2 -0
- package/dist/example.d.ts.map +1 -0
- package/dist/index.cjs +1801 -137
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +4 -883
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1803 -139
- package/dist/index.js.map +1 -0
- package/dist/resources/a2a.d.ts +41 -0
- package/dist/resources/a2a.d.ts.map +1 -0
- package/dist/resources/agent.d.ts +130 -0
- package/dist/resources/agent.d.ts.map +1 -0
- package/dist/resources/base.d.ts +13 -0
- package/dist/resources/base.d.ts.map +1 -0
- package/dist/resources/index.d.ts +12 -0
- package/dist/resources/index.d.ts.map +1 -0
- package/dist/resources/legacy-workflow.d.ts +87 -0
- package/dist/resources/legacy-workflow.d.ts.map +1 -0
- package/dist/resources/mcp-tool.d.ts +27 -0
- package/dist/resources/mcp-tool.d.ts.map +1 -0
- package/dist/resources/memory-thread.d.ts +53 -0
- package/dist/resources/memory-thread.d.ts.map +1 -0
- package/dist/resources/network-memory-thread.d.ts +47 -0
- package/dist/resources/network-memory-thread.d.ts.map +1 -0
- package/dist/resources/network.d.ts +30 -0
- package/dist/resources/network.d.ts.map +1 -0
- package/dist/resources/observability.d.ts +19 -0
- package/dist/resources/observability.d.ts.map +1 -0
- package/dist/resources/tool.d.ts +23 -0
- package/dist/resources/tool.d.ts.map +1 -0
- package/dist/resources/vNextNetwork.d.ts +42 -0
- package/dist/resources/vNextNetwork.d.ts.map +1 -0
- package/dist/resources/vector.d.ts +48 -0
- package/dist/resources/vector.d.ts.map +1 -0
- package/dist/resources/workflow.d.ts +154 -0
- package/dist/resources/workflow.d.ts.map +1 -0
- package/dist/types.d.ts +449 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/process-client-tools.d.ts +3 -0
- package/dist/utils/process-client-tools.d.ts.map +1 -0
- package/dist/utils/process-mastra-stream.d.ts +7 -0
- package/dist/utils/process-mastra-stream.d.ts.map +1 -0
- package/dist/utils/zod-to-json-schema.d.ts +3 -0
- package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
- package/eslint.config.js +6 -1
- package/integration-tests/agui-adapter.test.ts +122 -0
- package/integration-tests/package.json +18 -0
- package/integration-tests/src/mastra/index.ts +35 -0
- package/integration-tests/vitest.config.ts +9 -0
- package/package.json +32 -19
- package/src/adapters/agui.test.ts +116 -3
- package/src/adapters/agui.ts +30 -12
- package/src/client.ts +333 -24
- package/src/example.ts +46 -15
- package/src/index.test.ts +429 -6
- package/src/index.ts +1 -0
- package/src/resources/a2a.ts +35 -25
- package/src/resources/agent.ts +1284 -20
- package/src/resources/base.ts +8 -1
- package/src/resources/index.ts +3 -2
- package/src/resources/{vnext-workflow.ts → legacy-workflow.ts} +124 -143
- package/src/resources/memory-thread.test.ts +285 -0
- package/src/resources/memory-thread.ts +37 -1
- package/src/resources/network-memory-thread.test.ts +269 -0
- package/src/resources/network-memory-thread.ts +81 -0
- package/src/resources/network.ts +7 -7
- package/src/resources/observability.ts +53 -0
- package/src/resources/tool.ts +4 -3
- package/src/resources/vNextNetwork.ts +194 -0
- package/src/resources/workflow.ts +255 -96
- package/src/types.ts +262 -36
- package/src/utils/index.ts +11 -0
- package/src/utils/process-client-tools.ts +32 -0
- package/src/utils/process-mastra-stream.test.ts +353 -0
- package/src/utils/process-mastra-stream.ts +49 -0
- package/src/utils/zod-to-json-schema.ts +23 -3
- package/src/v2-messages.test.ts +180 -0
- package/tsconfig.build.json +9 -0
- package/tsconfig.json +2 -2
- package/tsup.config.ts +17 -0
- package/dist/index.d.cts +0 -883
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
2
|
+
import type { GenerateReturn } from '@mastra/core/llm';
|
|
3
|
+
import type { RuntimeContext } from '@mastra/core/runtime-context';
|
|
4
|
+
import type { OutputSchema, MastraModelOutput } from '@mastra/core/stream';
|
|
5
|
+
import type { JSONSchema7 } from 'json-schema';
|
|
6
|
+
import type { ZodType } from 'zod';
|
|
7
|
+
import type { GenerateParams, GetAgentResponse, GetEvalsByAgentIdResponse, GetToolResponse, ClientOptions, StreamParams, UpdateModelParams, StreamVNextParams } from '../types.js';
|
|
8
|
+
import { processMastraStream } from '../utils/process-mastra-stream.js';
|
|
9
|
+
import { BaseResource } from './base.js';
|
|
10
|
+
export declare class AgentVoice extends BaseResource {
|
|
11
|
+
private agentId;
|
|
12
|
+
constructor(options: ClientOptions, agentId: string);
|
|
13
|
+
/**
|
|
14
|
+
* Convert text to speech using the agent's voice provider
|
|
15
|
+
* @param text - Text to convert to speech
|
|
16
|
+
* @param options - Optional provider-specific options for speech generation
|
|
17
|
+
* @returns Promise containing the audio data
|
|
18
|
+
*/
|
|
19
|
+
speak(text: string, options?: {
|
|
20
|
+
speaker?: string;
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
}): Promise<Response>;
|
|
23
|
+
/**
|
|
24
|
+
* Convert speech to text using the agent's voice provider
|
|
25
|
+
* @param audio - Audio data to transcribe
|
|
26
|
+
* @param options - Optional provider-specific options
|
|
27
|
+
* @returns Promise containing the transcribed text
|
|
28
|
+
*/
|
|
29
|
+
listen(audio: Blob, options?: Record<string, any>): Promise<{
|
|
30
|
+
text: string;
|
|
31
|
+
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Get available speakers for the agent's voice provider
|
|
34
|
+
* @returns Promise containing list of available speakers
|
|
35
|
+
*/
|
|
36
|
+
getSpeakers(): Promise<Array<{
|
|
37
|
+
voiceId: string;
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
}>>;
|
|
40
|
+
/**
|
|
41
|
+
* Get the listener configuration for the agent's voice provider
|
|
42
|
+
* @returns Promise containing a check if the agent has listening capabilities
|
|
43
|
+
*/
|
|
44
|
+
getListener(): Promise<{
|
|
45
|
+
enabled: boolean;
|
|
46
|
+
}>;
|
|
47
|
+
}
|
|
48
|
+
export declare class Agent extends BaseResource {
|
|
49
|
+
private agentId;
|
|
50
|
+
readonly voice: AgentVoice;
|
|
51
|
+
constructor(options: ClientOptions, agentId: string);
|
|
52
|
+
/**
|
|
53
|
+
* Retrieves details about the agent
|
|
54
|
+
* @returns Promise containing agent details including model and instructions
|
|
55
|
+
*/
|
|
56
|
+
details(): Promise<GetAgentResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* Generates a response from the agent
|
|
59
|
+
* @param params - Generation parameters including prompt
|
|
60
|
+
* @returns Promise containing the generated response
|
|
61
|
+
*/
|
|
62
|
+
generate(params: GenerateParams<undefined> & {
|
|
63
|
+
output?: never;
|
|
64
|
+
experimental_output?: never;
|
|
65
|
+
}): Promise<GenerateReturn<any, undefined, undefined>>;
|
|
66
|
+
generate<Output extends JSONSchema7 | ZodType>(params: GenerateParams<Output> & {
|
|
67
|
+
output: Output;
|
|
68
|
+
experimental_output?: never;
|
|
69
|
+
}): Promise<GenerateReturn<any, Output, undefined>>;
|
|
70
|
+
generate<StructuredOutput extends JSONSchema7 | ZodType>(params: GenerateParams<StructuredOutput> & {
|
|
71
|
+
output?: never;
|
|
72
|
+
experimental_output: StructuredOutput;
|
|
73
|
+
}): Promise<GenerateReturn<any, undefined, StructuredOutput>>;
|
|
74
|
+
generateVNext<T extends OutputSchema | undefined = undefined>(params: StreamVNextParams<T>): Promise<ReturnType<MastraModelOutput['getFullOutput']>>;
|
|
75
|
+
private processChatResponse;
|
|
76
|
+
/**
|
|
77
|
+
* Streams a response from the agent
|
|
78
|
+
* @param params - Stream parameters including prompt
|
|
79
|
+
* @returns Promise containing the enhanced Response object with processDataStream method
|
|
80
|
+
*/
|
|
81
|
+
stream<T extends JSONSchema7 | ZodType | undefined = undefined>(params: StreamParams<T>): Promise<Response & {
|
|
82
|
+
processDataStream: (options?: Omit<Parameters<typeof processDataStream>[0], 'stream'>) => Promise<void>;
|
|
83
|
+
}>;
|
|
84
|
+
private processChatResponse_vNext;
|
|
85
|
+
processStreamResponse_vNext(processedParams: any, writable: any): Promise<Response>;
|
|
86
|
+
streamVNext<T extends OutputSchema | undefined = undefined>(params: StreamVNextParams<T>): Promise<Response & {
|
|
87
|
+
processDataStream: ({ onChunk, }: {
|
|
88
|
+
onChunk: Parameters<typeof processMastraStream>[0]['onChunk'];
|
|
89
|
+
}) => Promise<void>;
|
|
90
|
+
}>;
|
|
91
|
+
/**
|
|
92
|
+
* Processes the stream response and handles tool calls
|
|
93
|
+
*/
|
|
94
|
+
private processStreamResponse;
|
|
95
|
+
/**
|
|
96
|
+
* Gets details about a specific tool available to the agent
|
|
97
|
+
* @param toolId - ID of the tool to retrieve
|
|
98
|
+
* @returns Promise containing tool details
|
|
99
|
+
*/
|
|
100
|
+
getTool(toolId: string): Promise<GetToolResponse>;
|
|
101
|
+
/**
|
|
102
|
+
* Executes a tool for the agent
|
|
103
|
+
* @param toolId - ID of the tool to execute
|
|
104
|
+
* @param params - Parameters required for tool execution
|
|
105
|
+
* @returns Promise containing the tool execution results
|
|
106
|
+
*/
|
|
107
|
+
executeTool(toolId: string, params: {
|
|
108
|
+
data: any;
|
|
109
|
+
runtimeContext?: RuntimeContext;
|
|
110
|
+
}): Promise<any>;
|
|
111
|
+
/**
|
|
112
|
+
* Retrieves evaluation results for the agent
|
|
113
|
+
* @returns Promise containing agent evaluations
|
|
114
|
+
*/
|
|
115
|
+
evals(): Promise<GetEvalsByAgentIdResponse>;
|
|
116
|
+
/**
|
|
117
|
+
* Retrieves live evaluation results for the agent
|
|
118
|
+
* @returns Promise containing live agent evaluations
|
|
119
|
+
*/
|
|
120
|
+
liveEvals(): Promise<GetEvalsByAgentIdResponse>;
|
|
121
|
+
/**
|
|
122
|
+
* Updates the model for the agent
|
|
123
|
+
* @param params - Parameters for updating the model
|
|
124
|
+
* @returns Promise containing the updated model
|
|
125
|
+
*/
|
|
126
|
+
updateModel(params: UpdateModelParams): Promise<{
|
|
127
|
+
message: string;
|
|
128
|
+
}>;
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=agent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/resources/agent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { RequestOptions, ClientOptions } from '../types.js';
|
|
2
|
+
export declare class BaseResource {
|
|
3
|
+
readonly options: ClientOptions;
|
|
4
|
+
constructor(options: ClientOptions);
|
|
5
|
+
/**
|
|
6
|
+
* Makes an HTTP request to the API with retries and exponential backoff
|
|
7
|
+
* @param path - The API endpoint path
|
|
8
|
+
* @param options - Optional request configuration
|
|
9
|
+
* @returns Promise containing the response data
|
|
10
|
+
*/
|
|
11
|
+
request<T>(path: string, options?: RequestOptions): Promise<T>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../src/resources/base.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE9D,qBAAa,YAAY;IACvB,QAAQ,CAAC,OAAO,EAAE,aAAa,CAAC;gBAEpB,OAAO,EAAE,aAAa;IAIlC;;;;;OAKG;IACU,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,OAAO,CAAC,CAAC,CAAC;CA6DhF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './agent.js';
|
|
2
|
+
export * from './network.js';
|
|
3
|
+
export * from './memory-thread.js';
|
|
4
|
+
export * from './vector.js';
|
|
5
|
+
export * from './legacy-workflow.js';
|
|
6
|
+
export * from './tool.js';
|
|
7
|
+
export * from './base.js';
|
|
8
|
+
export * from './workflow.js';
|
|
9
|
+
export * from './a2a.js';
|
|
10
|
+
export * from './mcp-tool.js';
|
|
11
|
+
export * from './observability.js';
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { ClientOptions, LegacyWorkflowRunResult, GetLegacyWorkflowRunsResponse, GetWorkflowRunsParams, GetLegacyWorkflowResponse } from '../types.js';
|
|
2
|
+
import { BaseResource } from './base.js';
|
|
3
|
+
export declare class LegacyWorkflow extends BaseResource {
|
|
4
|
+
private workflowId;
|
|
5
|
+
constructor(options: ClientOptions, workflowId: string);
|
|
6
|
+
/**
|
|
7
|
+
* Retrieves details about the legacy workflow
|
|
8
|
+
* @returns Promise containing legacy workflow details including steps and graphs
|
|
9
|
+
*/
|
|
10
|
+
details(): Promise<GetLegacyWorkflowResponse>;
|
|
11
|
+
/**
|
|
12
|
+
* Retrieves all runs for a legacy workflow
|
|
13
|
+
* @param params - Parameters for filtering runs
|
|
14
|
+
* @returns Promise containing legacy workflow runs array
|
|
15
|
+
*/
|
|
16
|
+
runs(params?: GetWorkflowRunsParams): Promise<GetLegacyWorkflowRunsResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Creates a new legacy workflow run
|
|
19
|
+
* @returns Promise containing the generated run ID
|
|
20
|
+
*/
|
|
21
|
+
createRun(params?: {
|
|
22
|
+
runId?: string;
|
|
23
|
+
}): Promise<{
|
|
24
|
+
runId: string;
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Starts a legacy workflow run synchronously without waiting for the workflow to complete
|
|
28
|
+
* @param params - Object containing the runId and triggerData
|
|
29
|
+
* @returns Promise containing success message
|
|
30
|
+
*/
|
|
31
|
+
start(params: {
|
|
32
|
+
runId: string;
|
|
33
|
+
triggerData: Record<string, any>;
|
|
34
|
+
}): Promise<{
|
|
35
|
+
message: string;
|
|
36
|
+
}>;
|
|
37
|
+
/**
|
|
38
|
+
* Resumes a suspended legacy workflow step synchronously without waiting for the workflow to complete
|
|
39
|
+
* @param stepId - ID of the step to resume
|
|
40
|
+
* @param runId - ID of the legacy workflow run
|
|
41
|
+
* @param context - Context to resume the legacy workflow with
|
|
42
|
+
* @returns Promise containing the legacy workflow resume results
|
|
43
|
+
*/
|
|
44
|
+
resume({ stepId, runId, context, }: {
|
|
45
|
+
stepId: string;
|
|
46
|
+
runId: string;
|
|
47
|
+
context: Record<string, any>;
|
|
48
|
+
}): Promise<{
|
|
49
|
+
message: string;
|
|
50
|
+
}>;
|
|
51
|
+
/**
|
|
52
|
+
* Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
|
|
53
|
+
* @param params - Object containing the optional runId and triggerData
|
|
54
|
+
* @returns Promise containing the workflow execution results
|
|
55
|
+
*/
|
|
56
|
+
startAsync(params: {
|
|
57
|
+
runId?: string;
|
|
58
|
+
triggerData: Record<string, any>;
|
|
59
|
+
}): Promise<LegacyWorkflowRunResult>;
|
|
60
|
+
/**
|
|
61
|
+
* Resumes a suspended legacy workflow step asynchronously and returns a promise that resolves when the workflow is complete
|
|
62
|
+
* @param params - Object containing the runId, stepId, and context
|
|
63
|
+
* @returns Promise containing the workflow resume results
|
|
64
|
+
*/
|
|
65
|
+
resumeAsync(params: {
|
|
66
|
+
runId: string;
|
|
67
|
+
stepId: string;
|
|
68
|
+
context: Record<string, any>;
|
|
69
|
+
}): Promise<LegacyWorkflowRunResult>;
|
|
70
|
+
/**
|
|
71
|
+
* Creates an async generator that processes a readable stream and yields records
|
|
72
|
+
* separated by the Record Separator character (\x1E)
|
|
73
|
+
*
|
|
74
|
+
* @param stream - The readable stream to process
|
|
75
|
+
* @returns An async generator that yields parsed records
|
|
76
|
+
*/
|
|
77
|
+
private streamProcessor;
|
|
78
|
+
/**
|
|
79
|
+
* Watches legacy workflow transitions in real-time
|
|
80
|
+
* @param runId - Optional run ID to filter the watch stream
|
|
81
|
+
* @returns AsyncGenerator that yields parsed records from the legacy workflow watch stream
|
|
82
|
+
*/
|
|
83
|
+
watch({ runId }: {
|
|
84
|
+
runId?: string;
|
|
85
|
+
}, onRecord: (record: LegacyWorkflowRunResult) => void): Promise<void>;
|
|
86
|
+
}
|
|
87
|
+
//# sourceMappingURL=legacy-workflow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"legacy-workflow.d.ts","sourceRoot":"","sources":["../../src/resources/legacy-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,uBAAuB,EACvB,6BAA6B,EAC7B,qBAAqB,EACrB,yBAAyB,EAC1B,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAItC,qBAAa,cAAe,SAAQ,YAAY;IAG5C,OAAO,CAAC,UAAU;gBADlB,OAAO,EAAE,aAAa,EACd,UAAU,EAAE,MAAM;IAK5B;;;OAGG;IACH,OAAO,IAAI,OAAO,CAAC,yBAAyB,CAAC;IAI7C;;;;OAIG;IACH,IAAI,CAAC,MAAM,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,6BAA6B,CAAC;IAyB5E;;;OAGG;IACH,SAAS,CAAC,MAAM,CAAC,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAYlE;;;;OAIG;IACH,KAAK,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAOhG;;;;;;OAMG;IACH,MAAM,CAAC,EACL,MAAM,EACN,KAAK,EACL,OAAO,GACR,EAAE;QACD,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC9B,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAUhC;;;;OAIG;IACH,UAAU,CAAC,MAAM,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAa1G;;;;OAIG;IACH,WAAW,CAAC,MAAM,EAAE;QAClB,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAC9B,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAUpC;;;;;;OAMG;YACY,eAAe;IAgE9B;;;;OAIG;IACG,KAAK,CAAC,EAAE,KAAK,EAAE,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,uBAAuB,KAAK,IAAI;CAiB/F"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { RuntimeContext } from '@mastra/core/runtime-context';
|
|
2
|
+
import type { ClientOptions, McpToolInfo } from '../types.js';
|
|
3
|
+
import { BaseResource } from './base.js';
|
|
4
|
+
/**
|
|
5
|
+
* Represents a specific tool available on a specific MCP server.
|
|
6
|
+
* Provides methods to get details and execute the tool.
|
|
7
|
+
*/
|
|
8
|
+
export declare class MCPTool extends BaseResource {
|
|
9
|
+
private serverId;
|
|
10
|
+
private toolId;
|
|
11
|
+
constructor(options: ClientOptions, serverId: string, toolId: string);
|
|
12
|
+
/**
|
|
13
|
+
* Retrieves details about this specific tool from the MCP server.
|
|
14
|
+
* @returns Promise containing the tool's information (name, description, schema).
|
|
15
|
+
*/
|
|
16
|
+
details(): Promise<McpToolInfo>;
|
|
17
|
+
/**
|
|
18
|
+
* Executes this specific tool on the MCP server.
|
|
19
|
+
* @param params - Parameters for tool execution, including data/args and optional runtimeContext.
|
|
20
|
+
* @returns Promise containing the result of the tool execution.
|
|
21
|
+
*/
|
|
22
|
+
execute(params: {
|
|
23
|
+
data?: any;
|
|
24
|
+
runtimeContext?: RuntimeContext;
|
|
25
|
+
}): Promise<any>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=mcp-tool.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mcp-tool.d.ts","sourceRoot":"","sources":["../../src/resources/mcp-tool.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC;;;GAGG;AACH,qBAAa,OAAQ,SAAQ,YAAY;IACvC,OAAO,CAAC,QAAQ,CAAS;IACzB,OAAO,CAAC,MAAM,CAAS;gBAEX,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM;IAMpE;;;OAGG;IACH,OAAO,IAAI,OAAO,CAAC,WAAW,CAAC;IAI/B;;;;OAIG;IACH,OAAO,CAAC,MAAM,EAAE;QAAE,IAAI,CAAC,EAAE,GAAG,CAAC;QAAC,cAAc,CAAC,EAAE,cAAc,CAAA;KAAE,GAAG,OAAO,CAAC,GAAG,CAAC;CAgB/E"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { StorageThreadType } from '@mastra/core/memory';
|
|
2
|
+
import type { GetMemoryThreadMessagesResponse, ClientOptions, UpdateMemoryThreadParams, GetMemoryThreadMessagesParams, GetMemoryThreadMessagesPaginatedParams, GetMemoryThreadMessagesPaginatedResponse } from '../types.js';
|
|
3
|
+
import { BaseResource } from './base.js';
|
|
4
|
+
export declare class MemoryThread extends BaseResource {
|
|
5
|
+
private threadId;
|
|
6
|
+
private agentId;
|
|
7
|
+
constructor(options: ClientOptions, threadId: string, agentId: string);
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the memory thread details
|
|
10
|
+
* @returns Promise containing thread details including title and metadata
|
|
11
|
+
*/
|
|
12
|
+
get(): Promise<StorageThreadType>;
|
|
13
|
+
/**
|
|
14
|
+
* Updates the memory thread properties
|
|
15
|
+
* @param params - Update parameters including title and metadata
|
|
16
|
+
* @returns Promise containing updated thread details
|
|
17
|
+
*/
|
|
18
|
+
update(params: UpdateMemoryThreadParams): Promise<StorageThreadType>;
|
|
19
|
+
/**
|
|
20
|
+
* Deletes the memory thread
|
|
21
|
+
* @returns Promise containing deletion result
|
|
22
|
+
*/
|
|
23
|
+
delete(): Promise<{
|
|
24
|
+
result: string;
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Retrieves messages associated with the thread
|
|
28
|
+
* @param params - Optional parameters including limit for number of messages to retrieve
|
|
29
|
+
* @returns Promise containing thread messages and UI messages
|
|
30
|
+
*/
|
|
31
|
+
getMessages(params?: GetMemoryThreadMessagesParams): Promise<GetMemoryThreadMessagesResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Retrieves paginated messages associated with the thread with advanced filtering and selection options
|
|
34
|
+
* @param params - Pagination parameters including selectBy criteria, page, perPage, date ranges, and message inclusion options
|
|
35
|
+
* @returns Promise containing paginated thread messages with pagination metadata (total, page, perPage, hasMore)
|
|
36
|
+
*/
|
|
37
|
+
getMessagesPaginated({ selectBy, ...rest }: GetMemoryThreadMessagesPaginatedParams): Promise<GetMemoryThreadMessagesPaginatedResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* Deletes one or more messages from the thread
|
|
40
|
+
* @param messageIds - Can be a single message ID (string), array of message IDs,
|
|
41
|
+
* message object with id property, or array of message objects
|
|
42
|
+
* @returns Promise containing deletion result
|
|
43
|
+
*/
|
|
44
|
+
deleteMessages(messageIds: string | string[] | {
|
|
45
|
+
id: string;
|
|
46
|
+
} | {
|
|
47
|
+
id: string;
|
|
48
|
+
}[]): Promise<{
|
|
49
|
+
success: boolean;
|
|
50
|
+
message: string;
|
|
51
|
+
}>;
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=memory-thread.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"memory-thread.d.ts","sourceRoot":"","sources":["../../src/resources/memory-thread.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,OAAO,KAAK,EACV,+BAA+B,EAC/B,aAAa,EACb,wBAAwB,EACxB,6BAA6B,EAC7B,sCAAsC,EACtC,wCAAwC,EACzC,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,YAAa,SAAQ,YAAY;IAG1C,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;gBAFf,OAAO,EAAE,aAAa,EACd,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM;IAKzB;;;OAGG;IACH,GAAG,IAAI,OAAO,CAAC,iBAAiB,CAAC;IAIjC;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAOpE;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAMrC;;;;OAIG;IACH,WAAW,CAAC,MAAM,CAAC,EAAE,6BAA6B,GAAG,OAAO,CAAC,+BAA+B,CAAC;IAQ7F;;;;OAIG;IACH,oBAAoB,CAAC,EACnB,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,sCAAsC,GAAG,OAAO,CAAC,wCAAwC,CAAC;IAQ7F;;;;;OAKG;IACH,cAAc,CACZ,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,EAAE,GAChE,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;CASlD"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { StorageThreadType } from '@mastra/core/memory';
|
|
2
|
+
import type { GetMemoryThreadMessagesResponse, ClientOptions, UpdateMemoryThreadParams, GetMemoryThreadMessagesParams } from '../types.js';
|
|
3
|
+
import { BaseResource } from './base.js';
|
|
4
|
+
export declare class NetworkMemoryThread extends BaseResource {
|
|
5
|
+
private threadId;
|
|
6
|
+
private networkId;
|
|
7
|
+
constructor(options: ClientOptions, threadId: string, networkId: string);
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the memory thread details
|
|
10
|
+
* @returns Promise containing thread details including title and metadata
|
|
11
|
+
*/
|
|
12
|
+
get(): Promise<StorageThreadType>;
|
|
13
|
+
/**
|
|
14
|
+
* Updates the memory thread properties
|
|
15
|
+
* @param params - Update parameters including title and metadata
|
|
16
|
+
* @returns Promise containing updated thread details
|
|
17
|
+
*/
|
|
18
|
+
update(params: UpdateMemoryThreadParams): Promise<StorageThreadType>;
|
|
19
|
+
/**
|
|
20
|
+
* Deletes the memory thread
|
|
21
|
+
* @returns Promise containing deletion result
|
|
22
|
+
*/
|
|
23
|
+
delete(): Promise<{
|
|
24
|
+
result: string;
|
|
25
|
+
}>;
|
|
26
|
+
/**
|
|
27
|
+
* Retrieves messages associated with the thread
|
|
28
|
+
* @param params - Optional parameters including limit for number of messages to retrieve
|
|
29
|
+
* @returns Promise containing thread messages and UI messages
|
|
30
|
+
*/
|
|
31
|
+
getMessages(params?: GetMemoryThreadMessagesParams): Promise<GetMemoryThreadMessagesResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Deletes one or more messages from the thread
|
|
34
|
+
* @param messageIds - Can be a single message ID (string), array of message IDs,
|
|
35
|
+
* message object with id property, or array of message objects
|
|
36
|
+
* @returns Promise containing deletion result
|
|
37
|
+
*/
|
|
38
|
+
deleteMessages(messageIds: string | string[] | {
|
|
39
|
+
id: string;
|
|
40
|
+
} | {
|
|
41
|
+
id: string;
|
|
42
|
+
}[]): Promise<{
|
|
43
|
+
success: boolean;
|
|
44
|
+
message: string;
|
|
45
|
+
}>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=network-memory-thread.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"network-memory-thread.d.ts","sourceRoot":"","sources":["../../src/resources/network-memory-thread.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,OAAO,KAAK,EACV,+BAA+B,EAC/B,aAAa,EACb,wBAAwB,EACxB,6BAA6B,EAC9B,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,mBAAoB,SAAQ,YAAY;IAGjD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,SAAS;gBAFjB,OAAO,EAAE,aAAa,EACd,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM;IAK3B;;;OAGG;IACH,GAAG,IAAI,OAAO,CAAC,iBAAiB,CAAC;IAIjC;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAOpE;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAMrC;;;;OAIG;IACH,WAAW,CAAC,MAAM,CAAC,EAAE,6BAA6B,GAAG,OAAO,CAAC,+BAA+B,CAAC;IAQ7F;;;;;OAKG;IACH,cAAc,CACZ,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,EAAE,GAChE,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;CASlD"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { processDataStream } from '@ai-sdk/ui-utils';
|
|
2
|
+
import type { GenerateReturn } from '@mastra/core/llm';
|
|
3
|
+
import type { JSONSchema7 } from 'json-schema';
|
|
4
|
+
import type { ZodSchema } from 'zod';
|
|
5
|
+
import type { GenerateParams, ClientOptions, StreamParams, GetNetworkResponse } from '../types.js';
|
|
6
|
+
import { BaseResource } from './base.js';
|
|
7
|
+
export declare class Network extends BaseResource {
|
|
8
|
+
private networkId;
|
|
9
|
+
constructor(options: ClientOptions, networkId: string);
|
|
10
|
+
/**
|
|
11
|
+
* Retrieves details about the network
|
|
12
|
+
* @returns Promise containing network details
|
|
13
|
+
*/
|
|
14
|
+
details(): Promise<GetNetworkResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Generates a response from the agent
|
|
17
|
+
* @param params - Generation parameters including prompt
|
|
18
|
+
* @returns Promise containing the generated response
|
|
19
|
+
*/
|
|
20
|
+
generate<Output extends JSONSchema7 | ZodSchema | undefined = undefined, StructuredOutput extends JSONSchema7 | ZodSchema | undefined = undefined>(params: GenerateParams<Output>): Promise<GenerateReturn<any, Output, StructuredOutput>>;
|
|
21
|
+
/**
|
|
22
|
+
* Streams a response from the agent
|
|
23
|
+
* @param params - Stream parameters including prompt
|
|
24
|
+
* @returns Promise containing the enhanced Response object with processDataStream method
|
|
25
|
+
*/
|
|
26
|
+
stream<T extends JSONSchema7 | ZodSchema | undefined = undefined>(params: StreamParams<T>): Promise<Response & {
|
|
27
|
+
processDataStream: (options?: Omit<Parameters<typeof processDataStream>[0], 'stream'>) => Promise<void>;
|
|
28
|
+
}>;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=network.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"network.d.ts","sourceRoot":"","sources":["../../src/resources/network.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AACrC,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAGhG,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,OAAQ,SAAQ,YAAY;IAGrC,OAAO,CAAC,SAAS;gBADjB,OAAO,EAAE,aAAa,EACd,SAAS,EAAE,MAAM;IAK3B;;;OAGG;IACH,OAAO,IAAI,OAAO,CAAC,kBAAkB,CAAC;IAItC;;;;OAIG;IACH,QAAQ,CACN,MAAM,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EAC9D,gBAAgB,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EACxE,MAAM,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAazF;;;;OAIG;IACG,MAAM,CAAC,CAAC,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EACpE,MAAM,EAAE,YAAY,CAAC,CAAC,CAAC,GACtB,OAAO,CACR,QAAQ,GAAG;QACT,iBAAiB,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;KACzG,CACF;CA4BF"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AITraceRecord, AITracesPaginatedArg } from '@mastra/core/storage';
|
|
2
|
+
import type { ClientOptions, GetAITracesResponse } from '../types.js';
|
|
3
|
+
import { BaseResource } from './base.js';
|
|
4
|
+
export declare class Observability extends BaseResource {
|
|
5
|
+
constructor(options: ClientOptions);
|
|
6
|
+
/**
|
|
7
|
+
* Retrieves a specific AI trace by ID
|
|
8
|
+
* @param traceId - ID of the trace to retrieve
|
|
9
|
+
* @returns Promise containing the AI trace with all its spans
|
|
10
|
+
*/
|
|
11
|
+
getTrace(traceId: string): Promise<AITraceRecord>;
|
|
12
|
+
/**
|
|
13
|
+
* Retrieves paginated list of AI traces with optional filtering
|
|
14
|
+
* @param params - Parameters for pagination and filtering
|
|
15
|
+
* @returns Promise containing paginated traces and pagination info
|
|
16
|
+
*/
|
|
17
|
+
getTraces(params: AITracesPaginatedArg): Promise<GetAITracesResponse>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=observability.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"observability.d.ts","sourceRoot":"","sources":["../../src/resources/observability.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAChF,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,aAAc,SAAQ,YAAY;gBACjC,OAAO,EAAE,aAAa;IAIlC;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC;IAIjD;;;;OAIG;IACH,SAAS,CAAC,MAAM,EAAE,oBAAoB,GAAG,OAAO,CAAC,mBAAmB,CAAC;CA6BtE"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { RuntimeContext } from '@mastra/core/runtime-context';
|
|
2
|
+
import type { GetToolResponse, ClientOptions } from '../types.js';
|
|
3
|
+
import { BaseResource } from './base.js';
|
|
4
|
+
export declare class Tool extends BaseResource {
|
|
5
|
+
private toolId;
|
|
6
|
+
constructor(options: ClientOptions, toolId: string);
|
|
7
|
+
/**
|
|
8
|
+
* Retrieves details about the tool
|
|
9
|
+
* @returns Promise containing tool details including description and schemas
|
|
10
|
+
*/
|
|
11
|
+
details(): Promise<GetToolResponse>;
|
|
12
|
+
/**
|
|
13
|
+
* Executes the tool with the provided parameters
|
|
14
|
+
* @param params - Parameters required for tool execution
|
|
15
|
+
* @returns Promise containing the tool execution results
|
|
16
|
+
*/
|
|
17
|
+
execute(params: {
|
|
18
|
+
data: any;
|
|
19
|
+
runId?: string;
|
|
20
|
+
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
21
|
+
}): Promise<any>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=tool.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/resources/tool.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAG/D,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,IAAK,SAAQ,YAAY;IAGlC,OAAO,CAAC,MAAM;gBADd,OAAO,EAAE,aAAa,EACd,MAAM,EAAE,MAAM;IAKxB;;;OAGG;IACH,OAAO,IAAI,OAAO,CAAC,eAAe,CAAC;IAInC;;;;OAIG;IACH,OAAO,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,GAAG,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,GAAG,CAAC;CAiBpH"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { RuntimeContext } from '@mastra/core/runtime-context';
|
|
2
|
+
import type { WatchEvent } from '@mastra/core/workflows';
|
|
3
|
+
import type { ClientOptions, GetVNextNetworkResponse, GenerateVNextNetworkResponse, LoopVNextNetworkResponse, GenerateOrStreamVNextNetworkParams, LoopStreamVNextNetworkParams } from '../types.js';
|
|
4
|
+
import { BaseResource } from './base.js';
|
|
5
|
+
export declare class VNextNetwork extends BaseResource {
|
|
6
|
+
private networkId;
|
|
7
|
+
constructor(options: ClientOptions, networkId: string);
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves details about the network
|
|
10
|
+
* @returns Promise containing vNext network details
|
|
11
|
+
*/
|
|
12
|
+
details(): Promise<GetVNextNetworkResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* Generates a response from the v-next network
|
|
15
|
+
* @param params - Generation parameters including message
|
|
16
|
+
* @returns Promise containing the generated response
|
|
17
|
+
*/
|
|
18
|
+
generate(params: GenerateOrStreamVNextNetworkParams): Promise<GenerateVNextNetworkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Generates a response from the v-next network using multiple primitives
|
|
21
|
+
* @param params - Generation parameters including message
|
|
22
|
+
* @returns Promise containing the generated response
|
|
23
|
+
*/
|
|
24
|
+
loop(params: {
|
|
25
|
+
message: string;
|
|
26
|
+
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
27
|
+
}): Promise<LoopVNextNetworkResponse>;
|
|
28
|
+
private streamProcessor;
|
|
29
|
+
/**
|
|
30
|
+
* Streams a response from the v-next network
|
|
31
|
+
* @param params - Stream parameters including message
|
|
32
|
+
* @returns Promise containing the results
|
|
33
|
+
*/
|
|
34
|
+
stream(params: GenerateOrStreamVNextNetworkParams, onRecord: (record: WatchEvent) => void): Promise<void>;
|
|
35
|
+
/**
|
|
36
|
+
* Streams a response from the v-next network loop
|
|
37
|
+
* @param params - Stream parameters including message
|
|
38
|
+
* @returns Promise containing the results
|
|
39
|
+
*/
|
|
40
|
+
loopStream(params: LoopStreamVNextNetworkParams, onRecord: (record: WatchEvent) => void): Promise<void>;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=vNextNetwork.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vNextNetwork.d.ts","sourceRoot":"","sources":["../../src/resources/vNextNetwork.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAEzD,OAAO,KAAK,EACV,aAAa,EACb,uBAAuB,EACvB,4BAA4B,EAC5B,wBAAwB,EACxB,kCAAkC,EAClC,4BAA4B,EAC7B,MAAM,UAAU,CAAC;AAGlB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAItC,qBAAa,YAAa,SAAQ,YAAY;IAG1C,OAAO,CAAC,SAAS;gBADjB,OAAO,EAAE,aAAa,EACd,SAAS,EAAE,MAAM;IAK3B;;;OAGG;IACH,OAAO,IAAI,OAAO,CAAC,uBAAuB,CAAC;IAI3C;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,kCAAkC,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAU3F;;;;OAIG;IACH,IAAI,CAAC,MAAM,EAAE;QACX,OAAO,EAAE,MAAM,CAAC;QAChB,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KACvD,GAAG,OAAO,CAAC,wBAAwB,CAAC;YAUtB,eAAe;IAgE9B;;;;OAIG;IACG,MAAM,CAAC,MAAM,EAAE,kCAAkC,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI;IA2B/F;;;;OAIG;IACG,UAAU,CAAC,MAAM,EAAE,4BAA4B,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI;CA0B9F"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { CreateIndexParams, GetVectorIndexResponse, QueryVectorParams, QueryVectorResponse, ClientOptions, UpsertVectorParams } from '../types.js';
|
|
2
|
+
import { BaseResource } from './base.js';
|
|
3
|
+
export declare class Vector extends BaseResource {
|
|
4
|
+
private vectorName;
|
|
5
|
+
constructor(options: ClientOptions, vectorName: string);
|
|
6
|
+
/**
|
|
7
|
+
* Retrieves details about a specific vector index
|
|
8
|
+
* @param indexName - Name of the index to get details for
|
|
9
|
+
* @returns Promise containing vector index details
|
|
10
|
+
*/
|
|
11
|
+
details(indexName: string): Promise<GetVectorIndexResponse>;
|
|
12
|
+
/**
|
|
13
|
+
* Deletes a vector index
|
|
14
|
+
* @param indexName - Name of the index to delete
|
|
15
|
+
* @returns Promise indicating deletion success
|
|
16
|
+
*/
|
|
17
|
+
delete(indexName: string): Promise<{
|
|
18
|
+
success: boolean;
|
|
19
|
+
}>;
|
|
20
|
+
/**
|
|
21
|
+
* Retrieves a list of all available indexes
|
|
22
|
+
* @returns Promise containing array of index names
|
|
23
|
+
*/
|
|
24
|
+
getIndexes(): Promise<{
|
|
25
|
+
indexes: string[];
|
|
26
|
+
}>;
|
|
27
|
+
/**
|
|
28
|
+
* Creates a new vector index
|
|
29
|
+
* @param params - Parameters for index creation including dimension and metric
|
|
30
|
+
* @returns Promise indicating creation success
|
|
31
|
+
*/
|
|
32
|
+
createIndex(params: CreateIndexParams): Promise<{
|
|
33
|
+
success: boolean;
|
|
34
|
+
}>;
|
|
35
|
+
/**
|
|
36
|
+
* Upserts vectors into an index
|
|
37
|
+
* @param params - Parameters containing vectors, metadata, and optional IDs
|
|
38
|
+
* @returns Promise containing array of vector IDs
|
|
39
|
+
*/
|
|
40
|
+
upsert(params: UpsertVectorParams): Promise<string[]>;
|
|
41
|
+
/**
|
|
42
|
+
* Queries vectors in an index
|
|
43
|
+
* @param params - Query parameters including query vector and search options
|
|
44
|
+
* @returns Promise containing query results
|
|
45
|
+
*/
|
|
46
|
+
query(params: QueryVectorParams): Promise<QueryVectorResponse>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=vector.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vector.d.ts","sourceRoot":"","sources":["../../src/resources/vector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,aAAa,EACb,kBAAkB,EACnB,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,MAAO,SAAQ,YAAY;IAGpC,OAAO,CAAC,UAAU;gBADlB,OAAO,EAAE,aAAa,EACd,UAAU,EAAE,MAAM;IAK5B;;;;OAIG;IACH,OAAO,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAI3D;;;;OAIG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAMxD;;;OAGG;IACH,UAAU,IAAI,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IAI5C;;;;OAIG;IACH,WAAW,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAOrE;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAOrD;;;;OAIG;IACH,KAAK,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,mBAAmB,CAAC;CAM/D"}
|