@stigmer/protos 3.9.0 → 3.10.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/ai/stigmer/agentic/agentexecution/v1/query_connect.d.ts +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_connect.js +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_connect.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/query_pb.d.ts +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_pb.js.map +1 -1
- package/ai/stigmer/billing/v1/model_pricing_baseline_pb.d.ts +36 -0
- package/ai/stigmer/billing/v1/model_pricing_baseline_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -58,24 +58,33 @@ export declare const AgentExecutionQueryController: {
|
|
|
58
58
|
readonly kind: any;
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
61
|
-
* Get a presigned download URL for an execution artifact.
|
|
61
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
62
62
|
*
|
|
63
63
|
* Returns a time-limited URL for downloading an artifact published by
|
|
64
|
-
* an agent during execution
|
|
65
|
-
* request without
|
|
64
|
+
* an agent during execution, or an attachment submitted with the
|
|
65
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
66
|
+
* authentication.
|
|
66
67
|
*
|
|
67
68
|
* @internal
|
|
68
69
|
*
|
|
69
70
|
* ## Authorization
|
|
70
71
|
*
|
|
71
72
|
* Requires can_view permission on the execution. This ensures users can
|
|
72
|
-
* only download
|
|
73
|
+
* only download files from executions they have access to.
|
|
73
74
|
*
|
|
74
75
|
* ## Security
|
|
75
76
|
*
|
|
76
77
|
* The storage_key is validated to ensure it belongs to the specified
|
|
77
|
-
* execution.
|
|
78
|
-
*
|
|
78
|
+
* execution. Two key forms are accepted:
|
|
79
|
+
*
|
|
80
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
81
|
+
* the embedded execution id is the ownership proof
|
|
82
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
83
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
84
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
85
|
+
* no execution id
|
|
86
|
+
*
|
|
87
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
79
88
|
*
|
|
80
89
|
* ## URL Expiration
|
|
81
90
|
*
|
|
@@ -86,12 +95,13 @@ export declare const AgentExecutionQueryController: {
|
|
|
86
95
|
*
|
|
87
96
|
* - CLI downloading agent-created files
|
|
88
97
|
* - Web UI providing download links for artifacts
|
|
98
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
89
99
|
* - Refreshing expired download URLs
|
|
90
100
|
*
|
|
91
101
|
* ## Example Flow
|
|
92
102
|
*
|
|
93
103
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
94
|
-
* 2. Find artifact in status.artifacts[]
|
|
104
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
95
105
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
96
106
|
* 4. Use returned download_url for HTTP GET
|
|
97
107
|
*
|
|
@@ -65,24 +65,33 @@ export const AgentExecutionQueryController = {
|
|
|
65
65
|
kind: MethodKind.ServerStreaming,
|
|
66
66
|
},
|
|
67
67
|
/**
|
|
68
|
-
* Get a presigned download URL for an execution artifact.
|
|
68
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
69
69
|
*
|
|
70
70
|
* Returns a time-limited URL for downloading an artifact published by
|
|
71
|
-
* an agent during execution
|
|
72
|
-
* request without
|
|
71
|
+
* an agent during execution, or an attachment submitted with the
|
|
72
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
73
|
+
* authentication.
|
|
73
74
|
*
|
|
74
75
|
* @internal
|
|
75
76
|
*
|
|
76
77
|
* ## Authorization
|
|
77
78
|
*
|
|
78
79
|
* Requires can_view permission on the execution. This ensures users can
|
|
79
|
-
* only download
|
|
80
|
+
* only download files from executions they have access to.
|
|
80
81
|
*
|
|
81
82
|
* ## Security
|
|
82
83
|
*
|
|
83
84
|
* The storage_key is validated to ensure it belongs to the specified
|
|
84
|
-
* execution.
|
|
85
|
-
*
|
|
85
|
+
* execution. Two key forms are accepted:
|
|
86
|
+
*
|
|
87
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
88
|
+
* the embedded execution id is the ownership proof
|
|
89
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
90
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
91
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
92
|
+
* no execution id
|
|
93
|
+
*
|
|
94
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
86
95
|
*
|
|
87
96
|
* ## URL Expiration
|
|
88
97
|
*
|
|
@@ -93,12 +102,13 @@ export const AgentExecutionQueryController = {
|
|
|
93
102
|
*
|
|
94
103
|
* - CLI downloading agent-created files
|
|
95
104
|
* - Web UI providing download links for artifacts
|
|
105
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
96
106
|
* - Refreshing expired download URLs
|
|
97
107
|
*
|
|
98
108
|
* ## Example Flow
|
|
99
109
|
*
|
|
100
110
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
101
|
-
* 2. Find artifact in status.artifacts[]
|
|
111
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
102
112
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
103
113
|
* 4. Use returned download_url for HTTP GET
|
|
104
114
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,sIAAsI;AACtI,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,6BAA6B,EAAE,8BAA8B,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,mCAAmC,EAAE,0BAA0B,EAAE,MAAM,WAAW,CAAC;AAC5gB,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAG;IAC3C,QAAQ,EAAE,oEAAoE;IAC9E,OAAO,EAAE;QACP;;;;WAIG;QACH,GAAG,EAAE;YACH,IAAI,EAAE,KAAK;YACX,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,cAAc;YACjB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,IAAI,EAAE;YACJ,IAAI,EAAE,MAAM;YACZ,CAAC,EAAE,0BAA0B;YAC7B,CAAC,EAAE,kBAAkB;YACrB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;WAQG;QACH,aAAa,EAAE;YACb,IAAI,EAAE,eAAe;YACrB,CAAC,EAAE,mCAAmC;YACtC,CAAC,EAAE,kBAAkB;YACrB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;WAOG;QACH,SAAS,EAAE;YACT,IAAI,EAAE,WAAW;YACjB,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,cAAc;YACjB,IAAI,EAAE,UAAU,CAAC,eAAe;SACjC;QACD
|
|
1
|
+
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_connect.ts"],"names":[],"mappings":"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"}
|
|
@@ -59,24 +59,33 @@ export declare const AgentExecutionQueryController: GenService<{
|
|
|
59
59
|
output: typeof AgentExecutionSchema;
|
|
60
60
|
};
|
|
61
61
|
/**
|
|
62
|
-
* Get a presigned download URL for an execution artifact.
|
|
62
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
63
63
|
*
|
|
64
64
|
* Returns a time-limited URL for downloading an artifact published by
|
|
65
|
-
* an agent during execution
|
|
66
|
-
* request without
|
|
65
|
+
* an agent during execution, or an attachment submitted with the
|
|
66
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
67
|
+
* authentication.
|
|
67
68
|
*
|
|
68
69
|
* @internal
|
|
69
70
|
*
|
|
70
71
|
* ## Authorization
|
|
71
72
|
*
|
|
72
73
|
* Requires can_view permission on the execution. This ensures users can
|
|
73
|
-
* only download
|
|
74
|
+
* only download files from executions they have access to.
|
|
74
75
|
*
|
|
75
76
|
* ## Security
|
|
76
77
|
*
|
|
77
78
|
* The storage_key is validated to ensure it belongs to the specified
|
|
78
|
-
* execution.
|
|
79
|
-
*
|
|
79
|
+
* execution. Two key forms are accepted:
|
|
80
|
+
*
|
|
81
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
82
|
+
* the embedded execution id is the ownership proof
|
|
83
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
84
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
85
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
86
|
+
* no execution id
|
|
87
|
+
*
|
|
88
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
80
89
|
*
|
|
81
90
|
* ## URL Expiration
|
|
82
91
|
*
|
|
@@ -87,12 +96,13 @@ export declare const AgentExecutionQueryController: GenService<{
|
|
|
87
96
|
*
|
|
88
97
|
* - CLI downloading agent-created files
|
|
89
98
|
* - Web UI providing download links for artifacts
|
|
99
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
90
100
|
* - Refreshing expired download URLs
|
|
91
101
|
*
|
|
92
102
|
* ## Example Flow
|
|
93
103
|
*
|
|
94
104
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
95
|
-
* 2. Find artifact in status.artifacts[]
|
|
105
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
96
106
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
97
107
|
* 4. Use returned download_url for HTTP GET
|
|
98
108
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,6CAA6C,EAAE,MAAM,aAAa,CAAC;AAE5E,OAAO,EAAE,4CAA4C,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,o9FAAo9F,EAAE,CAAC,6CAA6C,EAAE,4CAA4C,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAErqG;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,
|
|
1
|
+
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,6CAA6C,EAAE,MAAM,aAAa,CAAC;AAE5E,OAAO,EAAE,4CAA4C,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,o9FAAo9F,EAAE,CAAC,6CAA6C,EAAE,4CAA4C,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAErqG;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAyOrC,aAAa,CAChB,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -141,26 +141,62 @@ export declare const SummarizationConfigSchema: GenMessage<SummarizationConfig>;
|
|
|
141
141
|
/**
|
|
142
142
|
* ModelCapabilities flags what a model supports. Catalog metadata.
|
|
143
143
|
*
|
|
144
|
+
* Presence is tri-state at the block level: an absent block means the
|
|
145
|
+
* model's capabilities were never assessed, and consumers must treat that
|
|
146
|
+
* as "unknown" — never as all-false. A present block is populated
|
|
147
|
+
* all-or-nothing (every flag assessed together), because proto3 bools
|
|
148
|
+
* carry no per-field presence: a partially filled block would silently
|
|
149
|
+
* encode its unassessed flags as false.
|
|
150
|
+
*
|
|
144
151
|
* @generated from message ai.stigmer.billing.v1.ModelCapabilities
|
|
145
152
|
*/
|
|
146
153
|
export type ModelCapabilities = Message<"ai.stigmer.billing.v1.ModelCapabilities"> & {
|
|
147
154
|
/**
|
|
155
|
+
* Whether the model accepts tool / function-calling requests.
|
|
156
|
+
*
|
|
148
157
|
* @generated from field: bool tool_use = 1;
|
|
149
158
|
*/
|
|
150
159
|
toolUse: boolean;
|
|
151
160
|
/**
|
|
161
|
+
* Whether image input delivered to this model produces genuine visual
|
|
162
|
+
* understanding.
|
|
163
|
+
*
|
|
164
|
+
* The meaning is harness-scoped. For native-harness entries this is the
|
|
165
|
+
* provider-documented capability of the model itself. For cursor-harness
|
|
166
|
+
* entries it encodes "images work through this model on the Cursor
|
|
167
|
+
* path": Cursor's serving stack hands vision off to a multimodal model
|
|
168
|
+
* server-side, so a model that is text-only by its own documentation
|
|
169
|
+
* (composer-2.5) still sees images when dispatched via Cursor.
|
|
170
|
+
*
|
|
171
|
+
* @internal
|
|
172
|
+
* Cursor-path values are established empirically — a nonce-bearing image
|
|
173
|
+
* probe per model (production executions, 2026-08-10; evidence table on
|
|
174
|
+
* stigmer-cloud#281, methodology from the whatsapp-media project's T06
|
|
175
|
+
* probe) — because Cursor's own docs under-report: the server-side
|
|
176
|
+
* vision hand-off is undocumented behavior. If Cursor changes that
|
|
177
|
+
* behavior, re-probe; do not re-read the docs. The OSS runner's vision
|
|
178
|
+
* gate (attachment-vision.ts, stigmer#370) fails open — it degrades
|
|
179
|
+
* image delivery only on an explicit false.
|
|
180
|
+
*
|
|
152
181
|
* @generated from field: bool vision = 2;
|
|
153
182
|
*/
|
|
154
183
|
vision: boolean;
|
|
155
184
|
/**
|
|
185
|
+
* Whether the model streams incremental output tokens.
|
|
186
|
+
*
|
|
156
187
|
* @generated from field: bool streaming = 3;
|
|
157
188
|
*/
|
|
158
189
|
streaming: boolean;
|
|
159
190
|
/**
|
|
191
|
+
* Whether the model supports extended thinking / reasoning traces.
|
|
192
|
+
*
|
|
160
193
|
* @generated from field: bool thinking = 4;
|
|
161
194
|
*/
|
|
162
195
|
thinking: boolean;
|
|
163
196
|
/**
|
|
197
|
+
* Whether thinking depth adapts to the request instead of a fixed
|
|
198
|
+
* budget (e.g. Anthropic adaptive thinking).
|
|
199
|
+
*
|
|
164
200
|
* @generated from field: bool adaptive_thinking = 5;
|
|
165
201
|
*/
|
|
166
202
|
adaptiveThinking: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model_pricing_baseline_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/billing/v1/model_pricing_baseline_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yHAAyH;AACzH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAY,aAAa,CACrF,QAAQ,CAAC,owFAAowF,EAAE,CAAC,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA+E/0F;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA0BpE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAgCpE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"model_pricing_baseline_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/billing/v1/model_pricing_baseline_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yHAAyH;AACzH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAY,aAAa,CACrF,QAAQ,CAAC,owFAAowF,EAAE,CAAC,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA+E/0F;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA0BpE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAgCpE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAsEpE;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA6KpE;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAEpE;;;;;;;;;;;GAWG;AACH,MAAM,CAAN,IAAY,0BA4BX;AA5BD,WAAY,0BAA0B;IACpC;;OAEG;IACH,qJAA6C,CAAA;IAE7C;;;;;OAKG;IACH,iHAA2B,CAAA;IAE3B;;;;OAIG;IACH,yHAA+B,CAAA;IAE/B;;;;;OAKG;IACH,mHAA4B,CAAA;AAC9B,CAAC,EA5BW,0BAA0B,KAA1B,0BAA0B,QA4BrC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAwC,aAAa,CAChG,QAAQ,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC"}
|