@stigmer/protos 0.0.56 → 0.0.57
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/api_pb.d.ts +2 -53
- package/ai/stigmer/agentic/agentexecution/v1/api_pb.js +2 -7
- package/ai/stigmer/agentic/agentexecution/v1/api_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.d.ts +10 -0
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.d.ts +7 -52
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.js +2 -1
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/subagent_pb.d.ts +12 -9
- package/ai/stigmer/agentic/agentexecution/v1/subagent_pb.js +2 -2
- package/ai/stigmer/agentic/agentexecution/v1/subagent_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/todo_pb.d.ts +53 -0
- package/ai/stigmer/agentic/agentexecution/v1/todo_pb.js +15 -0
- package/ai/stigmer/agentic/agentexecution/v1/todo_pb.js.map +1 -0
- package/ai/stigmer/agentic/agentexecution/v1/usage_pb.d.ts +8 -0
- package/ai/stigmer/agentic/agentexecution/v1/usage_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/usage_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,11 +2,11 @@ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
|
2
2
|
import type { PendingApproval } from "./approval_pb";
|
|
3
3
|
import type { ExecutionArtifact } from "./artifact_pb";
|
|
4
4
|
import type { ContextInfo, ResolvedExecutionContext } from "./context_pb";
|
|
5
|
-
import type { ExecutionPhase
|
|
5
|
+
import type { ExecutionPhase } from "./enum_pb";
|
|
6
6
|
import type { AgentMessage } from "./message_pb";
|
|
7
7
|
import type { AgentExecutionSpec } from "./spec_pb";
|
|
8
8
|
import type { SubAgentExecution } from "./subagent_pb";
|
|
9
|
-
import type {
|
|
9
|
+
import type { TodoItem } from "./todo_pb";
|
|
10
10
|
import type { WorkspaceWriteBack } from "./writeback_pb";
|
|
11
11
|
import type { ApiResourceMetadata } from "../../../commons/apiresource/metadata_pb";
|
|
12
12
|
import type { ApiResourceAudit } from "../../../commons/apiresource/status_pb";
|
|
@@ -164,14 +164,6 @@ export type AgentExecutionStatus = Message<"ai.stigmer.agentic.agentexecution.v1
|
|
|
164
164
|
* @generated from field: bytes callback_token = 10;
|
|
165
165
|
*/
|
|
166
166
|
callbackToken: Uint8Array;
|
|
167
|
-
/**
|
|
168
|
-
* Token and LLM resource usage for this execution (main agent only).
|
|
169
|
-
* Does NOT include sub-agent usage - sum sub_agent_executions[].usage for total.
|
|
170
|
-
* Updated progressively during streaming for real-time cost visibility.
|
|
171
|
-
*
|
|
172
|
-
* @generated from field: ai.stigmer.agentic.agentexecution.v1.UsageMetrics usage = 11;
|
|
173
|
-
*/
|
|
174
|
-
usage?: UsageMetrics;
|
|
175
167
|
/**
|
|
176
168
|
* Resolved execution context showing what resources the agent had access to.
|
|
177
169
|
* Populated once before streaming begins, after all resources are resolved.
|
|
@@ -302,46 +294,3 @@ export type SetupProgress = Message<"ai.stigmer.agentic.agentexecution.v1.SetupP
|
|
|
302
294
|
* Use `create(SetupProgressSchema)` to create a new message.
|
|
303
295
|
*/
|
|
304
296
|
export declare const SetupProgressSchema: GenMessage<SetupProgress>;
|
|
305
|
-
/**
|
|
306
|
-
* Represents a single item in the agent's todo list.
|
|
307
|
-
* Used by the write_todos tool to track multi-step tasks and progress.
|
|
308
|
-
*
|
|
309
|
-
* @generated from message ai.stigmer.agentic.agentexecution.v1.TodoItem
|
|
310
|
-
*/
|
|
311
|
-
export type TodoItem = Message<"ai.stigmer.agentic.agentexecution.v1.TodoItem"> & {
|
|
312
|
-
/**
|
|
313
|
-
* Unique identifier for this todo item.
|
|
314
|
-
*
|
|
315
|
-
* @generated from field: string id = 1;
|
|
316
|
-
*/
|
|
317
|
-
id: string;
|
|
318
|
-
/**
|
|
319
|
-
* Description of the task to be completed.
|
|
320
|
-
*
|
|
321
|
-
* @generated from field: string content = 2;
|
|
322
|
-
*/
|
|
323
|
-
content: string;
|
|
324
|
-
/**
|
|
325
|
-
* Current status of the todo item.
|
|
326
|
-
*
|
|
327
|
-
* @generated from field: ai.stigmer.agentic.agentexecution.v1.TodoStatus status = 3;
|
|
328
|
-
*/
|
|
329
|
-
status: TodoStatus;
|
|
330
|
-
/**
|
|
331
|
-
* ISO 8601 timestamp when the todo was created.
|
|
332
|
-
*
|
|
333
|
-
* @generated from field: string created_at = 4;
|
|
334
|
-
*/
|
|
335
|
-
createdAt: string;
|
|
336
|
-
/**
|
|
337
|
-
* ISO 8601 timestamp when the todo was last updated.
|
|
338
|
-
*
|
|
339
|
-
* @generated from field: string updated_at = 5;
|
|
340
|
-
*/
|
|
341
|
-
updatedAt: string;
|
|
342
|
-
};
|
|
343
|
-
/**
|
|
344
|
-
* Describes the message ai.stigmer.agentic.agentexecution.v1.TodoItem.
|
|
345
|
-
* Use `create(TodoItemSchema)` to create a new message.
|
|
346
|
-
*/
|
|
347
|
-
export declare const TodoItemSchema: GenMessage<TodoItem>;
|
|
@@ -9,7 +9,7 @@ import { file_ai_stigmer_agentic_agentexecution_v1_enum } from "./enum_pb";
|
|
|
9
9
|
import { file_ai_stigmer_agentic_agentexecution_v1_message } from "./message_pb";
|
|
10
10
|
import { file_ai_stigmer_agentic_agentexecution_v1_spec } from "./spec_pb";
|
|
11
11
|
import { file_ai_stigmer_agentic_agentexecution_v1_subagent } from "./subagent_pb";
|
|
12
|
-
import {
|
|
12
|
+
import { file_ai_stigmer_agentic_agentexecution_v1_todo } from "./todo_pb";
|
|
13
13
|
import { file_ai_stigmer_agentic_agentexecution_v1_writeback } from "./writeback_pb";
|
|
14
14
|
import { file_ai_stigmer_commons_apiresource_metadata } from "../../../commons/apiresource/metadata_pb";
|
|
15
15
|
import { file_ai_stigmer_commons_apiresource_status } from "../../../commons/apiresource/status_pb";
|
|
@@ -17,7 +17,7 @@ import { file_buf_validate_validate } from "../../../../../buf/validate/validate
|
|
|
17
17
|
/**
|
|
18
18
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/api.proto.
|
|
19
19
|
*/
|
|
20
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_api = /*@__PURE__*/ fileDesc("
|
|
20
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_api = /*@__PURE__*/ fileDesc("Ci5haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvYXBpLnByb3RvEiRhaS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEiywIKDkFnZW50RXhlY3V0aW9uEjEKC2FwaV92ZXJzaW9uGAEgASgJQhy6SBlyFwoVYWdlbnRpYy5zdGlnbWVyLmFpL3YxEiMKBGtpbmQYAiABKAlCFbpIEnIQCg5BZ2VudEV4ZWN1dGlvbhJNCghtZXRhZGF0YRgDIAEoCzIzLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZU1ldGFkYXRhQga6SAPIAQESRgoEc3BlYxgEIAEoCzI4LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BZ2VudEV4ZWN1dGlvblNwZWMSSgoGc3RhdHVzGAUgASgLMjouYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50RXhlY3V0aW9uU3RhdHVzIq8IChRBZ2VudEV4ZWN1dGlvblN0YXR1cxI/CgVhdWRpdBhjIAEoCzIwLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZUF1ZGl0EkQKCG1lc3NhZ2VzGAEgAygLMjIuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50TWVzc2FnZRJNCgVwaGFzZRgCIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5FeGVjdXRpb25QaGFzZUIIukgFggECEAESVQoUc3ViX2FnZW50X2V4ZWN1dGlvbnMYBCADKAsyNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuU3ViQWdlbnRFeGVjdXRpb24SDQoFZXJyb3IYBiABKAkSEgoKc3RhcnRlZF9hdBgHIAEoCRIUCgxjb21wbGV0ZWRfYXQYCCABKAkSVAoFdG9kb3MYCSADKAsyRS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQWdlbnRFeGVjdXRpb25TdGF0dXMuVG9kb3NFbnRyeRIWCg5jYWxsYmFja190b2tlbhgKIAEoDBJYChByZXNvbHZlZF9jb250ZXh0GAwgASgLMj4uYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlJlc29sdmVkRXhlY3V0aW9uQ29udGV4dBJQChFwZW5kaW5nX2FwcHJvdmFscxgQIAMoCzI1LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5QZW5kaW5nQXBwcm92YWwSRwoMY29udGV4dF9pbmZvGA4gASgLMjEuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkNvbnRleHRJbmZvEkoKCWFydGlmYWN0cxgPIAMoCzI3LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5FeGVjdXRpb25BcnRpZmFjdBJXChV3b3Jrc3BhY2Vfd3JpdGVfYmFja3MYESADKAsyOC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuV29ya3NwYWNlV3JpdGVCYWNrEksKDnNldHVwX3Byb2dyZXNzGBIgASgLMjMuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlNldHVwUHJvZ3Jlc3MaXAoKVG9kb3NFbnRyeRILCgNrZXkYASABKAkSPQoFdmFsdWUYAiABKAsyLi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuVG9kb0l0ZW06AjgBIiYKDVNldHVwUHJvZ3Jlc3MSFQoNY3VycmVudF9waGFzZRgBIAEoCWIGcHJvdG8z", [file_ai_stigmer_agentic_agentexecution_v1_approval, file_ai_stigmer_agentic_agentexecution_v1_artifact, file_ai_stigmer_agentic_agentexecution_v1_context, file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_agentexecution_v1_message, file_ai_stigmer_agentic_agentexecution_v1_spec, file_ai_stigmer_agentic_agentexecution_v1_subagent, file_ai_stigmer_agentic_agentexecution_v1_todo, file_ai_stigmer_agentic_agentexecution_v1_writeback, file_ai_stigmer_commons_apiresource_metadata, file_ai_stigmer_commons_apiresource_status, file_buf_validate_validate]);
|
|
21
21
|
/**
|
|
22
22
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecution.
|
|
23
23
|
* Use `create(AgentExecutionSchema)` to create a new message.
|
|
@@ -33,9 +33,4 @@ export const AgentExecutionStatusSchema = /*@__PURE__*/ messageDesc(file_ai_stig
|
|
|
33
33
|
* Use `create(SetupProgressSchema)` to create a new message.
|
|
34
34
|
*/
|
|
35
35
|
export const SetupProgressSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_api, 2);
|
|
36
|
-
/**
|
|
37
|
-
* Describes the message ai.stigmer.agentic.agentexecution.v1.TodoItem.
|
|
38
|
-
* Use `create(TodoItemSchema)` to create a new message.
|
|
39
|
-
*/
|
|
40
|
-
export const TodoItemSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_api, 3);
|
|
41
36
|
//# sourceMappingURL=api_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/api_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,oIAAoI;AACpI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"api_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/api_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,oIAAoI;AACpI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,mDAAmD,EAAE,MAAM,gBAAgB,CAAC;AAErF,OAAO,EAAE,4CAA4C,EAAE,MAAM,0CAA0C,CAAC;AAExG,OAAO,EAAE,0CAA0C,EAAE,MAAM,wCAAwC,CAAC;AACpG,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAGrF;;GAEG;AACH,MAAM,CAAC,MAAM,6CAA6C,GAAY,aAAa,CACjF,QAAQ,CAAC,0gEAA0gE,EAAE,CAAC,kDAAkD,EAAE,kDAAkD,EAAE,iDAAiD,EAAE,8CAA8C,EAAE,iDAAiD,EAAE,8CAA8C,EAAE,kDAAkD,EAAE,8CAA8C,EAAE,mDAAmD,EAAE,4CAA4C,EAAE,0CAA0C,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAgDtlF;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,6CAA6C,EAAE,CAAC,CAAC,CAAC;AA2NhE;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,6CAA6C,EAAE,CAAC,CAAC,CAAC;AAsBhE;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,6CAA6C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -111,6 +111,16 @@ export type PendingApproval = Message<"ai.stigmer.agentic.agentexecution.v1.Pend
|
|
|
111
111
|
* @generated from field: string mcp_server_slug = 8;
|
|
112
112
|
*/
|
|
113
113
|
mcpServerSlug: string;
|
|
114
|
+
/**
|
|
115
|
+
* Concise subject/description of the sub-agent's task (3-10 words).
|
|
116
|
+
* Copied from SubAgentExecution.subject when from_sub_agent is true.
|
|
117
|
+
* Enables UI to show a meaningful label like "Explore CLI rendering code"
|
|
118
|
+
* instead of the generic agent type name.
|
|
119
|
+
* Empty when from_sub_agent is false or subject is not available.
|
|
120
|
+
*
|
|
121
|
+
* @generated from field: string sub_agent_subject = 9;
|
|
122
|
+
*/
|
|
123
|
+
subAgentSubject: string;
|
|
114
124
|
};
|
|
115
125
|
/**
|
|
116
126
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.PendingApproval.
|
|
@@ -5,7 +5,7 @@ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/approval.proto.
|
|
7
7
|
*/
|
|
8
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_approval = /*@__PURE__*/ fileDesc("
|
|
8
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_approval = /*@__PURE__*/ fileDesc("CjNhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvYXBwcm92YWwucHJvdG8SJGFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MSLbAQoPUGVuZGluZ0FwcHJvdmFsEhQKDHRvb2xfY2FsbF9pZBgBIAEoCRIRCgl0b29sX25hbWUYAiABKAkSDwoHbWVzc2FnZRgDIAEoCRIUCgxhcmdzX3ByZXZpZXcYBCABKAkSFAoMcmVxdWVzdGVkX2F0GAUgASgJEhYKDmZyb21fc3ViX2FnZW50GAYgASgIEhYKDnN1Yl9hZ2VudF9uYW1lGAcgASgJEhcKD21jcF9zZXJ2ZXJfc2x1ZxgIIAEoCRIZChFzdWJfYWdlbnRfc3ViamVjdBgJIAEoCSKDAQoZQ2hpbGRBcHByb3ZhbE5vdGlmaWNhdGlvbhIUCgxleGVjdXRpb25faWQYASABKAkSUAoRcGVuZGluZ19hcHByb3ZhbHMYAiADKAsyNS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuUGVuZGluZ0FwcHJvdmFsYgZwcm90bzM");
|
|
9
9
|
/**
|
|
10
10
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.PendingApproval.
|
|
11
11
|
* Use `create(PendingApprovalSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approval_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/approval_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,yIAAyI;AACzI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,kDAAkD,GAAY,aAAa,CACtF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"approval_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/approval_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,yIAAyI;AACzI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,kDAAkD,GAAY,aAAa,CACtF,QAAQ,CAAC,imBAAimB,CAAC,CAAC;AAiI9mB;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,kDAAkD,EAAE,CAAC,CAAC,CAAC;AA+DrE;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,kDAAkD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { ApprovalAction, MessageType, ToolCallStatus } from "./enum_pb";
|
|
3
|
+
import type { LlmCallMetrics } from "./usage_pb";
|
|
3
4
|
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
4
5
|
/**
|
|
5
6
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/message.proto.
|
|
@@ -52,60 +53,14 @@ export type AgentMessage = Message<"ai.stigmer.agentic.agentexecution.v1.AgentMe
|
|
|
52
53
|
*/
|
|
53
54
|
isStreaming: boolean;
|
|
54
55
|
/**
|
|
55
|
-
*
|
|
56
|
-
*
|
|
57
|
-
*
|
|
56
|
+
* LLM call metrics for this message.
|
|
57
|
+
* Only populated for type == MESSAGE_AI.
|
|
58
|
+
* Captures the full cost record of the single LLM call that produced this message:
|
|
59
|
+
* token breakdown, estimated cost, model, provider, and duration.
|
|
58
60
|
*
|
|
59
|
-
* @generated from field:
|
|
61
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.LlmCallMetrics llm_metrics = 7;
|
|
60
62
|
*/
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Wall-clock time in milliseconds from first token to completion.
|
|
64
|
-
* Measured from when streaming begins until on_chat_model_end event.
|
|
65
|
-
* Zero until message generation completes.
|
|
66
|
-
*
|
|
67
|
-
* @generated from field: int32 generation_duration_ms = 8;
|
|
68
|
-
*/
|
|
69
|
-
generationDurationMs: number;
|
|
70
|
-
/**
|
|
71
|
-
* Input tokens consumed by the LLM call that generated this message.
|
|
72
|
-
* Only meaningful for type == MESSAGE_AI. Zero for other message types.
|
|
73
|
-
*
|
|
74
|
-
* @generated from field: int32 input_tokens = 9;
|
|
75
|
-
*/
|
|
76
|
-
inputTokens: number;
|
|
77
|
-
/**
|
|
78
|
-
* Output tokens generated for this message.
|
|
79
|
-
* Only meaningful for type == MESSAGE_AI. Zero for other message types.
|
|
80
|
-
*
|
|
81
|
-
* @generated from field: int32 output_tokens = 10;
|
|
82
|
-
*/
|
|
83
|
-
outputTokens: number;
|
|
84
|
-
/**
|
|
85
|
-
* Cache read tokens for the LLM call that generated this message.
|
|
86
|
-
* Non-zero indicates the prompt hit the provider cache, reducing cost.
|
|
87
|
-
* Only meaningful for type == MESSAGE_AI.
|
|
88
|
-
*
|
|
89
|
-
* @generated from field: int32 cache_read_tokens = 11;
|
|
90
|
-
*/
|
|
91
|
-
cacheReadTokens: number;
|
|
92
|
-
/**
|
|
93
|
-
* Estimated cost in USD for this message's LLM call.
|
|
94
|
-
* Only meaningful for type == MESSAGE_AI. Zero for other message types.
|
|
95
|
-
*
|
|
96
|
-
* @generated from field: double estimated_cost_usd = 12;
|
|
97
|
-
*/
|
|
98
|
-
estimatedCostUsd: number;
|
|
99
|
-
/**
|
|
100
|
-
* Model that generated this message.
|
|
101
|
-
* Only meaningful for type == MESSAGE_AI.
|
|
102
|
-
* Useful when model routing is active and different messages may come
|
|
103
|
-
* from different models within the same execution.
|
|
104
|
-
* Example: "claude-sonnet-4-20250514"
|
|
105
|
-
*
|
|
106
|
-
* @generated from field: string model = 13;
|
|
107
|
-
*/
|
|
108
|
-
model: string;
|
|
63
|
+
llmMetrics?: LlmCallMetrics;
|
|
109
64
|
};
|
|
110
65
|
/**
|
|
111
66
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentMessage.
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_agentic_agentexecution_v1_enum } from "./enum_pb";
|
|
6
|
+
import { file_ai_stigmer_agentic_agentexecution_v1_usage } from "./usage_pb";
|
|
6
7
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb";
|
|
7
8
|
import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt";
|
|
8
9
|
/**
|
|
9
10
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/message.proto.
|
|
10
11
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_message = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_message = /*@__PURE__*/ fileDesc("CjJhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvbWVzc2FnZS5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxIs0CCgxBZ2VudE1lc3NhZ2USSQoEdHlwZRgBIAEoDjIxLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5NZXNzYWdlVHlwZUIIukgFggECEAESDwoHY29udGVudBgCIAEoCRIRCgl0aW1lc3RhbXAYAyABKAkSQgoKdG9vbF9jYWxscxgEIAMoCzIuLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Ub29sQ2FsbBIpCghtZXRhZGF0YRgFIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QSFAoMaXNfc3RyZWFtaW5nGAYgASgIEkkKC2xsbV9tZXRyaWNzGAcgASgLMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkxsbUNhbGxNZXRyaWNzItMECghUb29sQ2FsbBIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJEiUKBGFyZ3MYAyABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0Eg4KBnJlc3VsdBgEIAEoCRJOCgZzdGF0dXMYBSABKA4yNC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuVG9vbENhbGxTdGF0dXNCCLpIBYIBAhABElMKEmNvbXBvbmVudF9tZXRhZGF0YRgGIAEoCzI3LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Db21wb25lbnRNZXRhZGF0YRISCgpzdGFydGVkX2F0GAcgASgJEhQKDGNvbXBsZXRlZF9hdBgIIAEoCRINCgVlcnJvchgJIAEoCRIZChFyZXF1aXJlc19hcHByb3ZhbBgKIAEoCBIYChBhcHByb3ZhbF9tZXNzYWdlGAsgASgJEh0KFWFwcHJvdmFsX3JlcXVlc3RlZF9hdBgMIAEoCRIbChNhcHByb3ZhbF9kZWNpZGVkX2F0GA0gASgJEhMKC2FwcHJvdmVkX2J5GA4gASgJEk0KD2FwcHJvdmFsX2FjdGlvbhgPIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BcHByb3ZhbEFjdGlvbhIUCgxpc19zdHJlYW1pbmcYECABKAgSFwoPbWNwX3NlcnZlcl9zbHVnGBEgASgJEhQKDGFyZ3NfcHJldmlldxgSIAEoCSKEAQoRQ29tcG9uZW50TWV0YWRhdGESFgoOY29tcG9uZW50X3R5cGUYASABKAkSFwoPY29tcG9uZW50X2dyb3VwGAIgASgJEhMKC2xheW91dF9oaW50GAMgASgJEikKCG1ldGFkYXRhGAQgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdGIGcHJvdG8z", [file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_agentexecution_v1_usage, file_buf_validate_validate, file_google_protobuf_struct]);
|
|
12
13
|
/**
|
|
13
14
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentMessage.
|
|
14
15
|
* Use `create(AgentMessageSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/message_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,wIAAwI;AACxI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/message_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,wIAAwI;AACxI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,+CAA+C,EAAE,MAAM,YAAY,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAY,aAAa,CACrF,QAAQ,CAAC,shDAAshD,EAAE,CAAC,8CAA8C,EAAE,+CAA+C,EAAE,0BAA0B,EAAE,2BAA2B,CAAC,CAAC,CAAC;AAiE/rD;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAyLpE;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA6CpE;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { SubAgentStatus } from "./enum_pb";
|
|
3
3
|
import type { AgentMessage } from "./message_pb";
|
|
4
|
-
import type {
|
|
4
|
+
import type { TodoItem } from "./todo_pb";
|
|
5
5
|
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
6
6
|
/**
|
|
7
7
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/subagent.proto.
|
|
@@ -86,14 +86,6 @@ export type SubAgentExecution = Message<"ai.stigmer.agentic.agentexecution.v1.Su
|
|
|
86
86
|
* @generated from field: repeated ai.stigmer.agentic.agentexecution.v1.AgentMessage messages = 11;
|
|
87
87
|
*/
|
|
88
88
|
messages: AgentMessage[];
|
|
89
|
-
/**
|
|
90
|
-
* Token and LLM resource usage for this sub-agent execution.
|
|
91
|
-
* Captures only this sub-agent's direct LLM calls.
|
|
92
|
-
* Isolated from main agent and other sub-agents for accurate cost attribution.
|
|
93
|
-
*
|
|
94
|
-
* @generated from field: ai.stigmer.agentic.agentexecution.v1.UsageMetrics usage = 12;
|
|
95
|
-
*/
|
|
96
|
-
usage?: UsageMetrics;
|
|
97
89
|
/**
|
|
98
90
|
* Concise, human-readable summary of the sub-agent's task (3-10 words).
|
|
99
91
|
* Populated directly from the task tool's `description` argument — the short
|
|
@@ -105,6 +97,17 @@ export type SubAgentExecution = Message<"ai.stigmer.agentic.agentexecution.v1.Su
|
|
|
105
97
|
* @generated from field: string subject = 13;
|
|
106
98
|
*/
|
|
107
99
|
subject: string;
|
|
100
|
+
/**
|
|
101
|
+
* Todo list tracking multi-step tasks and progress for this sub-agent.
|
|
102
|
+
* Updated via write_todos tool when called within a sub-agent context.
|
|
103
|
+
* Snapshot replacement semantics: each update carries the full list.
|
|
104
|
+
* Key: todo item ID, Value: todo item details
|
|
105
|
+
*
|
|
106
|
+
* @generated from field: map<string, ai.stigmer.agentic.agentexecution.v1.TodoItem> todos = 14;
|
|
107
|
+
*/
|
|
108
|
+
todos: {
|
|
109
|
+
[key: string]: TodoItem;
|
|
110
|
+
};
|
|
108
111
|
};
|
|
109
112
|
/**
|
|
110
113
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.SubAgentExecution.
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_agentic_agentexecution_v1_enum } from "./enum_pb";
|
|
6
6
|
import { file_ai_stigmer_agentic_agentexecution_v1_message } from "./message_pb";
|
|
7
|
-
import {
|
|
7
|
+
import { file_ai_stigmer_agentic_agentexecution_v1_todo } from "./todo_pb";
|
|
8
8
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb";
|
|
9
9
|
import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt";
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/subagent.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_subagent = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_subagent = /*@__PURE__*/ fileDesc("CjNhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvc3ViYWdlbnQucHJvdG8SJGFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MSKIBAoRU3ViQWdlbnRFeGVjdXRpb24SCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCRINCgVpbnB1dBgDIAEoCRIOCgZvdXRwdXQYBCABKAkSTgoGc3RhdHVzGAUgASgOMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlN1YkFnZW50U3RhdHVzQgi6SAWCAQIQARISCgpzdGFydGVkX2F0GAYgASgJEhQKDGNvbXBsZXRlZF9hdBgHIAEoCRINCgVlcnJvchgIIAEoCRIpCghtZXRhZGF0YRgJIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QSRAoIbWVzc2FnZXMYCyADKAsyMi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQWdlbnRNZXNzYWdlEg8KB3N1YmplY3QYDSABKAkSUQoFdG9kb3MYDiADKAsyQi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuU3ViQWdlbnRFeGVjdXRpb24uVG9kb3NFbnRyeRpcCgpUb2Rvc0VudHJ5EgsKA2tleRgBIAEoCRI9CgV2YWx1ZRgCIAEoCzIuLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Ub2RvSXRlbToCOAFiBnByb3RvMw", [file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_agentexecution_v1_message, file_ai_stigmer_agentic_agentexecution_v1_todo, file_buf_validate_validate, file_google_protobuf_struct]);
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.SubAgentExecution.
|
|
16
16
|
* Use `create(SubAgentExecutionSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subagent_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/subagent_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,yIAAyI;AACzI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"subagent_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/subagent_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,yIAAyI;AACzI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAE3E,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,kDAAkD,GAAY,aAAa,CACtF,QAAQ,CAAC,g0BAAg0B,EAAE,CAAC,8CAA8C,EAAE,iDAAiD,EAAE,8CAA8C,EAAE,0BAA0B,EAAE,2BAA2B,CAAC,CAAC,CAAC;AAkH3hC;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,kDAAkD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { TodoStatus } from "./enum_pb";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file ai/stigmer/agentic/agentexecution/v1/todo.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_ai_stigmer_agentic_agentexecution_v1_todo: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* Represents a single item in the agent's todo list.
|
|
10
|
+
* Used by the write_todos tool to track multi-step tasks and progress.
|
|
11
|
+
*
|
|
12
|
+
* Shared by both AgentExecutionStatus (main agent) and SubAgentExecution
|
|
13
|
+
* (sub-agent), so it lives in its own file to avoid circular imports.
|
|
14
|
+
*
|
|
15
|
+
* @generated from message ai.stigmer.agentic.agentexecution.v1.TodoItem
|
|
16
|
+
*/
|
|
17
|
+
export type TodoItem = Message<"ai.stigmer.agentic.agentexecution.v1.TodoItem"> & {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier for this todo item.
|
|
20
|
+
*
|
|
21
|
+
* @generated from field: string id = 1;
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Description of the task to be completed.
|
|
26
|
+
*
|
|
27
|
+
* @generated from field: string content = 2;
|
|
28
|
+
*/
|
|
29
|
+
content: string;
|
|
30
|
+
/**
|
|
31
|
+
* Current status of the todo item.
|
|
32
|
+
*
|
|
33
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.TodoStatus status = 3;
|
|
34
|
+
*/
|
|
35
|
+
status: TodoStatus;
|
|
36
|
+
/**
|
|
37
|
+
* ISO 8601 timestamp when the todo was created.
|
|
38
|
+
*
|
|
39
|
+
* @generated from field: string created_at = 4;
|
|
40
|
+
*/
|
|
41
|
+
createdAt: string;
|
|
42
|
+
/**
|
|
43
|
+
* ISO 8601 timestamp when the todo was last updated.
|
|
44
|
+
*
|
|
45
|
+
* @generated from field: string updated_at = 5;
|
|
46
|
+
*/
|
|
47
|
+
updatedAt: string;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.TodoItem.
|
|
51
|
+
* Use `create(TodoItemSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export declare const TodoItemSchema: GenMessage<TodoItem>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/agentexecution/v1/todo.proto (package ai.stigmer.agentic.agentexecution.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_agentexecution_v1_enum } from "./enum_pb";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file ai/stigmer/agentic/agentexecution/v1/todo.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_todo = /*@__PURE__*/ fileDesc("Ci9haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvdG9kby5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxIpEBCghUb2RvSXRlbRIKCgJpZBgBIAEoCRIPCgdjb250ZW50GAIgASgJEkAKBnN0YXR1cxgDIAEoDjIwLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Ub2RvU3RhdHVzEhIKCmNyZWF0ZWRfYXQYBCABKAkSEgoKdXBkYXRlZF9hdBgFIAEoCWIGcHJvdG8z", [file_ai_stigmer_agentic_agentexecution_v1_enum]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.TodoItem.
|
|
12
|
+
* Use `create(TodoItemSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const TodoItemSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_todo, 0);
|
|
15
|
+
//# sourceMappingURL=todo_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"todo_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/todo_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,WAAW,CAAC;AAG3E;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,sUAAsU,EAAE,CAAC,8CAA8C,CAAC,CAAC,CAAC;AAgDrY;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -405,6 +405,14 @@ export type LlmCallMetrics = Message<"ai.stigmer.agentic.agentexecution.v1.LlmCa
|
|
|
405
405
|
* @generated from field: string timestamp = 10;
|
|
406
406
|
*/
|
|
407
407
|
timestamp: string;
|
|
408
|
+
/**
|
|
409
|
+
* Total tokens involved in this call. Convenience field for quick reference.
|
|
410
|
+
* Equals: input_tokens + output_tokens + cache_creation_tokens + cache_read_tokens
|
|
411
|
+
* Consistent with UsageMetrics.total_tokens (prompt_tokens + completion_tokens).
|
|
412
|
+
*
|
|
413
|
+
* @generated from field: int32 total_tokens = 11;
|
|
414
|
+
*/
|
|
415
|
+
totalTokens: number;
|
|
408
416
|
};
|
|
409
417
|
/**
|
|
410
418
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.LlmCallMetrics.
|
|
@@ -5,7 +5,7 @@ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/usage.proto.
|
|
7
7
|
*/
|
|
8
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_usage = /*@__PURE__*/ fileDesc("
|
|
8
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_usage = /*@__PURE__*/ fileDesc("CjBhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvdXNhZ2UucHJvdG8SJGFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MSKfBAoMVXNhZ2VNZXRyaWNzEhUKDXByb21wdF90b2tlbnMYASABKAUSGQoRY29tcGxldGlvbl90b2tlbnMYAiABKAUSFAoMdG90YWxfdG9rZW5zGAMgASgFEhYKDmxsbV9jYWxsX2NvdW50GAQgASgFEhUKDXByaW1hcnlfbW9kZWwYBSABKAkSHQoVY2FjaGVfY3JlYXRpb25fdG9rZW5zGAYgASgFEhkKEWNhY2hlX3JlYWRfdG9rZW5zGAcgASgFEkkKD21vZGVsX2JyZWFrZG93bhgIIAMoCzIwLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Nb2RlbFVzYWdlEhoKEmVzdGltYXRlZF9jb3N0X3VzZBgJIAEoARIjCht0b29sX3Jlc3VsdF9jaGFyc190cnVuY2F0ZWQYCiABKAMSRwoJbGxtX2NhbGxzGAsgAygLMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkxsbUNhbGxNZXRyaWNzEhkKEXRvdGFsX2R1cmF0aW9uX21zGAwgASgFEhcKD2xsbV9kdXJhdGlvbl9tcxgNIAEoBRIYChB0b29sX2R1cmF0aW9uX21zGA4gASgFEiEKGWFwcHJvdmFsX3dhaXRfZHVyYXRpb25fbXMYDyABKAUSGAoQcHJpbWFyeV9wcm92aWRlchgQIAEoCSLXAgoKTW9kZWxVc2FnZRINCgVtb2RlbBgBIAEoCRIQCghwcm92aWRlchgCIAEoCRIUCgxpbnB1dF90b2tlbnMYAyABKAUSFQoNb3V0cHV0X3Rva2VucxgEIAEoBRIdChVjYWNoZV9jcmVhdGlvbl90b2tlbnMYBSABKAUSGQoRY2FjaGVfcmVhZF90b2tlbnMYBiABKAUSEgoKY2FsbF9jb3VudBgHIAEoBRIfChdpbnB1dF9wcmljZV9wZXJfbWlsbGlvbhgIIAEoARIgChhvdXRwdXRfcHJpY2VfcGVyX21pbGxpb24YCSABKAESKAogY2FjaGVfY3JlYXRpb25fcHJpY2VfcGVyX21pbGxpb24YCiABKAESJAocY2FjaGVfcmVhZF9wcmljZV9wZXJfbWlsbGlvbhgLIAEoARIaChJlc3RpbWF0ZWRfY29zdF91c2QYDCABKAEihAIKDkxsbUNhbGxNZXRyaWNzEhAKCHNlcXVlbmNlGAEgASgFEg0KBW1vZGVsGAIgASgJEhAKCHByb3ZpZGVyGAMgASgJEhQKDGlucHV0X3Rva2VucxgEIAEoBRIVCg1vdXRwdXRfdG9rZW5zGAUgASgFEh0KFWNhY2hlX2NyZWF0aW9uX3Rva2VucxgGIAEoBRIZChFjYWNoZV9yZWFkX3Rva2VucxgHIAEoBRIaChJlc3RpbWF0ZWRfY29zdF91c2QYCCABKAESEwoLZHVyYXRpb25fbXMYCSABKAUSEQoJdGltZXN0YW1wGAogASgJEhQKDHRvdGFsX3Rva2VucxgLIAEoBWIGcHJvdG8z");
|
|
9
9
|
/**
|
|
10
10
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.UsageMetrics.
|
|
11
11
|
* Use `create(UsageMetricsSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usage_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/usage_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"usage_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/usage_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGrE;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,soDAAsoD,CAAC,CAAC;AA4MnpD;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC;AAuIlE;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC;AA0GlE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC"}
|