mthds 0.9.0 → 0.11.0
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/README.md +43 -21
- package/dist/agent/binaries.js +2 -2
- package/dist/agent/commands/api-commands.d.ts +8 -0
- package/dist/agent/commands/api-commands.js +310 -93
- package/dist/agent/commands/api-commands.js.map +1 -1
- package/dist/agent/commands/codex-hook.d.ts +20 -0
- package/dist/agent/commands/codex-hook.js +25 -9
- package/dist/agent/commands/codex-hook.js.map +1 -1
- package/dist/agent/commands/config.js +2 -2
- package/dist/agent/commands/config.js.map +1 -1
- package/dist/agent/output.d.ts +4 -0
- package/dist/agent/output.js +7 -0
- package/dist/agent/output.js.map +1 -1
- package/dist/agent/plugin-version.d.ts +1 -1
- package/dist/agent/plugin-version.js +1 -1
- package/dist/agent-cli.js +5 -5
- package/dist/agent-cli.js.map +1 -1
- package/dist/cli/commands/config.js +2 -2
- package/dist/cli/commands/config.js.map +1 -1
- package/dist/cli/commands/install.js +29 -37
- package/dist/cli/commands/install.js.map +1 -1
- package/dist/cli/commands/run.js +82 -69
- package/dist/cli/commands/run.js.map +1 -1
- package/dist/cli/commands/setup.js +22 -23
- package/dist/cli/commands/setup.js.map +1 -1
- package/dist/cli/commands/utils.d.ts +9 -1
- package/dist/cli/commands/utils.js +9 -0
- package/dist/cli/commands/utils.js.map +1 -1
- package/dist/cli/commands/validate.js +29 -13
- package/dist/cli/commands/validate.js.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/config/config.d.ts +14 -1
- package/dist/config/config.js +31 -6
- package/dist/config/config.js.map +1 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +22 -1
- package/dist/index.js.map +1 -1
- package/dist/protocol/concept.d.ts +14 -0
- package/dist/protocol/concept.js +10 -0
- package/dist/protocol/concept.js.map +1 -0
- package/dist/protocol/exceptions.d.ts +10 -0
- package/dist/protocol/exceptions.js +12 -0
- package/dist/protocol/exceptions.js.map +1 -0
- package/dist/protocol/models.d.ts +150 -0
- package/dist/protocol/models.js +24 -0
- package/dist/protocol/models.js.map +1 -0
- package/dist/protocol/options.d.ts +60 -0
- package/dist/protocol/options.js +11 -0
- package/dist/protocol/options.js.map +1 -0
- package/dist/protocol/pipe_output.d.ts +11 -0
- package/dist/protocol/pipe_output.js +7 -0
- package/dist/protocol/pipe_output.js.map +1 -0
- package/dist/protocol/pipeline_inputs.d.ts +8 -0
- package/dist/protocol/pipeline_inputs.js +7 -0
- package/dist/protocol/pipeline_inputs.js.map +1 -0
- package/dist/protocol/protocol.d.ts +55 -0
- package/dist/{client → protocol}/protocol.js.map +1 -1
- package/dist/protocol/stuff.d.ts +16 -0
- package/dist/protocol/stuff.js +8 -0
- package/dist/{client/models → protocol}/stuff.js.map +1 -1
- package/dist/protocol/working_memory.d.ts +10 -0
- package/dist/protocol/working_memory.js +7 -0
- package/dist/protocol/working_memory.js.map +1 -0
- package/dist/runners/api/client.d.ts +181 -0
- package/dist/runners/api/client.js +679 -0
- package/dist/runners/api/client.js.map +1 -0
- package/dist/runners/api/exceptions.d.ts +121 -0
- package/dist/runners/api/exceptions.js +156 -0
- package/dist/runners/api/exceptions.js.map +1 -0
- package/dist/runners/api/models.d.ts +131 -0
- package/dist/runners/api/models.js +13 -0
- package/dist/runners/api/models.js.map +1 -0
- package/dist/runners/api/runs.d.ts +130 -0
- package/dist/runners/api/runs.js +93 -0
- package/dist/runners/api/runs.js.map +1 -0
- package/dist/runners/base-runner.d.ts +27 -0
- package/dist/runners/base-runner.js +25 -0
- package/dist/runners/base-runner.js.map +1 -0
- package/dist/runners/pipelex/runner.d.ts +38 -0
- package/dist/runners/{pipelex-runner.js → pipelex/runner.js} +171 -83
- package/dist/runners/pipelex/runner.js.map +1 -0
- package/dist/runners/registry.js +10 -4
- package/dist/runners/registry.js.map +1 -1
- package/dist/runners/types.d.ts +13 -71
- package/dist/runners/types.js.map +1 -1
- package/package.json +6 -3
- package/dist/agent/commands/validate.d.ts +0 -18
- package/dist/agent/commands/validate.js +0 -126
- package/dist/agent/commands/validate.js.map +0 -1
- package/dist/client/client.d.ts +0 -15
- package/dist/client/client.js +0 -127
- package/dist/client/client.js.map +0 -1
- package/dist/client/exceptions.d.ts +0 -46
- package/dist/client/exceptions.js +0 -61
- package/dist/client/exceptions.js.map +0 -1
- package/dist/client/index.d.ts +0 -5
- package/dist/client/index.js +0 -3
- package/dist/client/index.js.map +0 -1
- package/dist/client/models/index.d.ts +0 -4
- package/dist/client/models/index.js +0 -2
- package/dist/client/models/index.js.map +0 -1
- package/dist/client/models/pipe_output.d.ts +0 -2
- package/dist/client/models/pipe_output.js +0 -2
- package/dist/client/models/pipe_output.js.map +0 -1
- package/dist/client/models/pipeline_inputs.d.ts +0 -3
- package/dist/client/models/pipeline_inputs.js +0 -2
- package/dist/client/models/pipeline_inputs.js.map +0 -1
- package/dist/client/models/stuff.d.ts +0 -1
- package/dist/client/models/stuff.js +0 -2
- package/dist/client/models/working_memory.d.ts +0 -1
- package/dist/client/models/working_memory.js +0 -2
- package/dist/client/models/working_memory.js.map +0 -1
- package/dist/client/pipeline.d.ts +0 -36
- package/dist/client/pipeline.js +0 -2
- package/dist/client/pipeline.js.map +0 -1
- package/dist/client/protocol.d.ts +0 -5
- package/dist/runners/api-runner.d.ts +0 -24
- package/dist/runners/api-runner.js +0 -91
- package/dist/runners/api-runner.js.map +0 -1
- package/dist/runners/pipelex-runner.d.ts +0 -30
- package/dist/runners/pipelex-runner.js.map +0 -1
- /package/dist/{client → protocol}/protocol.js +0 -0
package/dist/runners/types.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MTHDSProtocol } from "../protocol/protocol.js";
|
|
2
|
+
import type { StartOptions } from "../protocol/options.js";
|
|
3
|
+
import type { RunRead, RunResultState, RunResults, WaitForResultOptions } from "./api/runs.js";
|
|
4
|
+
import type { DictPipeOutput } from "./api/models.js";
|
|
2
5
|
export declare const Runners: {
|
|
3
6
|
readonly API: "api";
|
|
4
7
|
readonly PIPELEX: "pipelex";
|
|
5
8
|
};
|
|
6
9
|
export type RunnerType = (typeof Runners)[keyof typeof Runners];
|
|
7
10
|
export declare const RUNNER_NAMES: RunnerType[];
|
|
8
|
-
export type PipelineState = "RUNNING" | "COMPLETED" | "FAILED" | "CANCELLED" | "ERROR" | "STARTED";
|
|
9
11
|
export type ConceptRepresentationFormat = "json" | "python" | "schema";
|
|
10
12
|
export interface BuildInputsRequest {
|
|
11
13
|
mthds_contents: string[];
|
|
@@ -20,20 +22,6 @@ export interface BuildRunnerRequest {
|
|
|
20
22
|
mthds_contents: string[];
|
|
21
23
|
pipe_code: string;
|
|
22
24
|
}
|
|
23
|
-
export interface ExecuteRequest {
|
|
24
|
-
/** MTHDS bundle content(s) to validate, load, and execute. Omit to run an already-loaded pipe. */
|
|
25
|
-
mthds_contents?: string[];
|
|
26
|
-
pipe_code?: string;
|
|
27
|
-
inputs?: Record<string, unknown>;
|
|
28
|
-
}
|
|
29
|
-
export interface ValidateRequest {
|
|
30
|
-
/** GitHub URL or local path to the method directory (preferred). */
|
|
31
|
-
method_url?: string;
|
|
32
|
-
/** Pipe code to validate (optional — validates a specific pipe). */
|
|
33
|
-
pipe_code?: string;
|
|
34
|
-
/** Raw .mthds file content(s). */
|
|
35
|
-
mthds_contents?: string[];
|
|
36
|
-
}
|
|
37
25
|
export interface ConceptRequest {
|
|
38
26
|
spec: Record<string, unknown>;
|
|
39
27
|
}
|
|
@@ -41,6 +29,7 @@ export interface PipeSpecRequest {
|
|
|
41
29
|
pipe_type: string;
|
|
42
30
|
spec: Record<string, unknown>;
|
|
43
31
|
}
|
|
32
|
+
/** Request for `PipelexRunner.checkModel` — a LOCAL CLI capability only (no API route). */
|
|
44
33
|
export interface CheckModelRequest {
|
|
45
34
|
reference: string;
|
|
46
35
|
type: string;
|
|
@@ -52,42 +41,6 @@ export interface BuildRunnerResponse {
|
|
|
52
41
|
success: boolean;
|
|
53
42
|
message: string;
|
|
54
43
|
}
|
|
55
|
-
export interface DictStuff {
|
|
56
|
-
concept: string;
|
|
57
|
-
content: unknown;
|
|
58
|
-
}
|
|
59
|
-
export interface DictWorkingMemory {
|
|
60
|
-
root: Record<string, DictStuff>;
|
|
61
|
-
aliases: Record<string, string>;
|
|
62
|
-
}
|
|
63
|
-
export interface DictPipeOutput {
|
|
64
|
-
working_memory: DictWorkingMemory;
|
|
65
|
-
graph_spec?: unknown;
|
|
66
|
-
pipeline_run_id: string;
|
|
67
|
-
}
|
|
68
|
-
export interface PipelineResponse {
|
|
69
|
-
pipeline_run_id: string;
|
|
70
|
-
created_at: string;
|
|
71
|
-
pipeline_state: PipelineState;
|
|
72
|
-
finished_at?: string | null;
|
|
73
|
-
pipe_output?: DictPipeOutput | null;
|
|
74
|
-
main_stuff_name?: string | null;
|
|
75
|
-
}
|
|
76
|
-
export interface PipelexBundleBlueprint {
|
|
77
|
-
source?: string | null;
|
|
78
|
-
domain: string;
|
|
79
|
-
description?: string | null;
|
|
80
|
-
system_prompt?: string | null;
|
|
81
|
-
main_pipe?: string | null;
|
|
82
|
-
concept?: Record<string, unknown> | null;
|
|
83
|
-
pipe?: Record<string, unknown> | null;
|
|
84
|
-
}
|
|
85
|
-
export interface ValidateResponse {
|
|
86
|
-
mthds_contents: string[];
|
|
87
|
-
pipelex_bundle_blueprint: PipelexBundleBlueprint;
|
|
88
|
-
success: boolean;
|
|
89
|
-
message: string;
|
|
90
|
-
}
|
|
91
44
|
export interface ConceptResponse {
|
|
92
45
|
success: boolean;
|
|
93
46
|
concept_code: string;
|
|
@@ -99,6 +52,7 @@ export interface PipeSpecResponse {
|
|
|
99
52
|
pipe_type: string;
|
|
100
53
|
toml: string;
|
|
101
54
|
}
|
|
55
|
+
/** Response of `PipelexRunner.checkModel` — a LOCAL CLI capability only (no API route). */
|
|
102
56
|
export interface CheckModelResponse {
|
|
103
57
|
success: boolean;
|
|
104
58
|
valid: boolean;
|
|
@@ -106,30 +60,18 @@ export interface CheckModelResponse {
|
|
|
106
60
|
suggestions?: string[];
|
|
107
61
|
[key: string]: unknown;
|
|
108
62
|
}
|
|
109
|
-
export interface
|
|
110
|
-
type?: string[];
|
|
111
|
-
}
|
|
112
|
-
export interface ModelsResponse {
|
|
113
|
-
success: boolean;
|
|
114
|
-
presets: Record<string, Array<{
|
|
115
|
-
name: string;
|
|
116
|
-
description?: string;
|
|
117
|
-
}>>;
|
|
118
|
-
aliases: Record<string, Record<string, string>>;
|
|
119
|
-
waterfalls: Record<string, Record<string, string[]>>;
|
|
120
|
-
talent_mappings: Record<string, Record<string, string>>;
|
|
121
|
-
}
|
|
122
|
-
export interface Runner extends RunnerProtocol {
|
|
63
|
+
export interface Runner extends MTHDSProtocol<DictPipeOutput> {
|
|
123
64
|
readonly type: RunnerType;
|
|
124
65
|
health(): Promise<Record<string, unknown>>;
|
|
125
|
-
version(): Promise<Record<string, string>>;
|
|
126
66
|
buildInputs(request: BuildInputsRequest): Promise<unknown>;
|
|
127
67
|
buildOutput(request: BuildOutputRequest): Promise<unknown>;
|
|
128
68
|
buildRunner(request: BuildRunnerRequest): Promise<BuildRunnerResponse>;
|
|
129
|
-
execute(request: ExecuteRequest): Promise<PipelineResponse>;
|
|
130
|
-
validate(request: ValidateRequest): Promise<ValidateResponse>;
|
|
131
69
|
concept(request: ConceptRequest): Promise<ConceptResponse>;
|
|
132
70
|
pipeSpec(request: PipeSpecRequest): Promise<PipeSpecResponse>;
|
|
133
|
-
|
|
134
|
-
|
|
71
|
+
getRunStatus(runId: string): Promise<RunRead>;
|
|
72
|
+
getRunResult(runId: string, options?: {
|
|
73
|
+
signal?: AbortSignal;
|
|
74
|
+
}): Promise<RunResultState>;
|
|
75
|
+
waitForResult(runId: string, options?: WaitForResultOptions): Promise<RunResults>;
|
|
76
|
+
startAndWaitForResult(options: StartOptions, pollOptions?: WaitForResultOptions): Promise<RunResults>;
|
|
135
77
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/runners/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/runners/types.ts"],"names":[],"mappings":"AAUA,uEAAuE;AAEvE,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,GAAG,EAAE,KAAK;IACV,OAAO,EAAE,SAAS;CACV,CAAC;AAIX,MAAM,CAAC,MAAM,YAAY,GAAiB,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mthds",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "CLI and SDK for MTHDS — the open standard for executable AI methods. Install, execute, and manage methods.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsc",
|
|
25
25
|
"test": "vitest run",
|
|
26
|
-
"
|
|
26
|
+
"depcruise": "depcruise --config .dependency-cruiser.cjs src",
|
|
27
|
+
"example": "npx tsx examples/call_api.ts",
|
|
28
|
+
"prepare": "tsc"
|
|
27
29
|
},
|
|
28
30
|
"files": [
|
|
29
31
|
"dist/"
|
|
@@ -44,8 +46,9 @@
|
|
|
44
46
|
"devDependencies": {
|
|
45
47
|
"@types/node": "^22.12.0",
|
|
46
48
|
"@types/semver": "^7.7.1",
|
|
49
|
+
"dependency-cruiser": "^17.4.3",
|
|
47
50
|
"tsx": "^4.19.0",
|
|
48
51
|
"typescript": "^5.7.3",
|
|
49
52
|
"vitest": "^4.0.18"
|
|
50
53
|
}
|
|
51
|
-
}
|
|
54
|
+
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Agent validate command — validates a .mthds bundle and outputs JSON.
|
|
3
|
-
*/
|
|
4
|
-
import type { RunnerType } from "../../runners/types.js";
|
|
5
|
-
interface AgentValidateOptions {
|
|
6
|
-
pipe?: string;
|
|
7
|
-
runner?: RunnerType;
|
|
8
|
-
libraryDir?: string[];
|
|
9
|
-
}
|
|
10
|
-
export declare function agentValidateMethod(_target: string, options: AgentValidateOptions): Promise<void>;
|
|
11
|
-
export declare function agentValidateBundle(_target: string, options: AgentValidateOptions): Promise<void>;
|
|
12
|
-
export declare function agentValidatePipe(target: string, options: {
|
|
13
|
-
pipe?: string;
|
|
14
|
-
bundle?: string;
|
|
15
|
-
runner?: RunnerType;
|
|
16
|
-
libraryDir?: string[];
|
|
17
|
-
}): Promise<void>;
|
|
18
|
-
export {};
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Agent validate command — validates a .mthds bundle and outputs JSON.
|
|
3
|
-
*/
|
|
4
|
-
import { readFileSync } from "node:fs";
|
|
5
|
-
import { agentSuccess, agentError, AGENT_ERROR_DOMAINS } from "../output.js";
|
|
6
|
-
import { createRunner } from "../../runners/registry.js";
|
|
7
|
-
import { isPipelexRunner } from "../../cli/commands/utils.js";
|
|
8
|
-
/** Extract raw args after `validate`, filtering out --runner, -L/--library-dir, and --log-level */
|
|
9
|
-
function extractPassthroughArgs() {
|
|
10
|
-
const argv = process.argv;
|
|
11
|
-
const idx = argv.indexOf("validate");
|
|
12
|
-
if (idx === -1)
|
|
13
|
-
return [];
|
|
14
|
-
const raw = argv.slice(idx + 1);
|
|
15
|
-
const result = [];
|
|
16
|
-
let i = 0;
|
|
17
|
-
while (i < raw.length) {
|
|
18
|
-
if (raw[i] === "--runner" ||
|
|
19
|
-
raw[i] === "-L" ||
|
|
20
|
-
raw[i] === "--library-dir" ||
|
|
21
|
-
raw[i] === "--log-level") {
|
|
22
|
-
i += 2;
|
|
23
|
-
}
|
|
24
|
-
else if (raw[i].startsWith("--runner=") ||
|
|
25
|
-
raw[i].startsWith("--library-dir=") ||
|
|
26
|
-
raw[i].startsWith("--log-level=")) {
|
|
27
|
-
i += 1;
|
|
28
|
-
}
|
|
29
|
-
else {
|
|
30
|
-
result.push(raw[i]);
|
|
31
|
-
i++;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
return result;
|
|
35
|
-
}
|
|
36
|
-
async function agentValidateTarget(options, fallbackMsg) {
|
|
37
|
-
const libraryDirs = options.libraryDir?.length
|
|
38
|
-
? options.libraryDir
|
|
39
|
-
: undefined;
|
|
40
|
-
let runner;
|
|
41
|
-
try {
|
|
42
|
-
runner = createRunner(options.runner, libraryDirs);
|
|
43
|
-
}
|
|
44
|
-
catch (err) {
|
|
45
|
-
agentError(err.message, "RunnerError", {
|
|
46
|
-
error_domain: AGENT_ERROR_DOMAINS.RUNNER,
|
|
47
|
-
});
|
|
48
|
-
}
|
|
49
|
-
if (isPipelexRunner(runner)) {
|
|
50
|
-
try {
|
|
51
|
-
await runner.validatePassthrough(extractPassthroughArgs());
|
|
52
|
-
}
|
|
53
|
-
catch (err) {
|
|
54
|
-
agentError(err.message, "ValidationError", {
|
|
55
|
-
error_domain: AGENT_ERROR_DOMAINS.VALIDATION,
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
return;
|
|
59
|
-
}
|
|
60
|
-
agentError(fallbackMsg, "ArgumentError", {
|
|
61
|
-
error_domain: AGENT_ERROR_DOMAINS.ARGUMENT,
|
|
62
|
-
});
|
|
63
|
-
}
|
|
64
|
-
export async function agentValidateMethod(_target, options) {
|
|
65
|
-
return agentValidateTarget(options, "Method target is not yet supported for the API runner. Use 'mthds-agent validate pipe <target>' instead, or specify a different runner with --runner <name>.");
|
|
66
|
-
}
|
|
67
|
-
export async function agentValidateBundle(_target, options) {
|
|
68
|
-
return agentValidateTarget(options, "Bundle target is only supported with the pipelex runner. Specify --runner pipelex.");
|
|
69
|
-
}
|
|
70
|
-
export async function agentValidatePipe(target, options) {
|
|
71
|
-
const libraryDirs = options.libraryDir?.length
|
|
72
|
-
? options.libraryDir
|
|
73
|
-
: undefined;
|
|
74
|
-
let runner;
|
|
75
|
-
try {
|
|
76
|
-
runner = createRunner(options.runner, libraryDirs);
|
|
77
|
-
}
|
|
78
|
-
catch (err) {
|
|
79
|
-
agentError(err.message, "RunnerError", {
|
|
80
|
-
error_domain: AGENT_ERROR_DOMAINS.RUNNER,
|
|
81
|
-
});
|
|
82
|
-
}
|
|
83
|
-
if (isPipelexRunner(runner)) {
|
|
84
|
-
try {
|
|
85
|
-
await runner.validatePassthrough(extractPassthroughArgs());
|
|
86
|
-
}
|
|
87
|
-
catch (err) {
|
|
88
|
-
agentError(err.message, "ValidationError", {
|
|
89
|
-
error_domain: AGENT_ERROR_DOMAINS.VALIDATION,
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
return;
|
|
93
|
-
}
|
|
94
|
-
const bundlePath = options.bundle ?? (target.endsWith(".mthds") ? target : undefined);
|
|
95
|
-
if (!bundlePath) {
|
|
96
|
-
agentError("Provide a .mthds bundle file to validate (positional or --bundle).", "ArgumentError", { error_domain: AGENT_ERROR_DOMAINS.ARGUMENT });
|
|
97
|
-
}
|
|
98
|
-
let mthdsContent;
|
|
99
|
-
try {
|
|
100
|
-
mthdsContent = readFileSync(bundlePath, "utf-8");
|
|
101
|
-
}
|
|
102
|
-
catch (err) {
|
|
103
|
-
agentError(`Cannot read bundle: ${err.message}`, "IOError", { error_domain: AGENT_ERROR_DOMAINS.IO });
|
|
104
|
-
}
|
|
105
|
-
try {
|
|
106
|
-
const result = await runner.validate({ mthds_contents: [mthdsContent] });
|
|
107
|
-
if (result.success) {
|
|
108
|
-
agentSuccess({
|
|
109
|
-
success: true,
|
|
110
|
-
message: result.message,
|
|
111
|
-
pipelex_bundle_blueprint: result.pipelex_bundle_blueprint,
|
|
112
|
-
});
|
|
113
|
-
}
|
|
114
|
-
else {
|
|
115
|
-
agentError(result.message, "ValidationError", {
|
|
116
|
-
error_domain: AGENT_ERROR_DOMAINS.VALIDATION,
|
|
117
|
-
});
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
catch (err) {
|
|
121
|
-
agentError(err.message, "ValidationError", {
|
|
122
|
-
error_domain: AGENT_ERROR_DOMAINS.VALIDATION,
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
//# sourceMappingURL=validate.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../../src/agent/commands/validate.ts"],"names":[],"mappings":"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"}
|
package/dist/client/client.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { RunnerProtocol } from "./protocol.js";
|
|
2
|
-
import type { ExecutePipelineOptions, PipelineExecuteResponse, PipelineStartResponse } from "./pipeline.js";
|
|
3
|
-
interface MthdsApiClientOptions {
|
|
4
|
-
apiToken?: string;
|
|
5
|
-
apiBaseUrl?: string;
|
|
6
|
-
}
|
|
7
|
-
export declare class MthdsApiClient implements RunnerProtocol {
|
|
8
|
-
private readonly apiToken;
|
|
9
|
-
private readonly apiBaseUrl;
|
|
10
|
-
constructor(options?: MthdsApiClientOptions);
|
|
11
|
-
private makeApiCall;
|
|
12
|
-
executePipeline(options: ExecutePipelineOptions): Promise<PipelineExecuteResponse>;
|
|
13
|
-
startPipeline(options: ExecutePipelineOptions): Promise<PipelineStartResponse>;
|
|
14
|
-
}
|
|
15
|
-
export {};
|
package/dist/client/client.js
DELETED
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import { ApiResponseError, ApiUnreachableError, ClientAuthenticationError, PipelineRequestError, } from "./exceptions.js";
|
|
2
|
-
export class MthdsApiClient {
|
|
3
|
-
apiToken;
|
|
4
|
-
apiBaseUrl;
|
|
5
|
-
constructor(options = {}) {
|
|
6
|
-
this.apiToken = options.apiToken ?? process.env.PIPELEX_API_KEY;
|
|
7
|
-
const resolvedBaseUrl = options.apiBaseUrl ?? process.env.PIPELEX_API_URL;
|
|
8
|
-
if (!resolvedBaseUrl) {
|
|
9
|
-
throw new ClientAuthenticationError("API base URL is required for API execution");
|
|
10
|
-
}
|
|
11
|
-
this.apiBaseUrl = resolvedBaseUrl.replace(/\/+$/, "");
|
|
12
|
-
}
|
|
13
|
-
async makeApiCall(endpoint, pipelineRequest) {
|
|
14
|
-
const url = `${this.apiBaseUrl}/${endpoint}`;
|
|
15
|
-
const headers = {
|
|
16
|
-
"Content-Type": "application/json",
|
|
17
|
-
};
|
|
18
|
-
if (this.apiToken) {
|
|
19
|
-
headers["Authorization"] = `Bearer ${this.apiToken}`;
|
|
20
|
-
}
|
|
21
|
-
let response;
|
|
22
|
-
try {
|
|
23
|
-
response = await fetch(url, {
|
|
24
|
-
method: "POST",
|
|
25
|
-
headers,
|
|
26
|
-
body: JSON.stringify(pipelineRequest),
|
|
27
|
-
signal: AbortSignal.timeout(1_200_000),
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
catch (err) {
|
|
31
|
-
// undici (Node fetch) wraps DNS/connect/TLS failures as
|
|
32
|
-
// `TypeError("fetch failed")` with the system error attached as `cause`.
|
|
33
|
-
// `AbortSignal.timeout` rejects with a DOMException named "TimeoutError".
|
|
34
|
-
const code = extractNetworkErrorCode(err);
|
|
35
|
-
throw new ApiUnreachableError(`Could not reach Pipelex API at ${this.apiBaseUrl} (${code ?? "network error"})`, this.apiBaseUrl, code, { cause: err });
|
|
36
|
-
}
|
|
37
|
-
if (!response.ok) {
|
|
38
|
-
const body = await response.text().catch(() => "");
|
|
39
|
-
const { errorType, serverMessage } = parseErrorBody(body);
|
|
40
|
-
throw new ApiResponseError(`API POST /${endpoint} failed (${response.status}): ${serverMessage ?? (body || response.statusText)}`, this.apiBaseUrl, response.status, response.statusText, body, errorType, serverMessage);
|
|
41
|
-
}
|
|
42
|
-
return response.json();
|
|
43
|
-
}
|
|
44
|
-
async executePipeline(options) {
|
|
45
|
-
if (!options.pipe_code && (!options.mthds_contents || options.mthds_contents.length === 0)) {
|
|
46
|
-
throw new PipelineRequestError("Either pipe_code or mthds_contents must be provided to executePipeline.");
|
|
47
|
-
}
|
|
48
|
-
const request = {
|
|
49
|
-
pipe_code: options.pipe_code,
|
|
50
|
-
mthds_contents: options.mthds_contents,
|
|
51
|
-
inputs: options.inputs,
|
|
52
|
-
output_name: options.output_name,
|
|
53
|
-
output_multiplicity: options.output_multiplicity,
|
|
54
|
-
dynamic_output_concept_code: options.dynamic_output_concept_code,
|
|
55
|
-
};
|
|
56
|
-
const data = await this.makeApiCall("api/v1/pipeline/execute", request);
|
|
57
|
-
return data;
|
|
58
|
-
}
|
|
59
|
-
async startPipeline(options) {
|
|
60
|
-
if (!options.pipe_code && (!options.mthds_contents || options.mthds_contents.length === 0)) {
|
|
61
|
-
throw new PipelineRequestError("Either pipe_code or mthds_contents must be provided to startPipeline.");
|
|
62
|
-
}
|
|
63
|
-
const request = {
|
|
64
|
-
pipe_code: options.pipe_code,
|
|
65
|
-
mthds_contents: options.mthds_contents,
|
|
66
|
-
inputs: options.inputs,
|
|
67
|
-
output_name: options.output_name,
|
|
68
|
-
output_multiplicity: options.output_multiplicity,
|
|
69
|
-
dynamic_output_concept_code: options.dynamic_output_concept_code,
|
|
70
|
-
};
|
|
71
|
-
const data = await this.makeApiCall("api/v1/pipeline/start", request);
|
|
72
|
-
return data;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
function extractNetworkErrorCode(err) {
|
|
76
|
-
if (err instanceof DOMException && err.name === "TimeoutError") {
|
|
77
|
-
return "ABORT_TIMEOUT";
|
|
78
|
-
}
|
|
79
|
-
if (err instanceof Error) {
|
|
80
|
-
const cause = err.cause;
|
|
81
|
-
if (cause && typeof cause === "object" && "code" in cause) {
|
|
82
|
-
const code = cause.code;
|
|
83
|
-
if (typeof code === "string")
|
|
84
|
-
return code;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
return undefined;
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* Pipelex API serializes errors as `{"detail": {"error_type": ..., "message": ...}}`
|
|
91
|
-
* (HTTPException with dict detail) or `{"detail": "..."}` (auth 401s).
|
|
92
|
-
* Both shapes are extracted here. Falls through silently on non-JSON bodies.
|
|
93
|
-
*/
|
|
94
|
-
function parseErrorBody(body) {
|
|
95
|
-
if (!body)
|
|
96
|
-
return { errorType: undefined, serverMessage: undefined };
|
|
97
|
-
let parsed;
|
|
98
|
-
try {
|
|
99
|
-
parsed = JSON.parse(body);
|
|
100
|
-
}
|
|
101
|
-
catch {
|
|
102
|
-
return { errorType: undefined, serverMessage: undefined };
|
|
103
|
-
}
|
|
104
|
-
if (!parsed || typeof parsed !== "object") {
|
|
105
|
-
return { errorType: undefined, serverMessage: undefined };
|
|
106
|
-
}
|
|
107
|
-
const root = parsed;
|
|
108
|
-
const detail = root.detail;
|
|
109
|
-
let errorType;
|
|
110
|
-
let serverMessage;
|
|
111
|
-
if (detail && typeof detail === "object") {
|
|
112
|
-
const d = detail;
|
|
113
|
-
if (typeof d.error_type === "string")
|
|
114
|
-
errorType = d.error_type;
|
|
115
|
-
if (typeof d.message === "string")
|
|
116
|
-
serverMessage = d.message;
|
|
117
|
-
}
|
|
118
|
-
else if (typeof detail === "string") {
|
|
119
|
-
serverMessage = detail;
|
|
120
|
-
}
|
|
121
|
-
if (errorType === undefined && typeof root.error_type === "string")
|
|
122
|
-
errorType = root.error_type;
|
|
123
|
-
if (serverMessage === undefined && typeof root.message === "string")
|
|
124
|
-
serverMessage = root.message;
|
|
125
|
-
return { errorType, serverMessage };
|
|
126
|
-
}
|
|
127
|
-
//# sourceMappingURL=client.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/client/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
export declare class ClientAuthenticationError extends Error {
|
|
2
|
-
constructor(message: string);
|
|
3
|
-
}
|
|
4
|
-
export declare class PipelineRequestError extends Error {
|
|
5
|
-
constructor(message: string, options?: {
|
|
6
|
-
cause?: unknown;
|
|
7
|
-
});
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Thrown when the Pipelex API host cannot be reached at all (DNS failure,
|
|
11
|
-
* connection refused, TLS handshake failure, request timeout). The HTTP
|
|
12
|
-
* exchange never produced a response — distinguish from `ApiResponseError`,
|
|
13
|
-
* which represents a non-2xx response that did come back.
|
|
14
|
-
*
|
|
15
|
-
* `code` is the underlying network error code when available
|
|
16
|
-
* (`ECONNREFUSED`, `ENOTFOUND`, `ETIMEDOUT`, `EAI_AGAIN`, `ABORT_TIMEOUT`).
|
|
17
|
-
*/
|
|
18
|
-
export declare class ApiUnreachableError extends PipelineRequestError {
|
|
19
|
-
readonly apiUrl: string;
|
|
20
|
-
readonly code: string | undefined;
|
|
21
|
-
constructor(message: string, apiUrl: string, code: string | undefined, options?: {
|
|
22
|
-
cause?: unknown;
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Thrown when the API returned a non-2xx HTTP response. Carries structured
|
|
27
|
-
* fields so callers can render meaningful UI without parsing the message:
|
|
28
|
-
* - `status` / `statusText` — HTTP status from the response
|
|
29
|
-
* - `responseBody` — raw response body (always retained)
|
|
30
|
-
* - `errorType` / `serverMessage` — parsed from the JSON body when present
|
|
31
|
-
*
|
|
32
|
-
* Pipelex API serializes errors as `{"detail": {"error_type", "message"}}`
|
|
33
|
-
* (HTTPException with dict detail) or `{"detail": "..."}` (auth 401s).
|
|
34
|
-
* Both shapes are extracted here.
|
|
35
|
-
*/
|
|
36
|
-
export declare class ApiResponseError extends PipelineRequestError {
|
|
37
|
-
readonly apiUrl: string;
|
|
38
|
-
readonly status: number;
|
|
39
|
-
readonly statusText: string;
|
|
40
|
-
readonly responseBody: string;
|
|
41
|
-
readonly errorType: string | undefined;
|
|
42
|
-
readonly serverMessage: string | undefined;
|
|
43
|
-
constructor(message: string, apiUrl: string, status: number, statusText: string, responseBody: string, errorType: string | undefined, serverMessage: string | undefined, options?: {
|
|
44
|
-
cause?: unknown;
|
|
45
|
-
});
|
|
46
|
-
}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
export class ClientAuthenticationError extends Error {
|
|
2
|
-
constructor(message) {
|
|
3
|
-
super(message);
|
|
4
|
-
this.name = "ClientAuthenticationError";
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
export class PipelineRequestError extends Error {
|
|
8
|
-
constructor(message, options) {
|
|
9
|
-
super(message, options);
|
|
10
|
-
this.name = "PipelineRequestError";
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Thrown when the Pipelex API host cannot be reached at all (DNS failure,
|
|
15
|
-
* connection refused, TLS handshake failure, request timeout). The HTTP
|
|
16
|
-
* exchange never produced a response — distinguish from `ApiResponseError`,
|
|
17
|
-
* which represents a non-2xx response that did come back.
|
|
18
|
-
*
|
|
19
|
-
* `code` is the underlying network error code when available
|
|
20
|
-
* (`ECONNREFUSED`, `ENOTFOUND`, `ETIMEDOUT`, `EAI_AGAIN`, `ABORT_TIMEOUT`).
|
|
21
|
-
*/
|
|
22
|
-
export class ApiUnreachableError extends PipelineRequestError {
|
|
23
|
-
apiUrl;
|
|
24
|
-
code;
|
|
25
|
-
constructor(message, apiUrl, code, options) {
|
|
26
|
-
super(message, options);
|
|
27
|
-
this.name = "ApiUnreachableError";
|
|
28
|
-
this.apiUrl = apiUrl;
|
|
29
|
-
this.code = code;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Thrown when the API returned a non-2xx HTTP response. Carries structured
|
|
34
|
-
* fields so callers can render meaningful UI without parsing the message:
|
|
35
|
-
* - `status` / `statusText` — HTTP status from the response
|
|
36
|
-
* - `responseBody` — raw response body (always retained)
|
|
37
|
-
* - `errorType` / `serverMessage` — parsed from the JSON body when present
|
|
38
|
-
*
|
|
39
|
-
* Pipelex API serializes errors as `{"detail": {"error_type", "message"}}`
|
|
40
|
-
* (HTTPException with dict detail) or `{"detail": "..."}` (auth 401s).
|
|
41
|
-
* Both shapes are extracted here.
|
|
42
|
-
*/
|
|
43
|
-
export class ApiResponseError extends PipelineRequestError {
|
|
44
|
-
apiUrl;
|
|
45
|
-
status;
|
|
46
|
-
statusText;
|
|
47
|
-
responseBody;
|
|
48
|
-
errorType;
|
|
49
|
-
serverMessage;
|
|
50
|
-
constructor(message, apiUrl, status, statusText, responseBody, errorType, serverMessage, options) {
|
|
51
|
-
super(message, options);
|
|
52
|
-
this.name = "ApiResponseError";
|
|
53
|
-
this.apiUrl = apiUrl;
|
|
54
|
-
this.status = status;
|
|
55
|
-
this.statusText = statusText;
|
|
56
|
-
this.responseBody = responseBody;
|
|
57
|
-
this.errorType = errorType;
|
|
58
|
-
this.serverMessage = serverMessage;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
//# sourceMappingURL=exceptions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"exceptions.js","sourceRoot":"","sources":["../../src/client/exceptions.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,yBAA0B,SAAQ,KAAK;IAClD,YAAY,OAAe;QACzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,2BAA2B,CAAC;IAC1C,CAAC;CACF;AAED,MAAM,OAAO,oBAAqB,SAAQ,KAAK;IAC7C,YAAY,OAAe,EAAE,OAA6B;QACxD,KAAK,CAAC,OAAO,EAAE,OAAmC,CAAC,CAAC;QACpD,IAAI,CAAC,IAAI,GAAG,sBAAsB,CAAC;IACrC,CAAC;CACF;AAED;;;;;;;;GAQG;AACH,MAAM,OAAO,mBAAoB,SAAQ,oBAAoB;IAC3C,MAAM,CAAS;IACf,IAAI,CAAqB;IAEzC,YACE,OAAe,EACf,MAAc,EACd,IAAwB,EACxB,OAA6B;QAE7B,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,GAAG,qBAAqB,CAAC;QAClC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;CACF;AAED;;;;;;;;;;GAUG;AACH,MAAM,OAAO,gBAAiB,SAAQ,oBAAoB;IACxC,MAAM,CAAS;IACf,MAAM,CAAS;IACf,UAAU,CAAS;IACnB,YAAY,CAAS;IACrB,SAAS,CAAqB;IAC9B,aAAa,CAAqB;IAElD,YACE,OAAe,EACf,MAAc,EACd,MAAc,EACd,UAAkB,EAClB,YAAoB,EACpB,SAA6B,EAC7B,aAAiC,EACjC,OAA6B;QAE7B,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;QAC/B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;IACrC,CAAC;CACF"}
|
package/dist/client/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { MthdsApiClient } from "./client.js";
|
|
2
|
-
export type { RunnerProtocol } from "./protocol.js";
|
|
3
|
-
export { ApiResponseError, ApiUnreachableError, ClientAuthenticationError, PipelineRequestError, } from "./exceptions.js";
|
|
4
|
-
export type { PipelineState, PipelineRequest, PipelineExecuteResponse, PipelineStartResponse, ExecutePipelineOptions, } from "./pipeline.js";
|
|
5
|
-
export type { DictStuff, DictWorkingMemory, DictPipeOutput, VariableMultiplicity, StuffContentOrData, PipelineInputs, } from "./models/index.js";
|
package/dist/client/index.js
DELETED
package/dist/client/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAE7C,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,yBAAyB,EACzB,oBAAoB,GACrB,MAAM,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/client/models/index.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipe_output.js","sourceRoot":"","sources":["../../../src/client/models/pipe_output.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pipeline_inputs.js","sourceRoot":"","sources":["../../../src/client/models/pipeline_inputs.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { DictStuff } from "../../runners/types.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type { DictWorkingMemory } from "../../runners/types.js";
|