@brainpilot/protocol 0.0.3 → 0.0.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/http.d.ts +59 -13
- package/dist/http.d.ts.map +1 -1
- package/dist/http.js +20 -0
- package/dist/http.js.map +1 -1
- package/package.json +1 -1
package/dist/http.d.ts
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* event payload schema (AgUiEvent) is identical for both.
|
|
25
25
|
*/
|
|
26
26
|
import { z } from "zod";
|
|
27
|
-
export type HttpMethod = "GET" | "POST" | "DELETE";
|
|
27
|
+
export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE";
|
|
28
28
|
export interface RouteDef {
|
|
29
29
|
readonly method: HttpMethod;
|
|
30
30
|
/** Path template with `:param` placeholders. */
|
|
@@ -45,16 +45,27 @@ export declare const MetricsResponseSchema: z.ZodObject<{
|
|
|
45
45
|
lastActivityAt: z.ZodNullable<z.ZodString>;
|
|
46
46
|
/** Resident set size in bytes. */
|
|
47
47
|
memRss: z.ZodNumber;
|
|
48
|
+
/**
|
|
49
|
+
* Container memory budget in bytes (BP_MEM_LIMIT_MB, §R-4). Null when the
|
|
50
|
+
* opt-in budget is unset — i.e. single-user / no in-runtime throttle.
|
|
51
|
+
*/
|
|
52
|
+
memLimitBytes: z.ZodNullable<z.ZodNumber>;
|
|
53
|
+
/** memRss / memLimitBytes, or null when no budget is set. */
|
|
54
|
+
memRatio: z.ZodNullable<z.ZodNumber>;
|
|
48
55
|
}, "strip", z.ZodTypeAny, {
|
|
49
56
|
activeSessions: number;
|
|
50
57
|
runningAgents: number;
|
|
51
58
|
lastActivityAt: string | null;
|
|
52
59
|
memRss: number;
|
|
60
|
+
memLimitBytes: number | null;
|
|
61
|
+
memRatio: number | null;
|
|
53
62
|
}, {
|
|
54
63
|
activeSessions: number;
|
|
55
64
|
runningAgents: number;
|
|
56
65
|
lastActivityAt: string | null;
|
|
57
66
|
memRss: number;
|
|
67
|
+
memLimitBytes: number | null;
|
|
68
|
+
memRatio: number | null;
|
|
58
69
|
}>;
|
|
59
70
|
export type MetricsResponse = z.infer<typeof MetricsResponseSchema>;
|
|
60
71
|
export declare const CreateSessionRequestSchema: z.ZodObject<{
|
|
@@ -62,12 +73,20 @@ export declare const CreateSessionRequestSchema: z.ZodObject<{
|
|
|
62
73
|
title: z.ZodOptional<z.ZodString>;
|
|
63
74
|
/** Optional caller-supplied id; runtime generates a UUID otherwise. */
|
|
64
75
|
id: z.ZodOptional<z.ZodString>;
|
|
76
|
+
/** Optional provider profile id this session should use (providers.json). */
|
|
77
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
78
|
+
/** Optional model id within that provider. */
|
|
79
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
65
80
|
}, "strip", z.ZodTypeAny, {
|
|
66
|
-
id?: string | undefined;
|
|
67
81
|
title?: string | undefined;
|
|
68
|
-
}, {
|
|
69
82
|
id?: string | undefined;
|
|
83
|
+
providerId?: string | undefined;
|
|
84
|
+
modelId?: string | undefined;
|
|
85
|
+
}, {
|
|
70
86
|
title?: string | undefined;
|
|
87
|
+
id?: string | undefined;
|
|
88
|
+
providerId?: string | undefined;
|
|
89
|
+
modelId?: string | undefined;
|
|
71
90
|
}>;
|
|
72
91
|
export type CreateSessionRequest = z.infer<typeof CreateSessionRequestSchema>;
|
|
73
92
|
export declare const CreateSessionResponseSchema: z.ZodObject<{
|
|
@@ -78,29 +97,29 @@ export declare const CreateSessionResponseSchema: z.ZodObject<{
|
|
|
78
97
|
createdAt: z.ZodString;
|
|
79
98
|
updatedAt: z.ZodString;
|
|
80
99
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
id: string;
|
|
82
100
|
title: string;
|
|
101
|
+
id: string;
|
|
83
102
|
createdAt: string;
|
|
84
103
|
updatedAt: string;
|
|
85
104
|
}, {
|
|
86
|
-
id: string;
|
|
87
105
|
title: string;
|
|
106
|
+
id: string;
|
|
88
107
|
createdAt: string;
|
|
89
108
|
updatedAt: string;
|
|
90
109
|
}>>;
|
|
91
110
|
}, "strip", z.ZodTypeAny, {
|
|
92
111
|
id: string;
|
|
93
112
|
session?: {
|
|
94
|
-
id: string;
|
|
95
113
|
title: string;
|
|
114
|
+
id: string;
|
|
96
115
|
createdAt: string;
|
|
97
116
|
updatedAt: string;
|
|
98
117
|
} | undefined;
|
|
99
118
|
}, {
|
|
100
119
|
id: string;
|
|
101
120
|
session?: {
|
|
102
|
-
id: string;
|
|
103
121
|
title: string;
|
|
122
|
+
id: string;
|
|
104
123
|
createdAt: string;
|
|
105
124
|
updatedAt: string;
|
|
106
125
|
} | undefined;
|
|
@@ -113,27 +132,27 @@ export declare const ListSessionsResponseSchema: z.ZodObject<{
|
|
|
113
132
|
createdAt: z.ZodString;
|
|
114
133
|
updatedAt: z.ZodString;
|
|
115
134
|
}, "strip", z.ZodTypeAny, {
|
|
116
|
-
id: string;
|
|
117
135
|
title: string;
|
|
136
|
+
id: string;
|
|
118
137
|
createdAt: string;
|
|
119
138
|
updatedAt: string;
|
|
120
139
|
}, {
|
|
121
|
-
id: string;
|
|
122
140
|
title: string;
|
|
141
|
+
id: string;
|
|
123
142
|
createdAt: string;
|
|
124
143
|
updatedAt: string;
|
|
125
144
|
}>, "many">;
|
|
126
145
|
}, "strip", z.ZodTypeAny, {
|
|
127
146
|
sessions: {
|
|
128
|
-
id: string;
|
|
129
147
|
title: string;
|
|
148
|
+
id: string;
|
|
130
149
|
createdAt: string;
|
|
131
150
|
updatedAt: string;
|
|
132
151
|
}[];
|
|
133
152
|
}, {
|
|
134
153
|
sessions: {
|
|
135
|
-
id: string;
|
|
136
154
|
title: string;
|
|
155
|
+
id: string;
|
|
137
156
|
createdAt: string;
|
|
138
157
|
updatedAt: string;
|
|
139
158
|
}[];
|
|
@@ -145,13 +164,13 @@ export declare const GetSessionResponseSchema: z.ZodObject<{
|
|
|
145
164
|
createdAt: z.ZodString;
|
|
146
165
|
updatedAt: z.ZodString;
|
|
147
166
|
}, "strip", z.ZodTypeAny, {
|
|
148
|
-
id: string;
|
|
149
167
|
title: string;
|
|
168
|
+
id: string;
|
|
150
169
|
createdAt: string;
|
|
151
170
|
updatedAt: string;
|
|
152
171
|
}, {
|
|
153
|
-
id: string;
|
|
154
172
|
title: string;
|
|
173
|
+
id: string;
|
|
155
174
|
createdAt: string;
|
|
156
175
|
updatedAt: string;
|
|
157
176
|
}>;
|
|
@@ -1182,6 +1201,11 @@ export declare const RUNTIME_ROUTES: {
|
|
|
1182
1201
|
readonly method: "GET";
|
|
1183
1202
|
readonly path: "/sessions/:id";
|
|
1184
1203
|
};
|
|
1204
|
+
/** Update session metadata (currently just `title`); persists to meta.json. */
|
|
1205
|
+
readonly updateSession: {
|
|
1206
|
+
readonly method: "PUT";
|
|
1207
|
+
readonly path: "/sessions/:id";
|
|
1208
|
+
};
|
|
1185
1209
|
readonly deleteSession: {
|
|
1186
1210
|
readonly method: "DELETE";
|
|
1187
1211
|
readonly path: "/sessions/:id";
|
|
@@ -1190,6 +1214,11 @@ export declare const RUNTIME_ROUTES: {
|
|
|
1190
1214
|
readonly method: "GET";
|
|
1191
1215
|
readonly path: "/sessions/:id/state";
|
|
1192
1216
|
};
|
|
1217
|
+
/** Graph of Trace (reasoning DAG) for a session. */
|
|
1218
|
+
readonly getTrace: {
|
|
1219
|
+
readonly method: "GET";
|
|
1220
|
+
readonly path: "/sessions/:id/trace";
|
|
1221
|
+
};
|
|
1193
1222
|
readonly sendMessage: {
|
|
1194
1223
|
readonly method: "POST";
|
|
1195
1224
|
readonly path: "/sessions/:id/messages";
|
|
@@ -1216,6 +1245,23 @@ export declare const RUNTIME_ROUTES: {
|
|
|
1216
1245
|
readonly method: "POST";
|
|
1217
1246
|
readonly path: "/sessions/:id/evict";
|
|
1218
1247
|
};
|
|
1248
|
+
/** Workspace files (`workspaces/:id/`). `?path=` is relative to the workspace root. */
|
|
1249
|
+
readonly listFiles: {
|
|
1250
|
+
readonly method: "GET";
|
|
1251
|
+
readonly path: "/sessions/:id/files";
|
|
1252
|
+
};
|
|
1253
|
+
readonly readFile: {
|
|
1254
|
+
readonly method: "GET";
|
|
1255
|
+
readonly path: "/sessions/:id/files/content";
|
|
1256
|
+
};
|
|
1257
|
+
readonly readRawFile: {
|
|
1258
|
+
readonly method: "GET";
|
|
1259
|
+
readonly path: "/sessions/:id/files/raw";
|
|
1260
|
+
};
|
|
1261
|
+
readonly deleteFile: {
|
|
1262
|
+
readonly method: "DELETE";
|
|
1263
|
+
readonly path: "/sessions/:id/files";
|
|
1264
|
+
};
|
|
1219
1265
|
};
|
|
1220
1266
|
export type RuntimeRouteName = keyof typeof RUNTIME_ROUTES;
|
|
1221
1267
|
//# sourceMappingURL=http.d.ts.map
|
package/dist/http.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,MAAM,MAAM,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"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"}
|
package/dist/http.js
CHANGED
|
@@ -42,6 +42,13 @@ export const MetricsResponseSchema = z.object({
|
|
|
42
42
|
lastActivityAt: z.string().nullable(),
|
|
43
43
|
/** Resident set size in bytes. */
|
|
44
44
|
memRss: z.number(),
|
|
45
|
+
/**
|
|
46
|
+
* Container memory budget in bytes (BP_MEM_LIMIT_MB, §R-4). Null when the
|
|
47
|
+
* opt-in budget is unset — i.e. single-user / no in-runtime throttle.
|
|
48
|
+
*/
|
|
49
|
+
memLimitBytes: z.number().nullable(),
|
|
50
|
+
/** memRss / memLimitBytes, or null when no budget is set. */
|
|
51
|
+
memRatio: z.number().nullable(),
|
|
45
52
|
});
|
|
46
53
|
/* ------------------------------------------------------------------ *
|
|
47
54
|
* POST /sessions (create)
|
|
@@ -51,6 +58,10 @@ export const CreateSessionRequestSchema = z.object({
|
|
|
51
58
|
title: z.string().optional(),
|
|
52
59
|
/** Optional caller-supplied id; runtime generates a UUID otherwise. */
|
|
53
60
|
id: z.string().optional(),
|
|
61
|
+
/** Optional provider profile id this session should use (providers.json). */
|
|
62
|
+
providerId: z.string().optional(),
|
|
63
|
+
/** Optional model id within that provider. */
|
|
64
|
+
modelId: z.string().optional(),
|
|
54
65
|
});
|
|
55
66
|
export const CreateSessionResponseSchema = z.object({
|
|
56
67
|
id: z.string(),
|
|
@@ -123,8 +134,12 @@ export const RUNTIME_ROUTES = {
|
|
|
123
134
|
createSession: { method: "POST", path: "/sessions" },
|
|
124
135
|
listSessions: { method: "GET", path: "/sessions" },
|
|
125
136
|
getSession: { method: "GET", path: "/sessions/:id" },
|
|
137
|
+
/** Update session metadata (currently just `title`); persists to meta.json. */
|
|
138
|
+
updateSession: { method: "PUT", path: "/sessions/:id" },
|
|
126
139
|
deleteSession: { method: "DELETE", path: "/sessions/:id" },
|
|
127
140
|
getSessionState: { method: "GET", path: "/sessions/:id/state" },
|
|
141
|
+
/** Graph of Trace (reasoning DAG) for a session. */
|
|
142
|
+
getTrace: { method: "GET", path: "/sessions/:id/trace" },
|
|
128
143
|
sendMessage: { method: "POST", path: "/sessions/:id/messages" },
|
|
129
144
|
/** Canonical AG-UI event stream (§15.4). */
|
|
130
145
|
sessionEvents: { method: "GET", path: "/sse/:id" },
|
|
@@ -133,5 +148,10 @@ export const RUNTIME_ROUTES = {
|
|
|
133
148
|
interrupt: { method: "POST", path: "/sessions/:id/interrupt" },
|
|
134
149
|
listAgents: { method: "GET", path: "/sessions/:id/agents" },
|
|
135
150
|
evictSession: { method: "POST", path: "/sessions/:id/evict" },
|
|
151
|
+
/** Workspace files (`workspaces/:id/`). `?path=` is relative to the workspace root. */
|
|
152
|
+
listFiles: { method: "GET", path: "/sessions/:id/files" },
|
|
153
|
+
readFile: { method: "GET", path: "/sessions/:id/files/content" },
|
|
154
|
+
readRawFile: { method: "GET", path: "/sessions/:id/files/raw" },
|
|
155
|
+
deleteFile: { method: "DELETE", path: "/sessions/:id/files" },
|
|
136
156
|
};
|
|
137
157
|
//# sourceMappingURL=http.js.map
|
package/dist/http.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http.js","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAE,aAAa,EAAE,0BAA0B,EAAE,MAAM,aAAa,CAAC;AAU3F;;wEAEwE;AAExE,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC3D,CAAC,CAAC;AAGH;;wEAEwE;AAExE,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,0EAA0E;IAC1E,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,kCAAkC;IAClC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"http.js","sourceRoot":"","sources":["../src/http.ts"],"names":[],"mappings":"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"}
|