@iqai/adk 0.1.4 → 0.1.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/index.mjs CHANGED
@@ -26,8 +26,9 @@ var __copyProps = (to, from, except, desc) => {
26
26
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
27
 
28
28
  // src/helpers/logger.ts
29
+ import chalk from "chalk";
29
30
  function isDebugEnabled() {
30
- return process.env.NODE_ENV === "development" || process.env.DEBUG === "true";
31
+ return process.env.NODE_ENV === "development" || process.env.ADK_DEBUG === "true";
31
32
  }
32
33
  var Logger;
33
34
  var init_logger = __esm({
@@ -38,34 +39,99 @@ var init_logger = __esm({
38
39
  constructor({ name }) {
39
40
  this.name = name;
40
41
  }
42
+ colorize(message) {
43
+ return chalk.blue(message);
44
+ }
41
45
  debug(message, ...args) {
42
- const time = (/* @__PURE__ */ new Date()).toISOString();
43
46
  if (this.isDebugEnabled) {
44
- console.log(`[${time}] \u{1F41B} [DEBUG] \u2728 [${this.name}] ${message}`, ...args);
47
+ const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
48
+ console.log(
49
+ this.colorize(`[${time}] \u{1F41B} [${this.name}] ${message}`),
50
+ ...args
51
+ );
45
52
  }
46
53
  }
47
54
  info(message, ...args) {
48
- const time = (/* @__PURE__ */ new Date()).toISOString();
49
- console.info(`[${time}] \u2139\uFE0F [INFO] \u2728 [${this.name}] ${message}`, ...args);
55
+ const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
56
+ console.info(
57
+ this.colorize(`[${time}] \u2139\uFE0F [${this.name}] ${message}`),
58
+ ...args
59
+ );
50
60
  }
51
61
  warn(message, ...args) {
52
- const time = (/* @__PURE__ */ new Date()).toISOString();
53
- console.warn(`[${time}] \u{1F6A7} [WARN] \u2728 [${this.name}] ${message}`, ...args);
62
+ const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
63
+ console.warn(
64
+ this.colorize(`[${time}] \u{1F6A7} [${this.name}] ${message}`),
65
+ ...args
66
+ );
54
67
  }
55
68
  error(message, ...args) {
56
- const time = (/* @__PURE__ */ new Date()).toISOString();
57
- console.error(`[${time}] \u274C [ERROR] \u2728 [${this.name}] ${message}`, ...args);
69
+ const time = (/* @__PURE__ */ new Date()).toLocaleTimeString();
70
+ console.error(
71
+ this.colorize(`[${time}] \u274C [${this.name}] ${message}`),
72
+ ...args
73
+ );
74
+ }
75
+ /**
76
+ * Logs structured data in a visually appealing table format.
77
+ * Uses vertical layout for better readability and respects debug settings.
78
+ */
79
+ debugStructured(title, data) {
80
+ if (!this.isDebugEnabled) return;
81
+ const terminalWidth = process.stdout.columns || 60;
82
+ const width = Math.min(terminalWidth, 100);
83
+ const contentWidth = width - 4;
84
+ const topBorder = `\u250C${"\u2500".repeat(width - 2)}\u2510`;
85
+ const bottomBorder = `\u2514${"\u2500".repeat(width - 2)}\u2518`;
86
+ const middleBorder = `\u251C${"\u2500".repeat(width - 2)}\u2524`;
87
+ console.log(this.colorize(topBorder));
88
+ console.log(this.colorize(`\u2502 ${title.padEnd(contentWidth)} \u2502`));
89
+ console.log(this.colorize(middleBorder));
90
+ Object.entries(data).forEach(([key, value]) => {
91
+ const formattedKey = key.padEnd(20);
92
+ const formattedValue = String(value);
93
+ const availableValueSpace = contentWidth - 20 - 2;
94
+ const truncatedValue = formattedValue.length > availableValueSpace ? `${formattedValue.substring(0, availableValueSpace - 3)}...` : formattedValue;
95
+ const content = `${formattedKey}: ${truncatedValue}`;
96
+ const paddedContent = content.padEnd(contentWidth);
97
+ console.log(this.colorize(`\u2502 ${paddedContent} \u2502`));
98
+ });
99
+ console.log(this.colorize(bottomBorder));
100
+ }
101
+ /**
102
+ * Logs array data in a compact, readable format.
103
+ */
104
+ debugArray(title, items) {
105
+ if (!this.isDebugEnabled) return;
106
+ const terminalWidth = process.stdout.columns || 78;
107
+ const width = Math.min(terminalWidth, 120);
108
+ const contentWidth = width - 4;
109
+ const topBorder = `\u250C${"\u2500".repeat(width - 2)}\u2510`;
110
+ const bottomBorder = `\u2514${"\u2500".repeat(width - 2)}\u2518`;
111
+ const middleBorder = `\u251C${"\u2500".repeat(width - 2)}\u2524`;
112
+ console.log(this.colorize(topBorder));
113
+ console.log(this.colorize(`\u2502 ${title.padEnd(contentWidth)} \u2502`));
114
+ console.log(this.colorize(middleBorder));
115
+ items.forEach((item, index) => {
116
+ const itemStr = Object.entries(item).map(([k, v]) => `${k}: ${v}`).join(" \u2022 ");
117
+ const indexPart = `[${index + 1}] `;
118
+ const availableSpace = contentWidth - indexPart.length;
119
+ const truncatedItem = itemStr.length > availableSpace ? `${itemStr.substring(0, availableSpace - 3)}...` : itemStr;
120
+ const content = `${indexPart}${truncatedItem}`;
121
+ const paddedContent = content.padEnd(contentWidth);
122
+ console.log(this.colorize(`\u2502 ${paddedContent} \u2502`));
123
+ });
124
+ console.log(this.colorize(bottomBorder));
58
125
  }
59
126
  };
60
127
  }
61
128
  });
62
129
 
63
130
  // src/tools/base/base-tool.ts
64
- var logger6, BaseTool;
131
+ var BaseTool;
65
132
  var init_base_tool = __esm({
66
133
  "src/tools/base/base-tool.ts"() {
67
134
  init_logger();
68
- logger6 = new Logger({ name: "BaseTool" });
69
135
  BaseTool = class {
70
136
  /**
71
137
  * Name of the tool
@@ -96,6 +162,7 @@ var init_base_tool = __esm({
96
162
  * Maximum delay for retry in ms
97
163
  */
98
164
  maxRetryDelay = 1e4;
165
+ logger = new Logger({ name: "BaseTool" });
99
166
  /**
100
167
  * Constructor for BaseTool
101
168
  */
@@ -226,7 +293,7 @@ var init_base_tool = __esm({
226
293
  while (attempts <= (this.shouldRetryOnFailure ? this.maxRetryAttempts : 0)) {
227
294
  try {
228
295
  if (attempts > 0) {
229
- logger6.debug(
296
+ this.logger.debug(
230
297
  `Retrying tool ${this.name} (attempt ${attempts} of ${this.maxRetryAttempts})...`
231
298
  );
232
299
  const delay = Math.min(
@@ -613,6 +680,7 @@ __export(agents_exports, {
613
680
  // src/models/index.ts
614
681
  var models_exports = {};
615
682
  __export(models_exports, {
683
+ AiSdkLlm: () => AiSdkLlm,
616
684
  AnthropicLlm: () => AnthropicLlm,
617
685
  ApiKeyCredential: () => ApiKeyCredential,
618
686
  ApiKeyScheme: () => ApiKeyScheme,
@@ -640,8 +708,6 @@ __export(models_exports, {
640
708
  });
641
709
 
642
710
  // src/models/llm-request.ts
643
- init_logger();
644
- var logger = new Logger({ name: "LlmRequest" });
645
711
  var LlmRequest = class {
646
712
  /**
647
713
  * The model name.
@@ -805,6 +871,10 @@ var LlmResponse = class _LlmResponse {
805
871
  * Reason why the model finished generating.
806
872
  */
807
873
  finishReason;
874
+ /**
875
+ * Error object if the response is an error.
876
+ */
877
+ error;
808
878
  /**
809
879
  * Creates a new LlmResponse.
810
880
  */
@@ -848,6 +918,29 @@ var LlmResponse = class _LlmResponse {
848
918
  usageMetadata
849
919
  });
850
920
  }
921
+ /**
922
+ * Creates an LlmResponse from an error.
923
+ *
924
+ * @param error The error object or message.
925
+ * @param options Additional options for the error response.
926
+ * @param options.errorCode A specific error code for the response.
927
+ * @param options.model The model that was being used when the error occurred.
928
+ * @returns The LlmResponse.
929
+ */
930
+ static fromError(error, options = {}) {
931
+ const errorMessage = error instanceof Error ? error.message : String(error);
932
+ const errorCode = options.errorCode || "UNKNOWN_ERROR";
933
+ return new _LlmResponse({
934
+ errorCode,
935
+ errorMessage: `LLM call failed for model ${options.model || "unknown"}: ${errorMessage}`,
936
+ content: {
937
+ role: "model",
938
+ parts: [{ text: `Error: ${errorMessage}` }]
939
+ },
940
+ finishReason: "STOP",
941
+ error: error instanceof Error ? error : new Error(errorMessage)
942
+ });
943
+ }
851
944
  };
852
945
 
853
946
  // src/models/base-llm.ts
@@ -1127,12 +1220,12 @@ var traceLlmCall = (invocationContext, eventId, llmRequest, llmResponse) => tele
1127
1220
  );
1128
1221
 
1129
1222
  // src/models/base-llm.ts
1130
- var logger2 = new Logger({ name: "BaseLlm" });
1131
1223
  var BaseLlm = class {
1132
1224
  /**
1133
1225
  * The name of the LLM, e.g. gemini-1.5-flash or gemini-1.5-flash-001.
1134
1226
  */
1135
1227
  model;
1228
+ logger = new Logger({ name: "BaseLlm" });
1136
1229
  /**
1137
1230
  * Constructor for BaseLlm
1138
1231
  */
@@ -1183,12 +1276,6 @@ var BaseLlm = class {
1183
1276
  }),
1184
1277
  "adk.streaming": stream || false
1185
1278
  });
1186
- logger2.debug("ADK LLM Request:", {
1187
- model: this.model,
1188
- contentCount: llmRequest.contents?.length || 0,
1189
- streaming: stream || false,
1190
- config: llmRequest.config
1191
- });
1192
1279
  let responseCount = 0;
1193
1280
  let totalTokens = 0;
1194
1281
  for await (const response of this.generateContentAsyncImpl(
@@ -1196,14 +1283,6 @@ var BaseLlm = class {
1196
1283
  stream
1197
1284
  )) {
1198
1285
  responseCount++;
1199
- logger2.debug(`ADK LLM Response ${responseCount}:`, {
1200
- model: this.model,
1201
- parts: response.parts?.map((part) => ({
1202
- text: typeof part.text === "string" ? part.text.substring(0, 200) + (part.text.length > 200 ? "..." : "") : "[non_text_content]"
1203
- })),
1204
- finishReason: response.finish_reason,
1205
- usage: response.usage
1206
- });
1207
1286
  if (response.usage) {
1208
1287
  totalTokens += response.usage.total_tokens || 0;
1209
1288
  span.setAttributes({
@@ -1224,7 +1303,7 @@ var BaseLlm = class {
1224
1303
  } catch (error) {
1225
1304
  span.recordException(error);
1226
1305
  span.setStatus({ code: 2, message: error.message });
1227
- console.error("\u274C ADK LLM Error:", {
1306
+ this.logger.error("\u274C ADK LLM Error:", {
1228
1307
  model: this.model,
1229
1308
  error: error.message
1230
1309
  });
@@ -1280,13 +1359,10 @@ var BaseLLMConnection = class {
1280
1359
  };
1281
1360
 
1282
1361
  // src/models/google-llm.ts
1283
- init_logger();
1284
1362
  import {
1285
1363
  FinishReason,
1286
1364
  GoogleGenAI
1287
1365
  } from "@google/genai";
1288
- import dedent from "dedent";
1289
- var NEW_LINE = "\n";
1290
1366
  var AGENT_ENGINE_TELEMETRY_TAG = "remote_reasoning_engine";
1291
1367
  var AGENT_ENGINE_TELEMETRY_ENV_VARIABLE_NAME = "GOOGLE_CLOUD_AGENT_ENGINE_ID";
1292
1368
  var GoogleLlm = class extends BaseLlm {
@@ -1294,7 +1370,6 @@ var GoogleLlm = class extends BaseLlm {
1294
1370
  _liveApiClient;
1295
1371
  _apiBackend;
1296
1372
  _trackingHeaders;
1297
- logger = new Logger({ name: "GoogleLlm" });
1298
1373
  /**
1299
1374
  * Constructor for Gemini
1300
1375
  */
@@ -1318,10 +1393,6 @@ var GoogleLlm = class extends BaseLlm {
1318
1393
  */
1319
1394
  async *generateContentAsyncImpl(llmRequest, stream = false) {
1320
1395
  this.preprocessRequest(llmRequest);
1321
- this.logger.debug(
1322
- `Sending out request, model: ${llmRequest.model || this.model}, backend: ${this.apiBackend}, stream: ${stream}`
1323
- );
1324
- this.logger.debug(this.buildRequestLog(llmRequest));
1325
1396
  const model = llmRequest.model || this.model;
1326
1397
  const contents = this.convertContents(llmRequest.contents || []);
1327
1398
  const config = this.convertConfig(llmRequest.config);
@@ -1337,7 +1408,6 @@ var GoogleLlm = class extends BaseLlm {
1337
1408
  let usageMetadata = null;
1338
1409
  for await (const resp of responses) {
1339
1410
  response = resp;
1340
- this.logger.debug(this.buildResponseLog(resp));
1341
1411
  const llmResponse = LlmResponse.create(resp);
1342
1412
  usageMetadata = llmResponse.usageMetadata;
1343
1413
  if (llmResponse.content?.parts?.[0]?.text) {
@@ -1390,8 +1460,11 @@ var GoogleLlm = class extends BaseLlm {
1390
1460
  contents,
1391
1461
  config
1392
1462
  });
1393
- this.logger.debug(this.buildResponseLog(response));
1394
- yield LlmResponse.create(response);
1463
+ const llmResponse = LlmResponse.create(response);
1464
+ this.logger.debug(
1465
+ `Google response: ${llmResponse.usageMetadata?.candidatesTokenCount || 0} tokens`
1466
+ );
1467
+ yield llmResponse;
1395
1468
  }
1396
1469
  }
1397
1470
  /**
@@ -1466,60 +1539,6 @@ var GoogleLlm = class extends BaseLlm {
1466
1539
  }
1467
1540
  return `${funcDecl.name}: ${paramStr}`;
1468
1541
  }
1469
- /**
1470
- * Builds request log string.
1471
- */
1472
- buildRequestLog(req) {
1473
- const functionDecls = req.config?.tools?.[0]?.functionDeclarations || [];
1474
- const functionLogs = functionDecls.length > 0 ? functionDecls.map(
1475
- (funcDecl) => this.buildFunctionDeclarationLog(funcDecl)
1476
- ) : [];
1477
- const contentsLogs = req.contents?.map(
1478
- (content) => JSON.stringify(content, (key, value) => {
1479
- if (key === "data" && typeof value === "string" && value.length > 100) {
1480
- return "[EXCLUDED]";
1481
- }
1482
- return value;
1483
- })
1484
- ) || [];
1485
- return dedent`
1486
- LLM Request:
1487
- -----------------------------------------------------------
1488
- System Instruction:
1489
- ${req.config?.systemInstruction || ""}
1490
- -----------------------------------------------------------
1491
- Contents:
1492
- ${contentsLogs.join(NEW_LINE)}
1493
- -----------------------------------------------------------
1494
- Functions:
1495
- ${functionLogs.join(NEW_LINE)}
1496
- -----------------------------------------------------------`;
1497
- }
1498
- /**
1499
- * Builds response log string.
1500
- */
1501
- buildResponseLog(resp) {
1502
- const functionCallsText = [];
1503
- if (resp.functionCalls) {
1504
- for (const funcCall of resp.functionCalls) {
1505
- functionCallsText.push(
1506
- `name: ${funcCall.name}, args: ${JSON.stringify(funcCall.args)}`
1507
- );
1508
- }
1509
- }
1510
- return dedent`
1511
- LLM Response:
1512
- -----------------------------------------------------------
1513
- Text:
1514
- ${resp.text || ""}
1515
- -----------------------------------------------------------
1516
- Function calls:
1517
- ${functionCallsText.join(NEW_LINE)}
1518
- -----------------------------------------------------------
1519
- Raw response:
1520
- ${JSON.stringify(resp, null, 2)}
1521
- -----------------------------------------------------------`;
1522
- }
1523
1542
  /**
1524
1543
  * Provides the api client.
1525
1544
  */
@@ -1613,10 +1632,10 @@ var GoogleLlm = class extends BaseLlm {
1613
1632
  // src/models/anthropic-llm.ts
1614
1633
  init_logger();
1615
1634
  import Anthropic from "@anthropic-ai/sdk";
1616
- var logger3 = new Logger({ name: "AnthropicLlm" });
1617
1635
  var MAX_TOKENS = 1024;
1618
1636
  var AnthropicLlm = class extends BaseLlm {
1619
1637
  _client;
1638
+ logger = new Logger({ name: "AnthropicLlm" });
1620
1639
  /**
1621
1640
  * Constructor for Anthropic LLM
1622
1641
  */
@@ -1633,9 +1652,6 @@ var AnthropicLlm = class extends BaseLlm {
1633
1652
  * Main content generation method - handles both streaming and non-streaming
1634
1653
  */
1635
1654
  async *generateContentAsyncImpl(llmRequest, stream = false) {
1636
- logger3.debug(
1637
- `Sending Anthropic request, model: ${llmRequest.model || this.model}, stream: ${stream}`
1638
- );
1639
1655
  const model = llmRequest.model || this.model;
1640
1656
  const messages = (llmRequest.contents || []).map(
1641
1657
  (content) => this.contentToAnthropicMessage(content)
@@ -1679,7 +1695,9 @@ var AnthropicLlm = class extends BaseLlm {
1679
1695
  * Convert Anthropic Message to ADK LlmResponse
1680
1696
  */
1681
1697
  anthropicMessageToLlmResponse(message) {
1682
- logger3.debug("Anthropic response:", JSON.stringify(message, null, 2));
1698
+ this.logger.debug(
1699
+ `Anthropic response: ${message.usage.output_tokens} tokens, ${message.stop_reason}`
1700
+ );
1683
1701
  return new LlmResponse({
1684
1702
  content: {
1685
1703
  role: "model",
@@ -1836,11 +1854,7 @@ var AnthropicLlm = class extends BaseLlm {
1836
1854
  };
1837
1855
 
1838
1856
  // src/models/openai-llm.ts
1839
- init_logger();
1840
- import dedent2 from "dedent";
1841
1857
  import OpenAI from "openai";
1842
- var logger4 = new Logger({ name: "OpenAiLlm" });
1843
- var NEW_LINE2 = "\n";
1844
1858
  var OpenAiLlm = class extends BaseLlm {
1845
1859
  _client;
1846
1860
  /**
@@ -1860,10 +1874,6 @@ var OpenAiLlm = class extends BaseLlm {
1860
1874
  */
1861
1875
  async *generateContentAsyncImpl(llmRequest, stream = false) {
1862
1876
  this.preprocessRequest(llmRequest);
1863
- logger4.debug(
1864
- `Sending OpenAI request, model: ${llmRequest.model || this.model}, stream: ${stream}`
1865
- );
1866
- logger4.debug(this.buildRequestLog(llmRequest));
1867
1877
  const model = llmRequest.model || this.model;
1868
1878
  const messages = (llmRequest.contents || []).map(
1869
1879
  (content) => this.contentToOpenAiMessage(content)
@@ -1905,12 +1915,10 @@ var OpenAiLlm = class extends BaseLlm {
1905
1915
  const choice = chunk.choices[0];
1906
1916
  if (!choice) continue;
1907
1917
  const delta = choice.delta;
1908
- logger4.debug("Delta content:", delta.content);
1909
1918
  const llmResponse = this.createChunkResponse(delta, chunk.usage);
1910
1919
  if (chunk.usage) {
1911
1920
  usageMetadata = chunk.usage;
1912
1921
  }
1913
- logger4.debug(this.buildResponseLog(llmResponse));
1914
1922
  if (llmResponse.content?.parts?.[0]?.text) {
1915
1923
  const part0 = llmResponse.content.parts[0];
1916
1924
  if (part0.thought) {
@@ -1993,7 +2001,6 @@ var OpenAiLlm = class extends BaseLlm {
1993
2001
  } : void 0,
1994
2002
  finishReason: this.toAdkFinishReason(choice.finish_reason)
1995
2003
  });
1996
- logger4.debug(this.buildResponseLog(finalResponse));
1997
2004
  yield finalResponse;
1998
2005
  } else {
1999
2006
  yield llmResponse;
@@ -2030,7 +2037,9 @@ var OpenAiLlm = class extends BaseLlm {
2030
2037
  choice,
2031
2038
  response.usage
2032
2039
  );
2033
- logger4.debug(this.buildResponseLog(llmResponse));
2040
+ this.logger.debug(
2041
+ `OpenAI response: ${response.usage?.completion_tokens || 0} tokens`
2042
+ );
2034
2043
  yield llmResponse;
2035
2044
  }
2036
2045
  }
@@ -2084,10 +2093,6 @@ var OpenAiLlm = class extends BaseLlm {
2084
2093
  */
2085
2094
  openAiMessageToLlmResponse(choice, usage) {
2086
2095
  const message = choice.message;
2087
- logger4.debug(
2088
- "OpenAI response:",
2089
- JSON.stringify({ message, usage }, null, 2)
2090
- );
2091
2096
  const parts = [];
2092
2097
  if (message.content) {
2093
2098
  parts.push({ text: message.content });
@@ -2276,67 +2281,6 @@ var OpenAiLlm = class extends BaseLlm {
2276
2281
  const parts = response.content?.parts;
2277
2282
  return parts?.some((part) => part.inlineData) || false;
2278
2283
  }
2279
- /**
2280
- * Build request log string for debugging (similar to Google LLM)
2281
- */
2282
- buildRequestLog(req) {
2283
- const functionDecls = req.config?.tools?.[0]?.functionDeclarations || [];
2284
- const functionLogs = functionDecls.length > 0 ? functionDecls.map(
2285
- (funcDecl) => `${funcDecl.name}: ${JSON.stringify(funcDecl.parameters?.properties || {})}`
2286
- ) : [];
2287
- const contentsLogs = req.contents?.map(
2288
- (content) => JSON.stringify(content, (key, value) => {
2289
- if (key === "data" && typeof value === "string" && value.length > 100) {
2290
- return "[EXCLUDED]";
2291
- }
2292
- return value;
2293
- })
2294
- ) || [];
2295
- return dedent2`
2296
- LLM Request:
2297
- -----------------------------------------------------------
2298
- System Instruction:
2299
- ${req.getSystemInstructionText() || ""}
2300
- -----------------------------------------------------------
2301
- Contents:
2302
- ${contentsLogs.join(NEW_LINE2)}
2303
- -----------------------------------------------------------
2304
- Functions:
2305
- ${functionLogs.join(NEW_LINE2)}
2306
- -----------------------------------------------------------`;
2307
- }
2308
- /**
2309
- * Build response log string for debugging (similar to Google LLM)
2310
- */
2311
- buildResponseLog(response) {
2312
- const functionCallsText = [];
2313
- if (response.content?.parts) {
2314
- for (const part of response.content.parts) {
2315
- if (part.functionCall) {
2316
- const funcCall = part.functionCall;
2317
- functionCallsText.push(
2318
- `name: ${funcCall.name}, args: ${JSON.stringify(funcCall.args)}`
2319
- );
2320
- }
2321
- }
2322
- }
2323
- const text = response.content?.parts?.filter((part) => part.text)?.map((part) => part.text)?.join("") || "";
2324
- return dedent2`
2325
- LLM Response:
2326
- -----------------------------------------------------------
2327
- Text:
2328
- ${text}
2329
- -----------------------------------------------------------
2330
- Function calls:
2331
- ${functionCallsText.join(NEW_LINE2)}
2332
- -----------------------------------------------------------
2333
- Usage:
2334
- ${JSON.stringify(response.usageMetadata, null, 2)}
2335
- -----------------------------------------------------------
2336
- Finish Reason:
2337
- ${response.finishReason}
2338
- -----------------------------------------------------------`;
2339
- }
2340
2284
  /**
2341
2285
  * Gets the OpenAI client
2342
2286
  */
@@ -2356,14 +2300,289 @@ var OpenAiLlm = class extends BaseLlm {
2356
2300
  }
2357
2301
  };
2358
2302
 
2303
+ // src/models/ai-sdk.ts
2304
+ init_logger();
2305
+ import {
2306
+ generateText,
2307
+ jsonSchema,
2308
+ streamText
2309
+ } from "ai";
2310
+ var AiSdkLlm = class extends BaseLlm {
2311
+ modelInstance;
2312
+ logger = new Logger({ name: "AiSdkLlm" });
2313
+ /**
2314
+ * Constructor accepts a pre-configured LanguageModel instance
2315
+ * @param model - Pre-configured LanguageModel from provider(modelName)
2316
+ */
2317
+ constructor(modelInstance) {
2318
+ super(modelInstance.modelId || "ai-sdk-model");
2319
+ this.modelInstance = modelInstance;
2320
+ }
2321
+ /**
2322
+ * Returns empty array - following Python ADK pattern
2323
+ */
2324
+ static supportedModels() {
2325
+ return [];
2326
+ }
2327
+ async *generateContentAsyncImpl(request, stream = false) {
2328
+ try {
2329
+ const messages = this.convertToAiSdkMessages(request);
2330
+ const systemMessage = request.getSystemInstructionText();
2331
+ const tools = this.convertToAiSdkTools(request);
2332
+ const requestParams = {
2333
+ model: this.modelInstance,
2334
+ messages,
2335
+ system: systemMessage,
2336
+ tools: Object.keys(tools).length > 0 ? tools : void 0,
2337
+ maxTokens: request.config?.maxOutputTokens,
2338
+ temperature: request.config?.temperature,
2339
+ topP: request.config?.topP
2340
+ };
2341
+ if (stream) {
2342
+ const result = streamText(requestParams);
2343
+ let accumulatedText = "";
2344
+ for await (const delta of result.textStream) {
2345
+ accumulatedText += delta;
2346
+ yield new LlmResponse({
2347
+ content: {
2348
+ role: "model",
2349
+ parts: [{ text: accumulatedText }]
2350
+ },
2351
+ partial: true
2352
+ });
2353
+ }
2354
+ const toolCalls = await result.toolCalls;
2355
+ const parts = [];
2356
+ if (accumulatedText) {
2357
+ parts.push({ text: accumulatedText });
2358
+ }
2359
+ if (toolCalls && toolCalls.length > 0) {
2360
+ for (const toolCall of toolCalls) {
2361
+ parts.push({
2362
+ functionCall: {
2363
+ id: toolCall.toolCallId,
2364
+ name: toolCall.toolName,
2365
+ args: toolCall.args
2366
+ }
2367
+ });
2368
+ }
2369
+ }
2370
+ const finalUsage = await result.usage;
2371
+ const finishReason = await result.finishReason;
2372
+ yield new LlmResponse({
2373
+ content: {
2374
+ role: "model",
2375
+ parts: parts.length > 0 ? parts : [{ text: "" }]
2376
+ },
2377
+ usageMetadata: finalUsage ? {
2378
+ promptTokenCount: finalUsage.promptTokens,
2379
+ candidatesTokenCount: finalUsage.completionTokens,
2380
+ totalTokenCount: finalUsage.totalTokens
2381
+ } : void 0,
2382
+ finishReason: this.mapFinishReason(finishReason),
2383
+ turnComplete: true
2384
+ });
2385
+ } else {
2386
+ const result = await generateText(requestParams);
2387
+ const parts = [];
2388
+ if (result.text) {
2389
+ parts.push({ text: result.text });
2390
+ }
2391
+ if (result.toolCalls && result.toolCalls.length > 0) {
2392
+ for (const toolCall of result.toolCalls) {
2393
+ parts.push({
2394
+ functionCall: {
2395
+ id: toolCall.toolCallId,
2396
+ name: toolCall.toolName,
2397
+ args: toolCall.args
2398
+ }
2399
+ });
2400
+ }
2401
+ }
2402
+ yield new LlmResponse({
2403
+ content: {
2404
+ role: "model",
2405
+ parts: parts.length > 0 ? parts : [{ text: "" }]
2406
+ },
2407
+ usageMetadata: result.usage ? {
2408
+ promptTokenCount: result.usage.promptTokens,
2409
+ candidatesTokenCount: result.usage.completionTokens,
2410
+ totalTokenCount: result.usage.totalTokens
2411
+ } : void 0,
2412
+ finishReason: this.mapFinishReason(result.finishReason),
2413
+ turnComplete: true
2414
+ });
2415
+ }
2416
+ } catch (error) {
2417
+ this.logger.error(`AI SDK Error: ${String(error)}`, { error, request });
2418
+ yield LlmResponse.fromError(error, {
2419
+ errorCode: "AI_SDK_ERROR",
2420
+ model: this.model
2421
+ });
2422
+ }
2423
+ }
2424
+ /**
2425
+ * Convert ADK LlmRequest to AI SDK CoreMessage format
2426
+ */
2427
+ convertToAiSdkMessages(llmRequest) {
2428
+ const messages = [];
2429
+ for (const content of llmRequest.contents || []) {
2430
+ const message = this.contentToAiSdkMessage(content);
2431
+ if (message) {
2432
+ messages.push(message);
2433
+ }
2434
+ }
2435
+ return messages;
2436
+ }
2437
+ /**
2438
+ * Convert ADK tools to AI SDK tools format
2439
+ */
2440
+ convertToAiSdkTools(llmRequest) {
2441
+ const tools = {};
2442
+ if (llmRequest.config?.tools) {
2443
+ for (const toolConfig of llmRequest.config.tools) {
2444
+ if ("functionDeclarations" in toolConfig) {
2445
+ for (const funcDecl of toolConfig.functionDeclarations) {
2446
+ tools[funcDecl.name] = {
2447
+ description: funcDecl.description,
2448
+ parameters: jsonSchema(funcDecl.parameters || {})
2449
+ };
2450
+ }
2451
+ }
2452
+ }
2453
+ }
2454
+ return tools;
2455
+ }
2456
+ /**
2457
+ * Convert ADK Content to AI SDK CoreMessage
2458
+ */
2459
+ contentToAiSdkMessage(content) {
2460
+ const role = this.mapRole(content.role);
2461
+ if (!content.parts || content.parts.length === 0) {
2462
+ return null;
2463
+ }
2464
+ if (content.parts.length === 1 && content.parts[0].text) {
2465
+ const textContent = content.parts[0].text;
2466
+ if (role === "system") {
2467
+ return { role: "system", content: textContent };
2468
+ }
2469
+ if (role === "assistant") {
2470
+ return { role: "assistant", content: textContent };
2471
+ }
2472
+ return { role: "user", content: textContent };
2473
+ }
2474
+ if (content.parts?.some((part) => part.functionCall)) {
2475
+ const textParts = content.parts.filter((part) => part.text);
2476
+ const functionCalls = content.parts.filter((part) => part.functionCall);
2477
+ const contentParts2 = [];
2478
+ for (const textPart of textParts) {
2479
+ if (textPart.text) {
2480
+ contentParts2.push({
2481
+ type: "text",
2482
+ text: textPart.text
2483
+ });
2484
+ }
2485
+ }
2486
+ for (const funcPart of functionCalls) {
2487
+ if (funcPart.functionCall) {
2488
+ contentParts2.push({
2489
+ type: "tool-call",
2490
+ toolCallId: funcPart.functionCall.id,
2491
+ toolName: funcPart.functionCall.name,
2492
+ args: funcPart.functionCall.args
2493
+ });
2494
+ }
2495
+ }
2496
+ return {
2497
+ role: "assistant",
2498
+ content: contentParts2
2499
+ };
2500
+ }
2501
+ if (content.parts?.some((part) => part.functionResponse)) {
2502
+ const functionResponses = content.parts.filter(
2503
+ (part) => part.functionResponse
2504
+ );
2505
+ const contentParts2 = functionResponses.map((part) => ({
2506
+ type: "tool-result",
2507
+ toolCallId: part.functionResponse.id,
2508
+ toolName: part.functionResponse.name || "unknown",
2509
+ result: part.functionResponse.response
2510
+ }));
2511
+ return {
2512
+ role: "tool",
2513
+ content: contentParts2
2514
+ };
2515
+ }
2516
+ const contentParts = [];
2517
+ for (const part of content.parts) {
2518
+ if (part.text) {
2519
+ contentParts.push({
2520
+ type: "text",
2521
+ text: part.text
2522
+ });
2523
+ }
2524
+ }
2525
+ if (contentParts.length === 0) {
2526
+ return null;
2527
+ }
2528
+ if (contentParts.length === 1) {
2529
+ const textContent = contentParts[0].text;
2530
+ if (role === "system") {
2531
+ return { role: "system", content: textContent };
2532
+ }
2533
+ if (role === "assistant") {
2534
+ return { role: "assistant", content: textContent };
2535
+ }
2536
+ return { role: "user", content: textContent };
2537
+ }
2538
+ if (role === "system") {
2539
+ const combinedText = contentParts.map((p) => p.text).join("");
2540
+ return { role: "system", content: combinedText };
2541
+ }
2542
+ if (role === "assistant") {
2543
+ return { role: "assistant", content: contentParts };
2544
+ }
2545
+ return { role: "user", content: contentParts };
2546
+ }
2547
+ /**
2548
+ * Map ADK role to AI SDK role
2549
+ */
2550
+ mapRole(role) {
2551
+ switch (role) {
2552
+ case "model":
2553
+ case "assistant":
2554
+ return "assistant";
2555
+ case "system":
2556
+ return "system";
2557
+ default:
2558
+ return "user";
2559
+ }
2560
+ }
2561
+ /**
2562
+ * Map AI SDK finish reason to ADK finish reason
2563
+ */
2564
+ mapFinishReason(finishReason) {
2565
+ switch (finishReason) {
2566
+ case "stop":
2567
+ case "end_of_message":
2568
+ return "STOP";
2569
+ case "length":
2570
+ case "max_tokens":
2571
+ return "MAX_TOKENS";
2572
+ default:
2573
+ return "FINISH_REASON_UNSPECIFIED";
2574
+ }
2575
+ }
2576
+ };
2577
+
2359
2578
  // src/models/llm-registry.ts
2360
2579
  init_logger();
2361
- var logger5 = new Logger({ name: "LLMRegistry" });
2362
2580
  var LLMRegistry = class _LLMRegistry {
2363
2581
  /**
2364
2582
  * Map of model name regex to LLM class
2365
2583
  */
2366
2584
  static llmRegistry = /* @__PURE__ */ new Map();
2585
+ static logger = new Logger({ name: "LLMRegistry" });
2367
2586
  /**
2368
2587
  * Creates a new LLM instance
2369
2588
  *
@@ -2415,7 +2634,7 @@ var LLMRegistry = class _LLMRegistry {
2415
2634
  * Logs all registered models for debugging
2416
2635
  */
2417
2636
  static logRegisteredModels() {
2418
- logger5.debug(
2637
+ _LLMRegistry.logger.debug(
2419
2638
  "Registered LLM models:",
2420
2639
  [..._LLMRegistry.llmRegistry.entries()].map(([regex]) => regex.toString())
2421
2640
  );
@@ -4665,15 +4884,13 @@ var McpClientService = class {
4665
4884
  await connectPromise;
4666
4885
  }
4667
4886
  await this.setupSamplingHandler(client);
4668
- if (this.config.debug) {
4669
- console.log("\u2705 MCP client connected successfully");
4670
- }
4887
+ this.logger.debug("\u2705 MCP client connected successfully");
4671
4888
  this.client = client;
4672
4889
  return client;
4673
4890
  } catch (error) {
4674
4891
  await this.cleanupResources();
4675
4892
  if (!(error instanceof McpError)) {
4676
- console.error("Failed to initialize MCP client:", error);
4893
+ this.logger.error("Failed to initialize MCP client:", error);
4677
4894
  throw new McpError(
4678
4895
  `Failed to initialize MCP client: ${error instanceof Error ? error.message : String(error)}`,
4679
4896
  "connection_error" /* CONNECTION_ERROR */,
@@ -4689,12 +4906,10 @@ var McpClientService = class {
4689
4906
  async createTransport() {
4690
4907
  try {
4691
4908
  if (this.config.transport.mode === "sse") {
4692
- if (this.config.debug) {
4693
- console.log(
4694
- "\u{1F680} Initializing MCP client in SSE mode",
4695
- this.config.transport.serverUrl
4696
- );
4697
- }
4909
+ this.logger.debug(
4910
+ "\u{1F680} Initializing MCP client in SSE mode",
4911
+ this.config.transport.serverUrl
4912
+ );
4698
4913
  const headers = {
4699
4914
  ...this.config.transport.headers || {},
4700
4915
  ...this.config.headers || {}
@@ -4709,12 +4924,10 @@ var McpClientService = class {
4709
4924
  }
4710
4925
  );
4711
4926
  }
4712
- if (this.config.debug) {
4713
- console.log(
4714
- "\u{1F680} Initializing MCP client in STDIO mode",
4715
- this.config.transport.command
4716
- );
4717
- }
4927
+ this.logger.debug(
4928
+ "\u{1F680} Initializing MCP client in STDIO mode",
4929
+ this.config.transport.command
4930
+ );
4718
4931
  return new StdioClientTransport({
4719
4932
  command: this.config.transport.command,
4720
4933
  args: this.config.transport.args,
@@ -4733,9 +4946,7 @@ var McpClientService = class {
4733
4946
  * Used by the retry mechanism.
4734
4947
  */
4735
4948
  async reinitialize() {
4736
- if (this.config.debug) {
4737
- console.log("\u{1F504} Reinitializing MCP client after closed connection");
4738
- }
4949
+ this.logger.debug("\u{1F504} Reinitializing MCP client after closed connection");
4739
4950
  await this.cleanupResources();
4740
4951
  this.client = null;
4741
4952
  this.transport = null;
@@ -4759,11 +4970,9 @@ var McpClientService = class {
4759
4970
  if (this.transport && typeof this.transport.close === "function") {
4760
4971
  await this.transport.close();
4761
4972
  }
4762
- if (this.config.debug) {
4763
- console.log("\u{1F9F9} Cleaned up MCP client resources");
4764
- }
4973
+ this.logger.debug("\u{1F9F9} Cleaned up MCP client resources");
4765
4974
  } catch (error) {
4766
- console.error("Error cleaning up MCP resources:", error);
4975
+ this.logger.error("Error cleaning up MCP resources:", error);
4767
4976
  } finally {
4768
4977
  this.client = null;
4769
4978
  this.transport = null;
@@ -4805,9 +5014,7 @@ var McpClientService = class {
4805
5014
  * Similar to Python's close() method.
4806
5015
  */
4807
5016
  async close() {
4808
- if (this.config.debug) {
4809
- console.log("\u{1F51A} Closing MCP client service");
4810
- }
5017
+ this.logger.debug("\u{1F51A} Closing MCP client service");
4811
5018
  await this.cleanupResources();
4812
5019
  }
4813
5020
  /**
@@ -4818,11 +5025,9 @@ var McpClientService = class {
4818
5025
  }
4819
5026
  async setupSamplingHandler(client) {
4820
5027
  if (!this.mcpSamplingHandler) {
4821
- if (this.config.debug) {
4822
- console.log(
4823
- "\u26A0\uFE0F No sampling handler provided - sampling requests will be rejected"
4824
- );
4825
- }
5028
+ this.logger.debug(
5029
+ "\u26A0\uFE0F No sampling handler provided - sampling requests will be rejected"
5030
+ );
4826
5031
  return;
4827
5032
  }
4828
5033
  try {
@@ -4832,12 +5037,10 @@ var McpClientService = class {
4832
5037
  try {
4833
5038
  this.logger.debug("Received sampling request:", request);
4834
5039
  const response = await this.mcpSamplingHandler.handleSamplingRequest(request);
4835
- if (this.config.debug) {
4836
- console.log("\u2705 Sampling request completed successfully");
4837
- }
5040
+ this.logger.debug("\u2705 Sampling request completed successfully");
4838
5041
  return response;
4839
5042
  } catch (error) {
4840
- console.error("\u274C Error handling sampling request:", error);
5043
+ this.logger.error("\u274C Error handling sampling request:", error);
4841
5044
  if (error instanceof McpError) {
4842
5045
  throw error;
4843
5046
  }
@@ -4849,16 +5052,12 @@ var McpClientService = class {
4849
5052
  }
4850
5053
  }
4851
5054
  );
4852
- if (this.config.debug) {
4853
- console.log("\u{1F3AF} Sampling handler registered successfully");
4854
- }
5055
+ this.logger.debug("\u{1F3AF} Sampling handler registered successfully");
4855
5056
  } catch (error) {
4856
- console.error("Failed to setup sampling handler:", error);
4857
- if (this.config.debug) {
4858
- console.log(
4859
- "\u26A0\uFE0F Sampling handler registration failed, continuing without sampling support"
4860
- );
4861
- }
5057
+ this.logger.error("Failed to setup sampling handler:", error);
5058
+ this.logger.debug(
5059
+ "\u26A0\uFE0F Sampling handler registration failed, continuing without sampling support"
5060
+ );
4862
5061
  }
4863
5062
  }
4864
5063
  /**
@@ -4868,7 +5067,7 @@ var McpClientService = class {
4868
5067
  this.mcpSamplingHandler = new McpSamplingHandler(handler);
4869
5068
  if (this.client) {
4870
5069
  this.setupSamplingHandler(this.client).catch((error) => {
4871
- console.error("Failed to update ADK sampling handler:", error);
5070
+ this.logger.error("Failed to update ADK sampling handler:", error);
4872
5071
  });
4873
5072
  }
4874
5073
  }
@@ -4881,7 +5080,7 @@ var McpClientService = class {
4881
5080
  try {
4882
5081
  this.client.removeRequestHandler?.("sampling/createMessage");
4883
5082
  } catch (error) {
4884
- console.error("Failed to remove sampling handler:", error);
5083
+ this.logger.error("Failed to remove sampling handler:", error);
4885
5084
  }
4886
5085
  }
4887
5086
  }
@@ -5249,7 +5448,7 @@ function McpNearAgent(config = {}) {
5249
5448
  }
5250
5449
  function McpNearIntentSwaps(config = {}) {
5251
5450
  const mcpConfig = createMcpConfig(
5252
- "NEAR Intent Swaps MCP Client",
5451
+ "Near Intents Swaps MCP Client",
5253
5452
  "@iqai/mcp-near-intent-swaps",
5254
5453
  config
5255
5454
  );
@@ -5677,89 +5876,47 @@ var BaseLlmFlow = class {
5677
5876
  responseProcessors = [];
5678
5877
  logger = new Logger({ name: "BaseLlmFlow" });
5679
5878
  async *runAsync(invocationContext) {
5680
- this.logger.debug("\u{1F680} Starting runAsync flow", {
5681
- invocationId: invocationContext.invocationId,
5682
- agentName: invocationContext.agent.name,
5683
- branch: invocationContext.branch
5684
- });
5879
+ this.logger.info(`Agent '${invocationContext.agent.name}' started.`);
5685
5880
  let stepCount = 0;
5686
5881
  while (true) {
5687
5882
  stepCount++;
5688
- this.logger.debug(`\u{1F4CB} Running step ${stepCount}`, {
5689
- invocationId: invocationContext.invocationId
5690
- });
5691
5883
  let lastEvent = null;
5692
- let eventCount = 0;
5693
5884
  for await (const event of this._runOneStepAsync(invocationContext)) {
5694
- eventCount++;
5695
5885
  lastEvent = event;
5696
- this.logger.debug(
5697
- `\u{1F4E4} Yielding event ${eventCount} from step ${stepCount}`,
5698
- {
5699
- eventId: event.id,
5700
- eventType: event.constructor.name,
5701
- hasContent: !!event.content,
5702
- isFinalResponse: event.isFinalResponse(),
5703
- partial: event.partial
5704
- }
5705
- );
5706
5886
  yield event;
5707
5887
  }
5708
5888
  if (!lastEvent || lastEvent.isFinalResponse()) {
5709
- this.logger.debug("\u2705 Flow completed", {
5710
- reason: !lastEvent ? "no_events" : "final_response",
5711
- totalSteps: stepCount
5712
- });
5889
+ this.logger.info(
5890
+ `Agent '${invocationContext.agent.name}' finished after ${stepCount} steps.`
5891
+ );
5713
5892
  break;
5714
5893
  }
5715
5894
  if (lastEvent.partial) {
5716
- this.logger.error("\u274C Flow error: Last event is partial", {
5717
- eventId: lastEvent.id,
5718
- stepCount
5719
- });
5895
+ this.logger.error(
5896
+ "Partial event encountered. LLM max output limit may be reached."
5897
+ );
5720
5898
  throw new Error(
5721
5899
  "Last event shouldn't be partial. LLM max output limit may be reached."
5722
5900
  );
5723
5901
  }
5724
5902
  }
5725
- this.logger.debug("\u{1F3C1} runAsync flow finished", {
5726
- totalSteps: stepCount,
5727
- invocationId: invocationContext.invocationId
5728
- });
5729
5903
  }
5730
5904
  async *runLive(invocationContext) {
5731
- this.logger.debug("\u{1F534} Starting runLive flow", {
5732
- invocationId: invocationContext.invocationId,
5733
- agentName: invocationContext.agent.name
5734
- });
5735
5905
  this.logger.warn("\u26A0\uFE0F runLive not fully implemented, delegating to runAsync");
5736
5906
  yield* this.runAsync(invocationContext);
5737
5907
  }
5738
5908
  async *_runOneStepAsync(invocationContext) {
5739
- this.logger.debug("\u{1F504} Starting one step execution", {
5740
- invocationId: invocationContext.invocationId
5741
- });
5742
5909
  const llmRequest = new LlmRequest();
5743
- this.logger.debug("\u{1F4DD} Created new LlmRequest", {
5744
- requestId: llmRequest.id || "unknown"
5745
- });
5746
- this.logger.debug("\u{1F527} Starting preprocessing phase");
5747
5910
  let preprocessEventCount = 0;
5748
5911
  for await (const event of this._preprocessAsync(
5749
5912
  invocationContext,
5750
5913
  llmRequest
5751
5914
  )) {
5752
5915
  preprocessEventCount++;
5753
- this.logger.debug(`\u{1F4E4} Preprocessing event ${preprocessEventCount}`, {
5754
- eventId: event.id
5755
- });
5756
5916
  yield event;
5757
5917
  }
5758
- this.logger.debug("\u2705 Preprocessing completed", {
5759
- eventCount: preprocessEventCount
5760
- });
5761
5918
  if (invocationContext.endInvocation) {
5762
- this.logger.debug("\u{1F6D1} Invocation ended during preprocessing");
5919
+ this.logger.info("Invocation ended during preprocessing.");
5763
5920
  return;
5764
5921
  }
5765
5922
  const modelResponseEvent = new Event({
@@ -5768,9 +5925,6 @@ var BaseLlmFlow = class {
5768
5925
  author: invocationContext.agent.name,
5769
5926
  branch: invocationContext.branch
5770
5927
  });
5771
- this.logger.debug("\u{1F916} Starting LLM call phase", {
5772
- modelResponseEventId: modelResponseEvent.id
5773
- });
5774
5928
  let llmResponseCount = 0;
5775
5929
  for await (const llmResponse of this._callLlmAsync(
5776
5930
  invocationContext,
@@ -5778,12 +5932,6 @@ var BaseLlmFlow = class {
5778
5932
  modelResponseEvent
5779
5933
  )) {
5780
5934
  llmResponseCount++;
5781
- this.logger.debug(`\u{1F504} Processing LLM response ${llmResponseCount}`, {
5782
- hasContent: !!llmResponse.content,
5783
- hasError: !!llmResponse.errorCode,
5784
- interrupted: !!llmResponse.interrupted,
5785
- partial: !!llmResponse.partial
5786
- });
5787
5935
  for await (const event of this._postprocessAsync(
5788
5936
  invocationContext,
5789
5937
  llmRequest,
@@ -5791,89 +5939,47 @@ var BaseLlmFlow = class {
5791
5939
  modelResponseEvent
5792
5940
  )) {
5793
5941
  modelResponseEvent.id = Event.newId();
5794
- this.logger.debug("\u{1F4E4} Yielding postprocessed event", {
5795
- eventId: event.id,
5796
- hasFunctionCalls: !!event.getFunctionCalls()
5797
- });
5798
5942
  yield event;
5799
5943
  }
5800
5944
  }
5801
- this.logger.debug("\u2705 One step execution completed", {
5802
- llmResponseCount
5803
- });
5804
5945
  }
5805
5946
  async *_preprocessAsync(invocationContext, llmRequest) {
5806
- this.logger.debug("\u{1F527} Starting preprocessing", {
5807
- processorCount: this.requestProcessors.length
5808
- });
5809
5947
  const agent = invocationContext.agent;
5810
5948
  if (!("canonicalTools" in agent) || typeof agent.canonicalTools !== "function") {
5811
- this.logger.debug("\u2139\uFE0F Agent has no canonical tools");
5812
5949
  return;
5813
5950
  }
5814
- for (let i = 0; i < this.requestProcessors.length; i++) {
5815
- const processor = this.requestProcessors[i];
5816
- this.logger.debug(`\u{1F504} Running request processor ${i + 1}`, {
5817
- processorName: processor.constructor?.name || "unknown"
5818
- });
5819
- let processorEventCount = 0;
5951
+ for (const processor of this.requestProcessors) {
5820
5952
  for await (const event of processor.runAsync(
5821
5953
  invocationContext,
5822
5954
  llmRequest
5823
5955
  )) {
5824
- processorEventCount++;
5825
- this.logger.debug(
5826
- `\u{1F4E4} Request processor ${i + 1} event ${processorEventCount}`,
5827
- {
5828
- eventId: event.id
5829
- }
5830
- );
5831
5956
  yield event;
5832
5957
  }
5833
- this.logger.debug(`\u2705 Request processor ${i + 1} completed`, {
5834
- eventCount: processorEventCount
5835
- });
5836
5958
  }
5837
5959
  const tools = await agent.canonicalTools(
5838
5960
  new ReadonlyContext(invocationContext)
5839
5961
  );
5840
- this.logger.debug("\u{1F6E0}\uFE0F Processing canonical tools", {
5841
- toolCount: tools.length
5842
- });
5843
- for (let i = 0; i < tools.length; i++) {
5844
- const tool = tools[i];
5845
- this.logger.debug(`\u{1F504} Processing tool ${i + 1}`, {
5846
- toolName: tool.constructor?.name || "unknown"
5847
- });
5962
+ for (const tool of tools) {
5848
5963
  const toolContext = new ToolContext(invocationContext);
5849
5964
  await tool.processLlmRequest(toolContext, llmRequest);
5850
- this.logger.debug(`\u2705 Tool ${i + 1} processed`);
5851
5965
  }
5852
- this.logger.debug("\u2705 Preprocessing completed", {
5853
- totalTools: tools.length
5854
- });
5966
+ if (tools.length > 0) {
5967
+ const toolsData = tools.map((tool) => ({
5968
+ Name: tool.name,
5969
+ Description: tool.description?.substring(0, 50) + (tool.description?.length > 50 ? "..." : ""),
5970
+ "Long Running": tool.isLongRunning ? "Yes" : "No"
5971
+ }));
5972
+ this.logger.debugArray("\u{1F6E0}\uFE0F Available Tools", toolsData);
5973
+ }
5855
5974
  }
5856
5975
  async *_postprocessAsync(invocationContext, llmRequest, llmResponse, modelResponseEvent) {
5857
- this.logger.debug("\u{1F504} Starting postprocessing", {
5858
- hasContent: !!llmResponse.content,
5859
- hasError: !!llmResponse.errorCode,
5860
- interrupted: !!llmResponse.interrupted
5861
- });
5862
- let processorEventCount = 0;
5863
5976
  for await (const event of this._postprocessRunProcessorsAsync(
5864
5977
  invocationContext,
5865
5978
  llmResponse
5866
5979
  )) {
5867
- processorEventCount++;
5868
- this.logger.debug(`\u{1F4E4} Response processor event ${processorEventCount}`, {
5869
- eventId: event.id
5870
- });
5871
5980
  yield event;
5872
5981
  }
5873
5982
  if (!llmResponse.content && !llmResponse.errorCode && !llmResponse.interrupted) {
5874
- this.logger.debug(
5875
- "\u2139\uFE0F Skipping event creation - no content, error, or interruption"
5876
- );
5877
5983
  return;
5878
5984
  }
5879
5985
  const finalizedEvent = this._finalizeModelResponseEvent(
@@ -5881,54 +5987,32 @@ var BaseLlmFlow = class {
5881
5987
  llmResponse,
5882
5988
  modelResponseEvent
5883
5989
  );
5884
- this.logger.debug("\u{1F4DD} Finalized model response event", {
5885
- eventId: finalizedEvent.id,
5886
- hasContent: !!finalizedEvent.content,
5887
- hasFunctionCalls: !!finalizedEvent.getFunctionCalls(),
5888
- longRunningToolIds: finalizedEvent.longRunningToolIds.entries.length || 0
5889
- });
5890
5990
  yield finalizedEvent;
5891
5991
  const functionCalls = finalizedEvent.getFunctionCalls();
5892
- if (functionCalls) {
5893
- this.logger.debug("\u{1F527} Processing function calls", {
5894
- functionCallCount: functionCalls.length
5895
- });
5896
- let functionEventCount = 0;
5992
+ if (functionCalls && functionCalls.length > 0) {
5993
+ const functionCallsData = functionCalls.map((fc) => ({
5994
+ Name: fc.name,
5995
+ Arguments: JSON.stringify(fc.args).substring(0, 100) + (JSON.stringify(fc.args).length > 100 ? "..." : ""),
5996
+ ID: fc.id || "auto"
5997
+ }));
5998
+ this.logger.debugArray("\u{1F527} Function Calls", functionCallsData);
5897
5999
  for await (const event of this._postprocessHandleFunctionCallsAsync(
5898
6000
  invocationContext,
5899
6001
  finalizedEvent,
5900
6002
  llmRequest
5901
6003
  )) {
5902
- functionEventCount++;
5903
- this.logger.debug(`\u{1F4E4} Function call event ${functionEventCount}`, {
5904
- eventId: event.id
5905
- });
5906
6004
  yield event;
5907
6005
  }
5908
- this.logger.debug("\u2705 Function calls processed", {
5909
- eventCount: functionEventCount
5910
- });
5911
6006
  }
5912
- this.logger.debug("\u2705 Postprocessing completed");
5913
6007
  }
5914
6008
  async *_postprocessLive(invocationContext, llmRequest, llmResponse, modelResponseEvent) {
5915
- this.logger.debug("\u{1F534} Starting live postprocessing", {
5916
- hasContent: !!llmResponse.content,
5917
- turnComplete: !!llmResponse.turnComplete
5918
- });
5919
6009
  for await (const event of this._postprocessRunProcessorsAsync(
5920
6010
  invocationContext,
5921
6011
  llmResponse
5922
6012
  )) {
5923
- this.logger.debug("\u{1F4E4} Live response processor event", {
5924
- eventId: event.id
5925
- });
5926
6013
  yield event;
5927
6014
  }
5928
6015
  if (!llmResponse.content && !llmResponse.errorCode && !llmResponse.interrupted && !llmResponse.turnComplete) {
5929
- this.logger.debug(
5930
- "\u2139\uFE0F Skipping live event - no content or completion signal"
5931
- );
5932
6016
  return;
5933
6017
  }
5934
6018
  const finalizedEvent = this._finalizeModelResponseEvent(
@@ -5936,165 +6020,83 @@ var BaseLlmFlow = class {
5936
6020
  llmResponse,
5937
6021
  modelResponseEvent
5938
6022
  );
5939
- this.logger.debug("\u{1F4DD} Finalized live model response event", {
5940
- eventId: finalizedEvent.id,
5941
- hasFunctionCalls: !!finalizedEvent.getFunctionCalls()
5942
- });
5943
6023
  yield finalizedEvent;
5944
6024
  if (finalizedEvent.getFunctionCalls()) {
5945
- this.logger.debug("\u{1F527} Processing live function calls");
5946
6025
  const functionResponseEvent = await handleFunctionCallsAsync(
5947
6026
  invocationContext,
5948
6027
  finalizedEvent,
5949
6028
  llmRequest.toolsDict || {}
5950
6029
  );
5951
6030
  if (functionResponseEvent) {
5952
- this.logger.debug("\u{1F4E4} Live function response event", {
5953
- eventId: functionResponseEvent.id,
5954
- hasTransfer: !!functionResponseEvent.actions?.transferToAgent
5955
- });
5956
6031
  yield functionResponseEvent;
5957
6032
  const transferToAgent = functionResponseEvent.actions?.transferToAgent;
5958
6033
  if (transferToAgent) {
5959
- this.logger.debug("\u{1F504} Transferring to agent in live mode", {
5960
- targetAgent: transferToAgent
5961
- });
6034
+ this.logger.info(`\u{1F504} Live transfer to agent '${transferToAgent}'`);
5962
6035
  const agentToRun = this._getAgentToRun(
5963
6036
  invocationContext,
5964
6037
  transferToAgent
5965
6038
  );
5966
- let transferEventCount = 0;
5967
6039
  for await (const event of agentToRun.runLive?.(invocationContext) || agentToRun.runAsync(invocationContext)) {
5968
- transferEventCount++;
5969
- this.logger.debug(`\u{1F4E4} Transfer agent event ${transferEventCount}`, {
5970
- eventId: event.id
5971
- });
5972
6040
  yield event;
5973
6041
  }
5974
- this.logger.debug("\u2705 Agent transfer completed", {
5975
- eventCount: transferEventCount
5976
- });
5977
6042
  }
5978
6043
  }
5979
6044
  }
5980
- this.logger.debug("\u2705 Live postprocessing completed");
5981
6045
  }
5982
6046
  async *_postprocessRunProcessorsAsync(invocationContext, llmResponse) {
5983
- this.logger.debug("\u{1F504} Running response processors", {
5984
- processorCount: this.responseProcessors.length
5985
- });
5986
- for (let i = 0; i < this.responseProcessors.length; i++) {
5987
- const processor = this.responseProcessors[i];
5988
- this.logger.debug(`\u{1F504} Running response processor ${i + 1}`, {
5989
- processorName: processor.constructor?.name || "unknown"
5990
- });
5991
- let processorEventCount = 0;
6047
+ for (const processor of this.responseProcessors) {
5992
6048
  for await (const event of processor.runAsync(
5993
6049
  invocationContext,
5994
6050
  llmResponse
5995
6051
  )) {
5996
- processorEventCount++;
5997
- this.logger.debug(
5998
- `\u{1F4E4} Response processor ${i + 1} event ${processorEventCount}`,
5999
- {
6000
- eventId: event.id
6001
- }
6002
- );
6003
6052
  yield event;
6004
6053
  }
6005
- this.logger;
6006
- this.logger.debug(`\u2705 Response processor ${i + 1} completed`, {
6007
- eventCount: processorEventCount
6008
- });
6009
6054
  }
6010
- this.logger.debug("\u2705 All response processors completed");
6011
6055
  }
6012
6056
  async *_postprocessHandleFunctionCallsAsync(invocationContext, functionCallEvent, llmRequest) {
6013
- this.logger.debug("\u{1F527} Handling function calls", {
6014
- eventId: functionCallEvent.id,
6015
- toolsDictSize: Object.keys(llmRequest.toolsDict || {}).length
6016
- });
6017
6057
  const functionResponseEvent = await handleFunctionCallsAsync(
6018
6058
  invocationContext,
6019
6059
  functionCallEvent,
6020
6060
  llmRequest.toolsDict || {}
6021
6061
  );
6022
6062
  if (functionResponseEvent) {
6023
- this.logger.debug("\u{1F4CB} Function calls executed", {
6024
- responseEventId: functionResponseEvent.id,
6025
- hasActions: !!functionResponseEvent.actions
6026
- });
6027
6063
  const authEvent = generateAuthEvent(
6028
6064
  invocationContext,
6029
6065
  functionResponseEvent
6030
6066
  );
6031
6067
  if (authEvent) {
6032
- this.logger.debug("\u{1F510} Generated auth event", {
6033
- authEventId: authEvent.id
6034
- });
6035
6068
  yield authEvent;
6036
6069
  }
6037
6070
  yield functionResponseEvent;
6038
6071
  const transferToAgent = functionResponseEvent.actions?.transferToAgent;
6039
6072
  if (transferToAgent) {
6040
- this.logger.debug("\u{1F504} Transferring to agent", {
6041
- targetAgent: transferToAgent
6042
- });
6073
+ this.logger.info(`\u{1F504} Transferring to agent '${transferToAgent}'`);
6043
6074
  const agentToRun = this._getAgentToRun(
6044
6075
  invocationContext,
6045
6076
  transferToAgent
6046
6077
  );
6047
- let transferEventCount = 0;
6048
6078
  for await (const event of agentToRun.runAsync(invocationContext)) {
6049
- transferEventCount++;
6050
- this.logger.debug(`\u{1F4E4} Transfer agent event ${transferEventCount}`, {
6051
- eventId: event.id
6052
- });
6053
6079
  yield event;
6054
6080
  }
6055
- this.logger.debug("\u2705 Agent transfer completed", {
6056
- eventCount: transferEventCount
6057
- });
6058
6081
  }
6059
- } else {
6060
- this.logger.debug("\u2139\uFE0F No function response event generated");
6061
6082
  }
6062
6083
  }
6063
6084
  _getAgentToRun(invocationContext, agentName) {
6064
- this.logger.debug("\u{1F50D} Finding agent to run", {
6065
- targetAgent: agentName,
6066
- currentAgent: invocationContext.agent.name
6067
- });
6068
6085
  const rootAgent = invocationContext.agent.rootAgent;
6069
6086
  const agentToRun = rootAgent.findAgent(agentName);
6070
6087
  if (!agentToRun) {
6071
- this.logger.error("\u274C Agent not found", {
6072
- targetAgent: agentName,
6073
- rootAgent: rootAgent.name
6074
- });
6088
+ this.logger.error(`Agent '${agentName}' not found in the agent tree.`);
6075
6089
  throw new Error(`Agent ${agentName} not found in the agent tree.`);
6076
6090
  }
6077
- this.logger.debug("\u2705 Agent found", {
6078
- targetAgent: agentName,
6079
- agentType: agentToRun.constructor.name
6080
- });
6081
6091
  return agentToRun;
6082
6092
  }
6083
6093
  async *_callLlmAsync(invocationContext, llmRequest, modelResponseEvent) {
6084
- this.logger.debug("\u{1F916} Starting LLM call", {
6085
- model: llmRequest.model || "default",
6086
- eventId: modelResponseEvent.id
6087
- });
6088
- this.logger.debug("\u{1F504} Processing before model callbacks");
6089
6094
  const beforeModelCallbackContent = await this._handleBeforeModelCallback(
6090
6095
  invocationContext,
6091
6096
  llmRequest,
6092
6097
  modelResponseEvent
6093
6098
  );
6094
6099
  if (beforeModelCallbackContent) {
6095
- this.logger.debug("\u{1F4CB} Before model callback returned content", {
6096
- hasContent: !!beforeModelCallbackContent.content
6097
- });
6098
6100
  yield beforeModelCallbackContent;
6099
6101
  return;
6100
6102
  }
@@ -6102,27 +6104,38 @@ var BaseLlmFlow = class {
6102
6104
  llmRequest.config.labels = llmRequest.config.labels || {};
6103
6105
  if (!(_ADK_AGENT_NAME_LABEL_KEY in llmRequest.config.labels)) {
6104
6106
  llmRequest.config.labels[_ADK_AGENT_NAME_LABEL_KEY] = invocationContext.agent.name;
6105
- this.logger.debug("\u{1F3F7}\uFE0F Added agent name label", {
6106
- agentName: invocationContext.agent.name
6107
- });
6108
6107
  }
6109
6108
  const llm = this.__getLlm(invocationContext);
6110
- this.logger.debug("\u{1F527} Retrieved LLM instance", {
6111
- llmModel: llm.model,
6112
- llmType: llm.constructor.name
6113
- });
6114
6109
  const runConfig = invocationContext.runConfig;
6115
6110
  if (runConfig.supportCfc) {
6116
6111
  this.logger.warn(
6117
- "\u26A0\uFE0F CFC (supportCfc) not fully implemented, using standard flow"
6112
+ "CFC (supportCfc) not fully implemented, using standard flow."
6118
6113
  );
6119
6114
  }
6120
6115
  invocationContext.incrementLlmCallCount();
6121
- this.logger.debug("\u{1F4C8} Incremented LLM call count");
6122
6116
  const isStreaming = invocationContext.runConfig.streamingMode === "sse" /* SSE */;
6123
- this.logger.debug("\u{1F30A} LLM generation mode", {
6124
- streaming: isStreaming,
6125
- streamingMode: invocationContext.runConfig.streamingMode
6117
+ const tools = llmRequest.config?.tools || [];
6118
+ const toolNames = tools.map((tool) => {
6119
+ if (tool.functionDeclarations && Array.isArray(tool.functionDeclarations)) {
6120
+ return tool.functionDeclarations.map((fn) => fn.name).join(", ");
6121
+ }
6122
+ if (tool.name) return tool.name;
6123
+ if (tool.function?.name) return tool.function.name;
6124
+ if (tool.function?.function?.name) return tool.function.function.name;
6125
+ return "unknown";
6126
+ }).join(", ");
6127
+ const systemInstruction = llmRequest.getSystemInstructionText() || "";
6128
+ const truncatedSystemInstruction = systemInstruction.length > 100 ? `${systemInstruction.substring(0, 100)}...` : systemInstruction;
6129
+ const contentPreview = llmRequest.contents?.length > 0 ? this._formatContentPreview(llmRequest.contents[0]) : "none";
6130
+ this.logger.debugStructured("\u{1F4E4} LLM Request", {
6131
+ Model: llm.model,
6132
+ Agent: invocationContext.agent.name,
6133
+ "Content Items": llmRequest.contents?.length || 0,
6134
+ "Content Preview": contentPreview,
6135
+ "System Instruction": truncatedSystemInstruction || "none",
6136
+ "Available Tools": toolNames || "none",
6137
+ "Tool Count": llmRequest.config?.tools?.length || 0,
6138
+ Streaming: isStreaming ? "Yes" : "No"
6126
6139
  });
6127
6140
  let responseCount = 0;
6128
6141
  for await (const llmResponse of llm.generateContentAsync(
@@ -6130,59 +6143,46 @@ var BaseLlmFlow = class {
6130
6143
  isStreaming
6131
6144
  )) {
6132
6145
  responseCount++;
6133
- this.logger.debug(`\u{1F4E5} Received LLM response ${responseCount}`, {
6134
- hasContent: !!llmResponse.content,
6135
- hasError: !!llmResponse.errorCode,
6136
- interrupted: !!llmResponse.interrupted,
6137
- partial: !!llmResponse.partial,
6138
- finishReason: llmResponse.finishReason,
6139
- usage: llmResponse.usageMetadata ? {
6140
- promptTokens: llmResponse.usageMetadata.promptTokenCount,
6141
- completionTokens: llmResponse.usageMetadata.candidatesTokenCount,
6142
- totalTokens: llmResponse.usageMetadata.totalTokenCount
6143
- } : null
6144
- });
6145
6146
  traceLlmCall(
6146
6147
  invocationContext,
6147
6148
  modelResponseEvent.id,
6148
6149
  llmRequest,
6149
6150
  llmResponse
6150
6151
  );
6151
- this.logger.debug("\u{1F504} Processing after model callbacks");
6152
+ const tokenCount = llmResponse.usageMetadata?.totalTokenCount || "unknown";
6153
+ const functionCallCount = llmResponse.content?.parts?.filter((part) => part.functionCall).length || 0;
6154
+ const responsePreview = this._formatResponsePreview(llmResponse);
6155
+ this.logger.debugStructured("\u{1F4E5} LLM Response", {
6156
+ Model: llm.model,
6157
+ "Token Count": tokenCount,
6158
+ "Function Calls": functionCallCount,
6159
+ "Response Preview": responsePreview,
6160
+ "Finish Reason": llmResponse.finishReason || "unknown",
6161
+ "Response #": responseCount,
6162
+ Partial: llmResponse.partial ? "Yes" : "No",
6163
+ Error: llmResponse.errorCode || "none"
6164
+ });
6152
6165
  const alteredLlmResponse = await this._handleAfterModelCallback(
6153
6166
  invocationContext,
6154
6167
  llmResponse,
6155
6168
  modelResponseEvent
6156
6169
  );
6157
- if (alteredLlmResponse) {
6158
- this.logger.debug("\u{1F4CB} After model callback altered response");
6159
- }
6160
6170
  yield alteredLlmResponse || llmResponse;
6161
6171
  }
6162
- this.logger.debug("\u2705 LLM call completed", {
6163
- totalResponses: responseCount
6164
- });
6165
6172
  }
6166
6173
  async _handleBeforeModelCallback(invocationContext, llmRequest, modelResponseEvent) {
6167
6174
  const agent = invocationContext.agent;
6168
6175
  if (!("canonicalBeforeModelCallbacks" in agent)) {
6169
- this.logger.debug("\u2139\uFE0F Agent has no before model callbacks");
6170
6176
  return;
6171
6177
  }
6172
6178
  const beforeCallbacks = agent.canonicalBeforeModelCallbacks;
6173
6179
  if (!beforeCallbacks) {
6174
- this.logger.debug("\u2139\uFE0F Before model callbacks is null/undefined");
6175
6180
  return;
6176
6181
  }
6177
- this.logger.debug("\u{1F504} Processing before model callbacks", {
6178
- callbackCount: beforeCallbacks.length
6179
- });
6180
6182
  const callbackContext = new CallbackContext(invocationContext, {
6181
6183
  eventActions: modelResponseEvent.actions
6182
6184
  });
6183
- for (let i = 0; i < beforeCallbacks.length; i++) {
6184
- const callback = beforeCallbacks[i];
6185
- this.logger.debug(`\u{1F504} Running before model callback ${i + 1}`);
6185
+ for (const callback of beforeCallbacks) {
6186
6186
  let beforeModelCallbackContent = callback({
6187
6187
  callbackContext,
6188
6188
  llmRequest
@@ -6191,35 +6191,23 @@ var BaseLlmFlow = class {
6191
6191
  beforeModelCallbackContent = await beforeModelCallbackContent;
6192
6192
  }
6193
6193
  if (beforeModelCallbackContent) {
6194
- this.logger.debug(`\u2705 Before model callback ${i + 1} returned content`);
6195
6194
  return beforeModelCallbackContent;
6196
6195
  }
6197
- this.logger.debug(
6198
- `\u2705 Before model callback ${i + 1} completed (no content)`
6199
- );
6200
6196
  }
6201
- this.logger.debug("\u2705 All before model callbacks completed");
6202
6197
  }
6203
6198
  async _handleAfterModelCallback(invocationContext, llmResponse, modelResponseEvent) {
6204
6199
  const agent = invocationContext.agent;
6205
6200
  if (!("canonicalAfterModelCallbacks" in agent)) {
6206
- this.logger.debug("\u2139\uFE0F Agent has no after model callbacks");
6207
6201
  return;
6208
6202
  }
6209
6203
  const afterCallbacks = agent.canonicalAfterModelCallbacks;
6210
6204
  if (!afterCallbacks) {
6211
- this.logger.debug("\u2139\uFE0F After model callbacks is null/undefined");
6212
6205
  return;
6213
6206
  }
6214
- this.logger.debug("\u{1F504} Processing after model callbacks", {
6215
- callbackCount: afterCallbacks.length
6216
- });
6217
6207
  const callbackContext = new CallbackContext(invocationContext, {
6218
6208
  eventActions: modelResponseEvent.actions
6219
6209
  });
6220
- for (let i = 0; i < afterCallbacks.length; i++) {
6221
- const callback = afterCallbacks[i];
6222
- this.logger.debug(`\u{1F504} Running after model callback ${i + 1}`);
6210
+ for (const callback of afterCallbacks) {
6223
6211
  let afterModelCallbackContent = callback({
6224
6212
  callbackContext,
6225
6213
  llmResponse
@@ -6228,21 +6216,11 @@ var BaseLlmFlow = class {
6228
6216
  afterModelCallbackContent = await afterModelCallbackContent;
6229
6217
  }
6230
6218
  if (afterModelCallbackContent) {
6231
- this.logger.debug(`\u2705 After model callback ${i + 1} returned content`);
6232
6219
  return afterModelCallbackContent;
6233
6220
  }
6234
- this.logger.debug(
6235
- `\u2705 After model callback ${i + 1} completed (no content)`
6236
- );
6237
6221
  }
6238
- this.logger.debug("\u2705 All after model callbacks completed");
6239
6222
  }
6240
6223
  _finalizeModelResponseEvent(llmRequest, llmResponse, modelResponseEvent) {
6241
- this.logger.debug("\u{1F4DD} Finalizing model response event", {
6242
- requestModel: llmRequest.model,
6243
- responseHasContent: !!llmResponse.content,
6244
- eventId: modelResponseEvent.id
6245
- });
6246
6224
  const eventData = { ...modelResponseEvent };
6247
6225
  const responseData = { ...llmResponse };
6248
6226
  Object.keys(responseData).forEach((key) => {
@@ -6254,91 +6232,55 @@ var BaseLlmFlow = class {
6254
6232
  if (event.content) {
6255
6233
  const functionCalls = event.getFunctionCalls();
6256
6234
  if (functionCalls) {
6257
- this.logger.debug("\u{1F527} Processing function calls in event", {
6258
- functionCallCount: functionCalls.length
6259
- });
6260
6235
  populateClientFunctionCallId(event);
6261
6236
  event.longRunningToolIds = getLongRunningFunctionCalls(
6262
6237
  functionCalls,
6263
6238
  llmRequest.toolsDict || {}
6264
6239
  );
6265
- this.logger.debug("\u2705 Function calls processed", {
6266
- longRunningToolCount: event.longRunningToolIds.entries.length || 0
6267
- });
6268
6240
  }
6269
6241
  }
6270
- this.logger.debug("\u2705 Model response event finalized", {
6271
- finalEventId: event.id,
6272
- hasContent: !!event.content,
6273
- hasFunctionCalls: !!event.getFunctionCalls()
6274
- });
6275
6242
  return event;
6276
6243
  }
6244
+ /**
6245
+ * Logs data in a visually appealing format that works well in any terminal size.
6246
+ * Uses vertical layout for better readability and respects debug settings.
6247
+ */
6248
+ _formatContentPreview(content) {
6249
+ if (!content) return "none";
6250
+ if (content.parts && Array.isArray(content.parts)) {
6251
+ const textParts = content.parts.filter((part) => part.text).map((part) => part.text).join(" ");
6252
+ return textParts.length > 80 ? `${textParts.substring(0, 80)}...` : textParts || "no text content";
6253
+ }
6254
+ if (typeof content === "string") {
6255
+ return content.length > 80 ? `${content.substring(0, 80)}...` : content;
6256
+ }
6257
+ const stringified = JSON.stringify(content);
6258
+ return stringified.length > 80 ? `${stringified.substring(0, 80)}...` : stringified;
6259
+ }
6260
+ /**
6261
+ * Formats response content preview for debug logging
6262
+ */
6263
+ _formatResponsePreview(llmResponse) {
6264
+ if (!llmResponse.content) return "none";
6265
+ if (llmResponse.content.parts && Array.isArray(llmResponse.content.parts)) {
6266
+ const textParts = llmResponse.content.parts.filter((part) => part.text).map((part) => part.text).join(" ");
6267
+ return textParts.length > 80 ? `${textParts.substring(0, 80)}...` : textParts || "no text content";
6268
+ }
6269
+ const stringified = JSON.stringify(llmResponse.content);
6270
+ return stringified.length > 80 ? `${stringified.substring(0, 80)}...` : stringified;
6271
+ }
6277
6272
  __getLlm(invocationContext) {
6278
6273
  const llm = invocationContext.agent.canonicalModel;
6279
- this.logger.debug("\u{1F527} Retrieved canonical model", {
6280
- model: llm?.model || "unknown",
6281
- llmType: llm?.constructor?.name || "unknown"
6282
- });
6283
6274
  return llm;
6284
6275
  }
6285
6276
  };
6286
6277
 
6287
- // src/flows/llm-flows/single-flow.ts
6288
- init_logger();
6289
-
6290
6278
  // src/flows/llm-flows/base-llm-processor.ts
6291
6279
  var BaseLlmRequestProcessor = class {
6292
6280
  };
6293
6281
  var BaseLlmResponseProcessor = class {
6294
6282
  };
6295
6283
 
6296
- // src/flows/llm-flows/basic.ts
6297
- var BasicLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6298
- async *runAsync(invocationContext, llmRequest) {
6299
- const agent = invocationContext.agent;
6300
- if (!this.isLlmAgent(agent)) {
6301
- return;
6302
- }
6303
- llmRequest.model = typeof agent.canonicalModel === "string" ? agent.canonicalModel : agent.canonicalModel.model;
6304
- if (agent.generateContentConfig) {
6305
- llmRequest.config = JSON.parse(
6306
- JSON.stringify(agent.generateContentConfig)
6307
- );
6308
- } else {
6309
- llmRequest.config = {};
6310
- }
6311
- if (agent.outputSchema) {
6312
- llmRequest.setOutputSchema(agent.outputSchema);
6313
- }
6314
- const runConfig = invocationContext.runConfig;
6315
- if (!llmRequest.liveConnectConfig) {
6316
- llmRequest.liveConnectConfig = {};
6317
- }
6318
- if (runConfig.responseModalities) {
6319
- llmRequest.liveConnectConfig.responseModalities = runConfig.responseModalities;
6320
- }
6321
- llmRequest.liveConnectConfig.speechConfig = runConfig.speechConfig;
6322
- llmRequest.liveConnectConfig.outputAudioTranscription = runConfig.outputAudioTranscription;
6323
- llmRequest.liveConnectConfig.inputAudioTranscription = runConfig.inputAudioTranscription;
6324
- llmRequest.liveConnectConfig.realtimeInputConfig = runConfig.realtimeInputConfig;
6325
- llmRequest.liveConnectConfig.enableAffectiveDialog = runConfig.enableAffectiveDialog;
6326
- llmRequest.liveConnectConfig.proactivity = runConfig.proactivity;
6327
- const tools = await agent.canonicalTools();
6328
- llmRequest.appendTools(tools);
6329
- for await (const _ of []) {
6330
- yield _;
6331
- }
6332
- }
6333
- /**
6334
- * Type guard to check if agent is an LlmAgent
6335
- */
6336
- isLlmAgent(agent) {
6337
- return agent && typeof agent === "object" && "canonicalModel" in agent;
6338
- }
6339
- };
6340
- var requestProcessor = new BasicLlmRequestProcessor();
6341
-
6342
6284
  // src/auth/auth-tool.ts
6343
6285
  var EnhancedAuthConfig = class {
6344
6286
  /**
@@ -6546,152 +6488,738 @@ var AuthLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6546
6488
  }
6547
6489
  }
6548
6490
  };
6549
- var requestProcessor2 = new AuthLlmRequestProcessor();
6491
+ var requestProcessor = new AuthLlmRequestProcessor();
6550
6492
 
6551
- // src/flows/llm-flows/identity.ts
6552
- var IdentityLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6493
+ // src/flows/llm-flows/basic.ts
6494
+ var BasicLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6553
6495
  async *runAsync(invocationContext, llmRequest) {
6554
6496
  const agent = invocationContext.agent;
6555
- const instructions = [
6556
- `You are an agent. Your internal name is "${agent.name}".`
6557
- ];
6558
- if (agent.description) {
6559
- instructions.push(` The description about you is "${agent.description}"`);
6497
+ if (!this.isLlmAgent(agent)) {
6498
+ return;
6560
6499
  }
6561
- llmRequest.appendInstructions(instructions);
6500
+ llmRequest.model = typeof agent.canonicalModel === "string" ? agent.canonicalModel : agent.canonicalModel.model;
6501
+ if (agent.generateContentConfig) {
6502
+ llmRequest.config = JSON.parse(
6503
+ JSON.stringify(agent.generateContentConfig)
6504
+ );
6505
+ } else {
6506
+ llmRequest.config = {};
6507
+ }
6508
+ if (agent.outputSchema) {
6509
+ llmRequest.setOutputSchema(agent.outputSchema);
6510
+ }
6511
+ const runConfig = invocationContext.runConfig;
6512
+ if (!llmRequest.liveConnectConfig) {
6513
+ llmRequest.liveConnectConfig = {};
6514
+ }
6515
+ if (runConfig.responseModalities) {
6516
+ llmRequest.liveConnectConfig.responseModalities = runConfig.responseModalities;
6517
+ }
6518
+ llmRequest.liveConnectConfig.speechConfig = runConfig.speechConfig;
6519
+ llmRequest.liveConnectConfig.outputAudioTranscription = runConfig.outputAudioTranscription;
6520
+ llmRequest.liveConnectConfig.inputAudioTranscription = runConfig.inputAudioTranscription;
6521
+ llmRequest.liveConnectConfig.realtimeInputConfig = runConfig.realtimeInputConfig;
6522
+ llmRequest.liveConnectConfig.enableAffectiveDialog = runConfig.enableAffectiveDialog;
6523
+ llmRequest.liveConnectConfig.proactivity = runConfig.proactivity;
6524
+ const tools = await agent.canonicalTools();
6525
+ llmRequest.appendTools(tools);
6562
6526
  for await (const _ of []) {
6563
6527
  yield _;
6564
6528
  }
6565
6529
  }
6530
+ /**
6531
+ * Type guard to check if agent is an LlmAgent
6532
+ */
6533
+ isLlmAgent(agent) {
6534
+ return agent && typeof agent === "object" && "canonicalModel" in agent;
6535
+ }
6566
6536
  };
6567
- var requestProcessor3 = new IdentityLlmRequestProcessor();
6537
+ var requestProcessor2 = new BasicLlmRequestProcessor();
6568
6538
 
6569
- // src/utils/instructions-utils.ts
6570
- async function injectSessionState(template, readonlyContext) {
6571
- const invocationContext = readonlyContext._invocationContext;
6572
- async function asyncReplace(pattern, replaceAsyncFn, string) {
6573
- const result = [];
6574
- let lastEnd = 0;
6575
- const matches = Array.from(string.matchAll(pattern));
6576
- for (const match of matches) {
6577
- result.push(string.slice(lastEnd, match.index));
6578
- const replacement = await replaceAsyncFn(match);
6579
- result.push(replacement);
6580
- lastEnd = (match.index || 0) + match[0].length;
6539
+ // src/code-executors/base-code-executor.ts
6540
+ var BaseCodeExecutor = class {
6541
+ config;
6542
+ constructor(config = {}) {
6543
+ this.config = {
6544
+ optimizeDataFile: config.optimizeDataFile ?? false,
6545
+ stateful: config.stateful ?? false,
6546
+ errorRetryAttempts: config.errorRetryAttempts ?? 2,
6547
+ codeBlockDelimiters: config.codeBlockDelimiters ?? [
6548
+ ["`tool_code\n", "\n`"],
6549
+ ["`python\n", "\n`"]
6550
+ ],
6551
+ executionResultDelimiters: config.executionResultDelimiters ?? [
6552
+ "`tool_output\n",
6553
+ "\n`"
6554
+ ]
6555
+ };
6556
+ }
6557
+ // Getters for configuration
6558
+ get optimizeDataFile() {
6559
+ return this.config.optimizeDataFile;
6560
+ }
6561
+ get stateful() {
6562
+ return this.config.stateful;
6563
+ }
6564
+ get errorRetryAttempts() {
6565
+ return this.config.errorRetryAttempts;
6566
+ }
6567
+ get codeBlockDelimiters() {
6568
+ return this.config.codeBlockDelimiters;
6569
+ }
6570
+ get executionResultDelimiters() {
6571
+ return this.config.executionResultDelimiters;
6572
+ }
6573
+ };
6574
+
6575
+ // src/code-executors/built-in-code-executor.ts
6576
+ var BuiltInCodeExecutor = class extends BaseCodeExecutor {
6577
+ constructor(config = {}) {
6578
+ super(config);
6579
+ }
6580
+ async executeCode(invocationContext, codeExecutionInput) {
6581
+ throw new Error(
6582
+ "BuiltInCodeExecutor.executeCode should not be called directly"
6583
+ );
6584
+ }
6585
+ /**
6586
+ * Pre-process the LLM request for Gemini 2.0+ models to use the code execution tool
6587
+ */
6588
+ processLlmRequest(llmRequest) {
6589
+ if (!llmRequest.model?.startsWith("gemini-2")) {
6590
+ throw new Error(
6591
+ `Gemini code execution tool is not supported for model ${llmRequest.model}`
6592
+ );
6581
6593
  }
6582
- result.push(string.slice(lastEnd));
6583
- return result.join("");
6594
+ if (!llmRequest.config) {
6595
+ llmRequest.config = {};
6596
+ }
6597
+ if (!llmRequest.config.tools) {
6598
+ llmRequest.config.tools = [];
6599
+ }
6600
+ const codeExecutionTool = {
6601
+ codeExecution: {}
6602
+ };
6603
+ llmRequest.config.tools.push(codeExecutionTool);
6584
6604
  }
6585
- async function replaceMatch(match) {
6586
- let varName = match[0].replace(/[{}]/g, "").trim();
6587
- let optional = false;
6588
- if (varName.endsWith("?")) {
6589
- optional = true;
6590
- varName = varName.slice(0, -1);
6605
+ };
6606
+
6607
+ // src/code-executors/code-execution-utils.ts
6608
+ import { Language, Outcome } from "@google/genai";
6609
+ var CodeExecutionUtils = class _CodeExecutionUtils {
6610
+ /**
6611
+ * Gets the file content as a base64-encoded string
6612
+ */
6613
+ static getEncodedFileContent(data) {
6614
+ let decodedData;
6615
+ if (data instanceof ArrayBuffer) {
6616
+ decodedData = new TextDecoder().decode(data);
6591
6617
  }
6592
- if (varName.startsWith("artifact.")) {
6593
- varName = varName.replace("artifact.", "");
6594
- if (!invocationContext.artifactService) {
6595
- throw new Error("Artifact service is not initialized.");
6596
- }
6597
- try {
6598
- const artifact = await invocationContext.artifactService.loadArtifact({
6599
- appName: invocationContext.session.appName,
6600
- userId: invocationContext.session.userId,
6601
- sessionId: invocationContext.session.id,
6602
- filename: varName
6603
- });
6604
- if (!artifact) {
6605
- throw new Error(`Artifact ${varName} not found.`);
6606
- }
6607
- return String(artifact);
6608
- } catch (error) {
6609
- if (optional) {
6610
- return "";
6611
- }
6612
- throw error;
6613
- }
6614
- } else {
6615
- if (!isValidStateName(varName)) {
6616
- return match[0];
6618
+ if (_CodeExecutionUtils.isBase64Encoded(decodedData)) {
6619
+ return decodedData;
6620
+ }
6621
+ return btoa(decodedData);
6622
+ }
6623
+ static isBase64Encoded(str) {
6624
+ try {
6625
+ return btoa(atob(str)) === str;
6626
+ } catch {
6627
+ return false;
6628
+ }
6629
+ }
6630
+ /**
6631
+ * Extracts the first code block from the content and truncates everything after it
6632
+ */
6633
+ static extractCodeAndTruncateContent(content, codeBlockDelimiters) {
6634
+ if (!content?.parts?.length) {
6635
+ return null;
6636
+ }
6637
+ for (let idx = 0; idx < content.parts.length; idx++) {
6638
+ const part = content.parts[idx];
6639
+ if (part.executableCode && (idx === content.parts.length - 1 || !content.parts[idx + 1].codeExecutionResult)) {
6640
+ content.parts = content.parts.slice(0, idx + 1);
6641
+ return part.executableCode.code;
6617
6642
  }
6618
- const sessionState = invocationContext.session.state;
6619
- if (varName in sessionState) {
6620
- return String(sessionState[varName]);
6643
+ }
6644
+ const textParts = content.parts.filter((p) => p.text);
6645
+ if (!textParts.length) {
6646
+ return null;
6647
+ }
6648
+ const responseText = textParts.map((p) => p.text).join("\n");
6649
+ const leadingDelimiterPattern = codeBlockDelimiters.map(([start]) => _CodeExecutionUtils.escapeRegex(start)).join("|");
6650
+ const trailingDelimiterPattern = codeBlockDelimiters.map(([, end]) => _CodeExecutionUtils.escapeRegex(end)).join("|");
6651
+ const pattern = new RegExp(
6652
+ `(.*?)(${leadingDelimiterPattern})(.*?)(${trailingDelimiterPattern})(.*?)$`,
6653
+ "s"
6654
+ );
6655
+ const match = responseText.match(pattern);
6656
+ if (!match) {
6657
+ return null;
6658
+ }
6659
+ const [, prefix, , code, , suffix] = match;
6660
+ if (!code) {
6661
+ return null;
6662
+ }
6663
+ content.parts = [];
6664
+ if (prefix) {
6665
+ content.parts.push({ text: prefix });
6666
+ }
6667
+ content.parts.push(_CodeExecutionUtils.buildExecutableCodePart(code));
6668
+ return code;
6669
+ }
6670
+ static escapeRegex(str) {
6671
+ return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
6672
+ }
6673
+ /**
6674
+ * Builds an executable code part with code string
6675
+ */
6676
+ static buildExecutableCodePart(code) {
6677
+ return {
6678
+ executableCode: {
6679
+ code,
6680
+ language: Language.PYTHON
6621
6681
  }
6622
- if (optional) {
6623
- return "";
6682
+ };
6683
+ }
6684
+ /**
6685
+ * Builds the code execution result part from the code execution result
6686
+ */
6687
+ static buildCodeExecutionResultPart(codeExecutionResult) {
6688
+ if (codeExecutionResult.stderr) {
6689
+ return {
6690
+ codeExecutionResult: {
6691
+ outcome: Outcome.OUTCOME_FAILED,
6692
+ output: codeExecutionResult.stderr
6693
+ }
6694
+ };
6695
+ }
6696
+ const finalResult = [];
6697
+ if (codeExecutionResult.stdout || !codeExecutionResult.outputFiles.length) {
6698
+ finalResult.push(
6699
+ `Code execution result:
6700
+ ${codeExecutionResult.stdout}
6701
+ `
6702
+ );
6703
+ }
6704
+ if (codeExecutionResult.outputFiles.length) {
6705
+ const fileNames = codeExecutionResult.outputFiles.map((f) => `\`${f.name}\``).join(",");
6706
+ finalResult.push(`Saved artifacts:
6707
+ ${fileNames}`);
6708
+ }
6709
+ return {
6710
+ codeExecutionResult: {
6711
+ outcome: Outcome.OUTCOME_OK,
6712
+ output: finalResult.join("\n\n")
6624
6713
  }
6625
- throw new Error(`Context variable not found: \`${varName}\`.`);
6714
+ };
6715
+ }
6716
+ /**
6717
+ * Converts the code execution parts to text parts in a Content
6718
+ */
6719
+ static convertCodeExecutionParts(content, codeBlockDelimiter, executionResultDelimiters) {
6720
+ if (!content.parts?.length) {
6721
+ return;
6722
+ }
6723
+ const lastPart = content.parts[content.parts.length - 1];
6724
+ if (lastPart.executableCode) {
6725
+ content.parts[content.parts.length - 1] = {
6726
+ text: `${codeBlockDelimiter[0]}${lastPart.executableCode.code}${codeBlockDelimiter[1]}`
6727
+ };
6728
+ } else if (content.parts.length === 1 && lastPart.codeExecutionResult) {
6729
+ content.parts[content.parts.length - 1] = {
6730
+ text: `${executionResultDelimiters[0]}${lastPart.codeExecutionResult.output}${executionResultDelimiters[1]}`
6731
+ };
6732
+ content.role = "user";
6626
6733
  }
6627
6734
  }
6628
- return await asyncReplace(/{[^{}]*}/g, replaceMatch, template);
6629
- }
6630
- function isValidStateName(varName) {
6631
- const parts = varName.split(":");
6632
- if (parts.length === 1) {
6633
- return isValidIdentifier(varName);
6735
+ };
6736
+
6737
+ // src/code-executors/code-executor-context.ts
6738
+ var CONTEXT_KEY = "_code_execution_context";
6739
+ var SESSION_ID_KEY = "execution_session_id";
6740
+ var PROCESSED_FILE_NAMES_KEY = "processed_input_files";
6741
+ var INPUT_FILE_KEY = "_code_executor_input_files";
6742
+ var ERROR_COUNT_KEY = "_code_executor_error_counts";
6743
+ var CODE_EXECUTION_RESULTS_KEY = "_code_execution_results";
6744
+ var CodeExecutorContext = class {
6745
+ context;
6746
+ sessionState;
6747
+ constructor(sessionState) {
6748
+ this.sessionState = sessionState;
6749
+ this.context = this.getCodeExecutorContext(sessionState);
6634
6750
  }
6635
- if (parts.length === 2) {
6636
- const validPrefixes = ["app:", "user:", "temp:"];
6637
- const prefix = `${parts[0]}:`;
6638
- if (validPrefixes.includes(prefix)) {
6639
- return isValidIdentifier(parts[1]);
6751
+ /**
6752
+ * Gets the state delta to update in the persistent session state.
6753
+ */
6754
+ getStateDelta() {
6755
+ const contextToUpdate = JSON.parse(JSON.stringify(this.context));
6756
+ return { [CONTEXT_KEY]: contextToUpdate };
6757
+ }
6758
+ /**
6759
+ * Gets the session ID for the code executor.
6760
+ */
6761
+ getExecutionId() {
6762
+ if (!(SESSION_ID_KEY in this.context)) {
6763
+ return null;
6640
6764
  }
6765
+ return this.context[SESSION_ID_KEY];
6641
6766
  }
6642
- return false;
6643
- }
6644
- function isValidIdentifier(name) {
6645
- const identifierRegex = /^[a-zA-Z_$][a-zA-Z0-9_$]*$/;
6646
- return identifierRegex.test(name);
6647
- }
6767
+ /**
6768
+ * Sets the session ID for the code executor.
6769
+ */
6770
+ setExecutionId(sessionId) {
6771
+ this.context[SESSION_ID_KEY] = sessionId;
6772
+ }
6773
+ /**
6774
+ * Gets the processed file names from the session state.
6775
+ */
6776
+ getProcessedFileNames() {
6777
+ if (!(PROCESSED_FILE_NAMES_KEY in this.context)) {
6778
+ return [];
6779
+ }
6780
+ return this.context[PROCESSED_FILE_NAMES_KEY];
6781
+ }
6782
+ /**
6783
+ * Adds the processed file names to the session state.
6784
+ */
6785
+ addProcessedFileNames(fileNames) {
6786
+ if (!(PROCESSED_FILE_NAMES_KEY in this.context)) {
6787
+ this.context[PROCESSED_FILE_NAMES_KEY] = [];
6788
+ }
6789
+ this.context[PROCESSED_FILE_NAMES_KEY].push(...fileNames);
6790
+ }
6791
+ /**
6792
+ * Gets the code executor input files from the session state.
6793
+ */
6794
+ getInputFiles() {
6795
+ if (!(INPUT_FILE_KEY in this.sessionState)) {
6796
+ return [];
6797
+ }
6798
+ return this.sessionState[INPUT_FILE_KEY].map(
6799
+ (file) => file
6800
+ );
6801
+ }
6802
+ /**
6803
+ * Adds the input files to the code executor context.
6804
+ */
6805
+ addInputFiles(inputFiles) {
6806
+ if (!(INPUT_FILE_KEY in this.sessionState)) {
6807
+ this.sessionState[INPUT_FILE_KEY] = [];
6808
+ }
6809
+ const fileArray = this.sessionState[INPUT_FILE_KEY];
6810
+ for (const inputFile of inputFiles) {
6811
+ fileArray.push({
6812
+ name: inputFile.name,
6813
+ content: inputFile.content,
6814
+ mimeType: inputFile.mimeType
6815
+ });
6816
+ }
6817
+ }
6818
+ /**
6819
+ * Removes the input files and processed file names from the code executor context.
6820
+ */
6821
+ clearInputFiles() {
6822
+ if (INPUT_FILE_KEY in this.sessionState) {
6823
+ this.sessionState[INPUT_FILE_KEY] = [];
6824
+ }
6825
+ if (PROCESSED_FILE_NAMES_KEY in this.context) {
6826
+ this.context[PROCESSED_FILE_NAMES_KEY] = [];
6827
+ }
6828
+ }
6829
+ /**
6830
+ * Gets the error count from the session state.
6831
+ */
6832
+ getErrorCount(invocationId) {
6833
+ if (!(ERROR_COUNT_KEY in this.sessionState)) {
6834
+ return 0;
6835
+ }
6836
+ const errorCounts = this.sessionState[ERROR_COUNT_KEY];
6837
+ return errorCounts[invocationId] ?? 0;
6838
+ }
6839
+ /**
6840
+ * Increments the error count for the given invocation ID.
6841
+ */
6842
+ incrementErrorCount(invocationId) {
6843
+ if (!(ERROR_COUNT_KEY in this.sessionState)) {
6844
+ this.sessionState[ERROR_COUNT_KEY] = {};
6845
+ }
6846
+ const errorCounts = this.sessionState[ERROR_COUNT_KEY];
6847
+ errorCounts[invocationId] = this.getErrorCount(invocationId) + 1;
6848
+ }
6849
+ /**
6850
+ * Resets the error count for the given invocation ID.
6851
+ */
6852
+ resetErrorCount(invocationId) {
6853
+ if (!(ERROR_COUNT_KEY in this.sessionState)) {
6854
+ return;
6855
+ }
6856
+ const errorCounts = this.sessionState[ERROR_COUNT_KEY];
6857
+ if (invocationId in errorCounts) {
6858
+ delete errorCounts[invocationId];
6859
+ }
6860
+ }
6861
+ /**
6862
+ * Updates the code execution result.
6863
+ */
6864
+ updateCodeExecutionResult(invocationId, code, resultStdout, resultStderr) {
6865
+ if (!(CODE_EXECUTION_RESULTS_KEY in this.sessionState)) {
6866
+ this.sessionState[CODE_EXECUTION_RESULTS_KEY] = {};
6867
+ }
6868
+ const results = this.sessionState[CODE_EXECUTION_RESULTS_KEY];
6869
+ if (!(invocationId in results)) {
6870
+ results[invocationId] = [];
6871
+ }
6872
+ results[invocationId].push({
6873
+ code,
6874
+ resultStdout,
6875
+ resultStderr,
6876
+ timestamp: Math.floor(Date.now() / 1e3)
6877
+ });
6878
+ }
6879
+ /**
6880
+ * Gets the code executor context from the session state.
6881
+ */
6882
+ getCodeExecutorContext(sessionState) {
6883
+ if (!(CONTEXT_KEY in sessionState)) {
6884
+ sessionState[CONTEXT_KEY] = {};
6885
+ }
6886
+ return sessionState[CONTEXT_KEY];
6887
+ }
6888
+ };
6648
6889
 
6649
- // src/flows/llm-flows/instructions.ts
6650
- var InstructionsLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6890
+ // src/flows/llm-flows/code-execution.ts
6891
+ var DATA_FILE_UTIL_MAP = {
6892
+ "text/csv": {
6893
+ extension: ".csv",
6894
+ loaderCodeTemplate: "pd.read_csv('{filename}')"
6895
+ }
6896
+ };
6897
+ var DATA_FILE_HELPER_LIB = `
6898
+ import pandas as pd
6899
+
6900
+ def explore_df(df: pd.DataFrame) -> None:
6901
+ """Prints some information about a pandas DataFrame."""
6902
+
6903
+ with pd.option_context(
6904
+ 'display.max_columns', None, 'display.expand_frame_repr', False
6905
+ ):
6906
+ # Print the column names to never encounter KeyError when selecting one.
6907
+ df_dtypes = df.dtypes
6908
+
6909
+ # Obtain information about data types and missing values.
6910
+ df_nulls = (len(df) - df.isnull().sum()).apply(
6911
+ lambda x: f'{x} / {df.shape[0]} non-null'
6912
+ )
6913
+
6914
+ # Explore unique total values in columns using \`.unique()\`.
6915
+ df_unique_count = df.apply(lambda x: len(x.unique()))
6916
+
6917
+ # Explore unique values in columns using \`.unique()\`.
6918
+ df_unique = df.apply(lambda x: crop(str(list(x.unique()))))
6919
+
6920
+ df_info = pd.concat(
6921
+ (
6922
+ df_dtypes.rename('Dtype'),
6923
+ df_nulls.rename('Non-Null Count'),
6924
+ df_unique_count.rename('Unique Values Count'),
6925
+ df_unique.rename('Unique Values'),
6926
+ ),
6927
+ axis=1,
6928
+ )
6929
+ df_info.index.name = 'Columns'
6930
+ print(f"""Total rows: {df.shape[0]}
6931
+ Total columns: {df.shape[1]}
6932
+
6933
+ {df_info}""")
6934
+
6935
+ def crop(text: str, max_length: int = 100) -> str:
6936
+ """Crop text to maximum length with ellipsis."""
6937
+ return text if len(text) <= max_length else text[:max_length] + "..."
6938
+ `;
6939
+ function hasCodeExecutor(agent) {
6940
+ return agent && typeof agent === "object" && "codeExecutor" in agent;
6941
+ }
6942
+ var CodeExecutionRequestProcessor = class extends BaseLlmRequestProcessor {
6651
6943
  async *runAsync(invocationContext, llmRequest) {
6652
6944
  const agent = invocationContext.agent;
6653
- if (!this.isLlmAgent(agent)) {
6945
+ if (!hasCodeExecutor(agent)) {
6654
6946
  return;
6655
6947
  }
6656
- const rootAgent = agent.rootAgent;
6657
- if (this.isLlmAgent(rootAgent) && rootAgent.globalInstruction) {
6658
- const [rawInstruction, bypassStateInjection] = await rootAgent.canonicalGlobalInstruction(
6659
- new ReadonlyContext(invocationContext)
6948
+ if (!(agent instanceof LlmAgent) || !agent.codeExecutor) {
6949
+ return;
6950
+ }
6951
+ yield* runPreProcessor(invocationContext, llmRequest);
6952
+ if (!(agent.codeExecutor instanceof BaseCodeExecutor)) {
6953
+ return;
6954
+ }
6955
+ for (const content of llmRequest.contents || []) {
6956
+ CodeExecutionUtils.convertCodeExecutionParts(
6957
+ content,
6958
+ agent.codeExecutor.codeBlockDelimiters[0] || ["", ""],
6959
+ agent.codeExecutor.executionResultDelimiters
6660
6960
  );
6661
- let instruction = rawInstruction;
6662
- if (!bypassStateInjection) {
6663
- instruction = await injectSessionState(
6664
- rawInstruction,
6665
- new ReadonlyContext(invocationContext)
6666
- );
6961
+ }
6962
+ }
6963
+ };
6964
+ var CodeExecutionResponseProcessor = class extends BaseLlmResponseProcessor {
6965
+ async *runAsync(invocationContext, llmResponse) {
6966
+ if (llmResponse.partial) {
6967
+ return;
6968
+ }
6969
+ yield* runPostProcessor(invocationContext, llmResponse);
6970
+ }
6971
+ };
6972
+ async function* runPreProcessor(invocationContext, llmRequest) {
6973
+ const agent = invocationContext.agent;
6974
+ if (!hasCodeExecutor(agent)) {
6975
+ return;
6976
+ }
6977
+ const codeExecutor = agent.codeExecutor;
6978
+ if (!codeExecutor || !(codeExecutor instanceof BaseCodeExecutor)) {
6979
+ return;
6980
+ }
6981
+ if (codeExecutor instanceof BuiltInCodeExecutor) {
6982
+ codeExecutor.processLlmRequest(llmRequest);
6983
+ return;
6984
+ }
6985
+ if (!codeExecutor.optimizeDataFile) {
6986
+ return;
6987
+ }
6988
+ const codeExecutorContext = new CodeExecutorContext(
6989
+ invocationContext.session.state
6990
+ // Type assertion for State compatibility
6991
+ );
6992
+ if (codeExecutorContext.getErrorCount(invocationContext.invocationId) >= codeExecutor.errorRetryAttempts) {
6993
+ return;
6994
+ }
6995
+ const allInputFiles = extractAndReplaceInlineFiles(
6996
+ codeExecutorContext,
6997
+ llmRequest
6998
+ );
6999
+ const processedFileNames = new Set(
7000
+ codeExecutorContext.getProcessedFileNames()
7001
+ );
7002
+ const filesToProcess = allInputFiles.filter(
7003
+ (f) => !processedFileNames.has(f.name)
7004
+ );
7005
+ for (const file of filesToProcess) {
7006
+ const codeStr = getDataFilePreprocessingCode(file);
7007
+ if (!codeStr) {
7008
+ continue;
7009
+ }
7010
+ const codeContent = {
7011
+ role: "model",
7012
+ parts: [
7013
+ { text: `Processing input file: \`${file.name}\`` },
7014
+ CodeExecutionUtils.buildExecutableCodePart(codeStr)
7015
+ ]
7016
+ };
7017
+ llmRequest.contents = llmRequest.contents || [];
7018
+ llmRequest.contents.push(structuredClone(codeContent));
7019
+ yield new Event({
7020
+ invocationId: invocationContext.invocationId,
7021
+ author: agent.name,
7022
+ branch: invocationContext.branch,
7023
+ content: codeContent
7024
+ });
7025
+ const codeExecutionResult = await codeExecutor.executeCode(
7026
+ invocationContext,
7027
+ {
7028
+ code: codeStr,
7029
+ inputFiles: [file],
7030
+ executionId: getOrSetExecutionId(
7031
+ invocationContext,
7032
+ codeExecutorContext
7033
+ )
6667
7034
  }
6668
- llmRequest.appendInstructions([instruction]);
7035
+ );
7036
+ codeExecutorContext.updateCodeExecutionResult(
7037
+ invocationContext.invocationId,
7038
+ codeStr,
7039
+ codeExecutionResult.stdout,
7040
+ codeExecutionResult.stderr
7041
+ );
7042
+ codeExecutorContext.addProcessedFileNames([file.name]);
7043
+ const executionResultEvent = await postProcessCodeExecutionResult(
7044
+ invocationContext,
7045
+ codeExecutorContext,
7046
+ codeExecutionResult
7047
+ );
7048
+ yield executionResultEvent;
7049
+ llmRequest.contents.push(structuredClone(executionResultEvent.content));
7050
+ }
7051
+ }
7052
+ async function* runPostProcessor(invocationContext, llmResponse) {
7053
+ const agent = invocationContext.agent;
7054
+ if (!hasCodeExecutor(agent)) {
7055
+ return;
7056
+ }
7057
+ const codeExecutor = agent.codeExecutor;
7058
+ if (!(codeExecutor instanceof BaseCodeExecutor)) {
7059
+ return;
7060
+ }
7061
+ if (!llmResponse || !llmResponse.content) {
7062
+ return;
7063
+ }
7064
+ if (codeExecutor instanceof BuiltInCodeExecutor) {
7065
+ return;
7066
+ }
7067
+ const codeExecutorContext = new CodeExecutorContext(
7068
+ invocationContext.session.state
7069
+ // Type assertion for State compatibility
7070
+ );
7071
+ if (codeExecutorContext.getErrorCount(invocationContext.invocationId) >= codeExecutor.errorRetryAttempts) {
7072
+ return;
7073
+ }
7074
+ const responseContent = llmResponse.content;
7075
+ const codeStr = CodeExecutionUtils.extractCodeAndTruncateContent(
7076
+ responseContent,
7077
+ codeExecutor.codeBlockDelimiters
7078
+ );
7079
+ if (!codeStr) {
7080
+ return;
7081
+ }
7082
+ yield new Event({
7083
+ invocationId: invocationContext.invocationId,
7084
+ author: agent.name,
7085
+ branch: invocationContext.branch,
7086
+ content: responseContent,
7087
+ actions: new EventActions()
7088
+ });
7089
+ const codeExecutionResult = await codeExecutor.executeCode(
7090
+ invocationContext,
7091
+ {
7092
+ code: codeStr,
7093
+ inputFiles: codeExecutorContext.getInputFiles(),
7094
+ executionId: getOrSetExecutionId(invocationContext, codeExecutorContext)
6669
7095
  }
6670
- if (agent.instruction) {
6671
- const [rawInstruction, bypassStateInjection] = await agent.canonicalInstruction(
6672
- new ReadonlyContext(invocationContext)
6673
- );
6674
- let instruction = rawInstruction;
6675
- if (!bypassStateInjection) {
6676
- instruction = await injectSessionState(
6677
- rawInstruction,
6678
- new ReadonlyContext(invocationContext)
6679
- );
7096
+ );
7097
+ codeExecutorContext.updateCodeExecutionResult(
7098
+ invocationContext.invocationId,
7099
+ codeStr,
7100
+ codeExecutionResult.stdout,
7101
+ codeExecutionResult.stderr
7102
+ );
7103
+ yield await postProcessCodeExecutionResult(
7104
+ invocationContext,
7105
+ codeExecutorContext,
7106
+ codeExecutionResult
7107
+ );
7108
+ llmResponse.content = void 0;
7109
+ }
7110
+ function extractAndReplaceInlineFiles(codeExecutorContext, llmRequest) {
7111
+ const allInputFiles = codeExecutorContext.getInputFiles();
7112
+ const savedFileNames = new Set(allInputFiles.map((f) => f.name));
7113
+ for (let i = 0; i < (llmRequest.contents?.length || 0); i++) {
7114
+ const content = llmRequest.contents[i];
7115
+ if (content.role !== "user" || !content.parts) {
7116
+ continue;
7117
+ }
7118
+ for (let j = 0; j < content.parts.length; j++) {
7119
+ const part = content.parts[j];
7120
+ if (!part.inlineData || !(part.inlineData.mimeType in DATA_FILE_UTIL_MAP)) {
7121
+ continue;
7122
+ }
7123
+ const mimeType = part.inlineData.mimeType;
7124
+ const fileName = `data_${i + 1}_${j + 1}${DATA_FILE_UTIL_MAP[mimeType].extension}`;
7125
+ llmRequest.contents[i].parts[j] = {
7126
+ text: `
7127
+ Available file: \`${fileName}\`
7128
+ `
7129
+ };
7130
+ const file = {
7131
+ name: fileName,
7132
+ content: CodeExecutionUtils.getEncodedFileContent(part.inlineData.data),
7133
+ mimeType
7134
+ };
7135
+ if (!savedFileNames.has(fileName)) {
7136
+ codeExecutorContext.addInputFiles([file]);
7137
+ allInputFiles.push(file);
6680
7138
  }
6681
- llmRequest.appendInstructions([instruction]);
6682
7139
  }
6683
- for await (const _ of []) {
6684
- yield _;
7140
+ }
7141
+ return allInputFiles;
7142
+ }
7143
+ function getOrSetExecutionId(invocationContext, codeExecutorContext) {
7144
+ const agent = invocationContext.agent;
7145
+ if (!hasCodeExecutor(agent) || !agent.codeExecutor?.stateful) {
7146
+ return void 0;
7147
+ }
7148
+ let executionId = codeExecutorContext.getExecutionId();
7149
+ if (!executionId) {
7150
+ executionId = invocationContext.session.id;
7151
+ codeExecutorContext.setExecutionId(executionId);
7152
+ }
7153
+ return executionId;
7154
+ }
7155
+ async function postProcessCodeExecutionResult(invocationContext, codeExecutorContext, codeExecutionResult) {
7156
+ if (!invocationContext.artifactService) {
7157
+ throw new Error("Artifact service is not initialized.");
7158
+ }
7159
+ const resultContent = {
7160
+ role: "model",
7161
+ parts: [
7162
+ CodeExecutionUtils.buildCodeExecutionResultPart(codeExecutionResult)
7163
+ ]
7164
+ };
7165
+ const eventActions = new EventActions({
7166
+ stateDelta: codeExecutorContext.getStateDelta()
7167
+ });
7168
+ if (codeExecutionResult.stderr) {
7169
+ codeExecutorContext.incrementErrorCount(invocationContext.invocationId);
7170
+ } else {
7171
+ codeExecutorContext.resetErrorCount(invocationContext.invocationId);
7172
+ }
7173
+ for (const outputFile of codeExecutionResult.outputFiles) {
7174
+ const version = await invocationContext.artifactService.saveArtifact({
7175
+ appName: invocationContext.appName,
7176
+ userId: invocationContext.userId,
7177
+ sessionId: invocationContext.session.id,
7178
+ filename: outputFile.name,
7179
+ artifact: {
7180
+ inlineData: {
7181
+ data: atob(outputFile.content),
7182
+ // Convert from base64
7183
+ mimeType: outputFile.mimeType
7184
+ }
7185
+ }
7186
+ });
7187
+ eventActions.artifactDelta[outputFile.name] = version;
7188
+ }
7189
+ return new Event({
7190
+ invocationId: invocationContext.invocationId,
7191
+ author: invocationContext.agent.name,
7192
+ branch: invocationContext.branch,
7193
+ content: resultContent,
7194
+ actions: eventActions
7195
+ });
7196
+ }
7197
+ function getDataFilePreprocessingCode(file) {
7198
+ function getNormalizedFileName(fileName) {
7199
+ const baseName = fileName.split(".")[0];
7200
+ let varName2 = baseName.replace(/[^a-zA-Z0-9_]/g, "_");
7201
+ if (/^\d/.test(varName2)) {
7202
+ varName2 = `_${varName2}`;
6685
7203
  }
7204
+ return varName2;
6686
7205
  }
6687
- /**
6688
- * Type guard to check if agent is an LlmAgent
6689
- */
6690
- isLlmAgent(agent) {
6691
- return agent && typeof agent === "object" && "canonicalModel" in agent;
7206
+ if (!(file.mimeType in DATA_FILE_UTIL_MAP)) {
7207
+ return void 0;
6692
7208
  }
6693
- };
6694
- var requestProcessor4 = new InstructionsLlmRequestProcessor();
7209
+ const varName = getNormalizedFileName(file.name);
7210
+ const loaderCode = DATA_FILE_UTIL_MAP[file.mimeType].loaderCodeTemplate.replace("{filename}", file.name);
7211
+ return `
7212
+ ${DATA_FILE_HELPER_LIB}
7213
+
7214
+ # Load the dataframe.
7215
+ ${varName} = ${loaderCode}
7216
+
7217
+ # Use \`explore_df\` to guide my analysis.
7218
+ explore_df(${varName})
7219
+ `;
7220
+ }
7221
+ var requestProcessor3 = new CodeExecutionRequestProcessor();
7222
+ var responseProcessor = new CodeExecutionResponseProcessor();
6695
7223
 
6696
7224
  // src/flows/llm-flows/contents.ts
6697
7225
  var ContentLlmRequestProcessor = class extends BaseLlmRequestProcessor {
@@ -6724,7 +7252,7 @@ var ContentLlmRequestProcessor = class extends BaseLlmRequestProcessor {
6724
7252
  return agent && typeof agent === "object" && "canonicalModel" in agent;
6725
7253
  }
6726
7254
  };
6727
- var requestProcessor5 = new ContentLlmRequestProcessor();
7255
+ var requestProcessor4 = new ContentLlmRequestProcessor();
6728
7256
  function rearrangeEventsForAsyncFunctionResponsesInHistory(events) {
6729
7257
  const functionCallIdToResponseEventsIndex = {};
6730
7258
  for (let i = 0; i < events.length; i++) {
@@ -6989,6 +7517,151 @@ function isAuthEvent(event) {
6989
7517
  return false;
6990
7518
  }
6991
7519
 
7520
+ // src/flows/llm-flows/identity.ts
7521
+ var IdentityLlmRequestProcessor = class extends BaseLlmRequestProcessor {
7522
+ async *runAsync(invocationContext, llmRequest) {
7523
+ const agent = invocationContext.agent;
7524
+ const instructions = [
7525
+ `You are an agent. Your internal name is "${agent.name}".`
7526
+ ];
7527
+ if (agent.description) {
7528
+ instructions.push(` The description about you is "${agent.description}"`);
7529
+ }
7530
+ llmRequest.appendInstructions(instructions);
7531
+ for await (const _ of []) {
7532
+ yield _;
7533
+ }
7534
+ }
7535
+ };
7536
+ var requestProcessor5 = new IdentityLlmRequestProcessor();
7537
+
7538
+ // src/utils/instructions-utils.ts
7539
+ async function injectSessionState(template, readonlyContext) {
7540
+ const invocationContext = readonlyContext._invocationContext;
7541
+ async function asyncReplace(pattern, replaceAsyncFn, string) {
7542
+ const result = [];
7543
+ let lastEnd = 0;
7544
+ const matches = Array.from(string.matchAll(pattern));
7545
+ for (const match of matches) {
7546
+ result.push(string.slice(lastEnd, match.index));
7547
+ const replacement = await replaceAsyncFn(match);
7548
+ result.push(replacement);
7549
+ lastEnd = (match.index || 0) + match[0].length;
7550
+ }
7551
+ result.push(string.slice(lastEnd));
7552
+ return result.join("");
7553
+ }
7554
+ async function replaceMatch(match) {
7555
+ let varName = match[0].replace(/[{}]/g, "").trim();
7556
+ let optional = false;
7557
+ if (varName.endsWith("?")) {
7558
+ optional = true;
7559
+ varName = varName.slice(0, -1);
7560
+ }
7561
+ if (varName.startsWith("artifact.")) {
7562
+ varName = varName.replace("artifact.", "");
7563
+ if (!invocationContext.artifactService) {
7564
+ throw new Error("Artifact service is not initialized.");
7565
+ }
7566
+ try {
7567
+ const artifact = await invocationContext.artifactService.loadArtifact({
7568
+ appName: invocationContext.session.appName,
7569
+ userId: invocationContext.session.userId,
7570
+ sessionId: invocationContext.session.id,
7571
+ filename: varName
7572
+ });
7573
+ if (!artifact) {
7574
+ throw new Error(`Artifact ${varName} not found.`);
7575
+ }
7576
+ return String(artifact);
7577
+ } catch (error) {
7578
+ if (optional) {
7579
+ return "";
7580
+ }
7581
+ throw error;
7582
+ }
7583
+ } else {
7584
+ if (!isValidStateName(varName)) {
7585
+ return match[0];
7586
+ }
7587
+ const sessionState = invocationContext.session.state;
7588
+ if (varName in sessionState) {
7589
+ return String(sessionState[varName]);
7590
+ }
7591
+ if (optional) {
7592
+ return "";
7593
+ }
7594
+ throw new Error(`Context variable not found: \`${varName}\`.`);
7595
+ }
7596
+ }
7597
+ return await asyncReplace(/{[^{}]*}/g, replaceMatch, template);
7598
+ }
7599
+ function isValidStateName(varName) {
7600
+ const parts = varName.split(":");
7601
+ if (parts.length === 1) {
7602
+ return isValidIdentifier(varName);
7603
+ }
7604
+ if (parts.length === 2) {
7605
+ const validPrefixes = ["app:", "user:", "temp:"];
7606
+ const prefix = `${parts[0]}:`;
7607
+ if (validPrefixes.includes(prefix)) {
7608
+ return isValidIdentifier(parts[1]);
7609
+ }
7610
+ }
7611
+ return false;
7612
+ }
7613
+ function isValidIdentifier(name) {
7614
+ const identifierRegex = /^[a-zA-Z_$][a-zA-Z0-9_$]*$/;
7615
+ return identifierRegex.test(name);
7616
+ }
7617
+
7618
+ // src/flows/llm-flows/instructions.ts
7619
+ var InstructionsLlmRequestProcessor = class extends BaseLlmRequestProcessor {
7620
+ async *runAsync(invocationContext, llmRequest) {
7621
+ const agent = invocationContext.agent;
7622
+ if (!this.isLlmAgent(agent)) {
7623
+ return;
7624
+ }
7625
+ const rootAgent = agent.rootAgent;
7626
+ if (this.isLlmAgent(rootAgent) && rootAgent.globalInstruction) {
7627
+ const [rawInstruction, bypassStateInjection] = await rootAgent.canonicalGlobalInstruction(
7628
+ new ReadonlyContext(invocationContext)
7629
+ );
7630
+ let instruction = rawInstruction;
7631
+ if (!bypassStateInjection) {
7632
+ instruction = await injectSessionState(
7633
+ rawInstruction,
7634
+ new ReadonlyContext(invocationContext)
7635
+ );
7636
+ }
7637
+ llmRequest.appendInstructions([instruction]);
7638
+ }
7639
+ if (agent.instruction) {
7640
+ const [rawInstruction, bypassStateInjection] = await agent.canonicalInstruction(
7641
+ new ReadonlyContext(invocationContext)
7642
+ );
7643
+ let instruction = rawInstruction;
7644
+ if (!bypassStateInjection) {
7645
+ instruction = await injectSessionState(
7646
+ rawInstruction,
7647
+ new ReadonlyContext(invocationContext)
7648
+ );
7649
+ }
7650
+ llmRequest.appendInstructions([instruction]);
7651
+ }
7652
+ for await (const _ of []) {
7653
+ yield _;
7654
+ }
7655
+ }
7656
+ /**
7657
+ * Type guard to check if agent is an LlmAgent
7658
+ */
7659
+ isLlmAgent(agent) {
7660
+ return agent && typeof agent === "object" && "canonicalModel" in agent;
7661
+ }
7662
+ };
7663
+ var requestProcessor6 = new InstructionsLlmRequestProcessor();
7664
+
6992
7665
  // src/planners/base-planner.ts
6993
7666
  var BasePlanner = class {
6994
7667
  };
@@ -7264,66 +7937,10 @@ function removeThoughtFromRequest(llmRequest) {
7264
7937
  }
7265
7938
  }
7266
7939
  }
7267
- var requestProcessor6 = new NlPlanningRequestProcessor();
7268
- var responseProcessor = new NlPlanningResponseProcessor();
7269
-
7270
- // src/flows/llm-flows/code-execution.ts
7271
- var CodeExecutionRequestProcessor = class extends BaseLlmRequestProcessor {
7272
- async *runAsync(invocationContext, llmRequest) {
7273
- const agent = invocationContext.agent;
7274
- if (!("codeExecutor" in agent) || !agent.codeExecutor) {
7275
- return;
7276
- }
7277
- console.log(
7278
- "Code execution request processing - TODO: Implement when code-executors module is ready"
7279
- );
7280
- for await (const _ of []) {
7281
- yield _;
7282
- }
7283
- }
7284
- /**
7285
- * Placeholder for pre-processor logic
7286
- * TODO: Implement when code-executors are ready
7287
- */
7288
- async *runPreProcessor(invocationContext, llmRequest) {
7289
- console.log("Code execution pre-processor - placeholder");
7290
- for await (const _ of []) {
7291
- yield _;
7292
- }
7293
- }
7294
- };
7295
- var CodeExecutionResponseProcessor = class extends BaseLlmResponseProcessor {
7296
- async *runAsync(invocationContext, llmResponse) {
7297
- if (llmResponse.partial) {
7298
- return;
7299
- }
7300
- const agent = invocationContext.agent;
7301
- if (!("codeExecutor" in agent) || !agent.codeExecutor) {
7302
- return;
7303
- }
7304
- console.log(
7305
- "Code execution response processing - TODO: Implement when code-executors module is ready"
7306
- );
7307
- for await (const _ of []) {
7308
- yield _;
7309
- }
7310
- }
7311
- /**
7312
- * Placeholder for post-processor logic
7313
- * TODO: Implement when code-executors are ready
7314
- */
7315
- async *runPostProcessor(invocationContext, llmResponse) {
7316
- console.log("Code execution post-processor - placeholder");
7317
- for await (const _ of []) {
7318
- yield _;
7319
- }
7320
- }
7321
- };
7322
- var requestProcessor7 = new CodeExecutionRequestProcessor();
7323
- var responseProcessor2 = new CodeExecutionResponseProcessor();
7940
+ var requestProcessor7 = new NlPlanningRequestProcessor();
7941
+ var responseProcessor2 = new NlPlanningResponseProcessor();
7324
7942
 
7325
7943
  // src/flows/llm-flows/single-flow.ts
7326
- var logger7 = new Logger({ name: "SingleFlow" });
7327
7944
  var SingleFlow = class extends BaseLlmFlow {
7328
7945
  /**
7329
7946
  * Constructor for SingleFlow
@@ -7331,35 +7948,32 @@ var SingleFlow = class extends BaseLlmFlow {
7331
7948
  constructor() {
7332
7949
  super();
7333
7950
  this.requestProcessors.push(
7334
- requestProcessor,
7335
7951
  requestProcessor2,
7952
+ requestProcessor,
7336
7953
  // Phase 3: Auth preprocessor
7337
- requestProcessor4,
7338
- requestProcessor3,
7954
+ requestProcessor6,
7339
7955
  requestProcessor5,
7956
+ requestProcessor4,
7340
7957
  // Some implementations of NL Planning mark planning contents as thoughts
7341
7958
  // in the post processor. Since these need to be unmarked, NL Planning
7342
7959
  // should be after contents.
7343
- requestProcessor6,
7960
+ requestProcessor7,
7344
7961
  // Phase 5: NL Planning
7345
7962
  // Code execution should be after the contents as it mutates the contents
7346
7963
  // to optimize data files.
7347
- requestProcessor7
7964
+ requestProcessor3
7348
7965
  // Phase 5: Code Execution (placeholder)
7349
7966
  );
7350
7967
  this.responseProcessors.push(
7351
- responseProcessor,
7968
+ responseProcessor2,
7352
7969
  // Phase 5: NL Planning
7353
- responseProcessor2
7970
+ responseProcessor
7354
7971
  // Phase 5: Code Execution (placeholder)
7355
7972
  );
7356
- logger7.debug("SingleFlow initialized with processors");
7973
+ this.logger.debug("SingleFlow initialized with processors");
7357
7974
  }
7358
7975
  };
7359
7976
 
7360
- // src/flows/llm-flows/auto-flow.ts
7361
- init_logger();
7362
-
7363
7977
  // src/flows/llm-flows/agent-transfer.ts
7364
7978
  var AgentTransferLlmRequestProcessor = class extends BaseLlmRequestProcessor {
7365
7979
  /**
@@ -7449,7 +8063,6 @@ function getTransferTargets(agent) {
7449
8063
  var requestProcessor8 = new AgentTransferLlmRequestProcessor();
7450
8064
 
7451
8065
  // src/flows/llm-flows/auto-flow.ts
7452
- var logger8 = new Logger({ name: "AutoFlow" });
7453
8066
  var AutoFlow = class extends SingleFlow {
7454
8067
  /**
7455
8068
  * Constructor for AutoFlow
@@ -7457,7 +8070,7 @@ var AutoFlow = class extends SingleFlow {
7457
8070
  constructor() {
7458
8071
  super();
7459
8072
  this.requestProcessors.push(requestProcessor8);
7460
- logger8.debug("AutoFlow initialized with agent transfer capability");
8073
+ this.logger.debug("AutoFlow initialized with agent transfer capability");
7461
8074
  }
7462
8075
  };
7463
8076
 
@@ -7482,6 +8095,10 @@ var LlmAgent = class _LlmAgent extends BaseAgent {
7482
8095
  * Tools available to this agent
7483
8096
  */
7484
8097
  tools;
8098
+ /**
8099
+ * Code executor for this agent
8100
+ */
8101
+ codeExecutor;
7485
8102
  /**
7486
8103
  * Disallows LLM-controlled transferring to the parent agent
7487
8104
  */
@@ -7549,6 +8166,7 @@ var LlmAgent = class _LlmAgent extends BaseAgent {
7549
8166
  this.instruction = config.instruction || "";
7550
8167
  this.globalInstruction = config.globalInstruction || "";
7551
8168
  this.tools = config.tools || [];
8169
+ this.codeExecutor = config.codeExecutor;
7552
8170
  this.disallowTransferToParent = config.disallowTransferToParent || false;
7553
8171
  this.disallowTransferToPeers = config.disallowTransferToPeers || false;
7554
8172
  this.includeContents = config.includeContents || "default";
@@ -7568,11 +8186,14 @@ var LlmAgent = class _LlmAgent extends BaseAgent {
7568
8186
  * This method is only for use by Agent Development Kit
7569
8187
  */
7570
8188
  get canonicalModel() {
7571
- if (typeof this.model !== "string") {
8189
+ if (typeof this.model === "string") {
8190
+ if (this.model) {
8191
+ return LLMRegistry.newLLM(this.model);
8192
+ }
8193
+ } else if (this.model instanceof BaseLlm) {
7572
8194
  return this.model;
7573
- }
7574
- if (this.model) {
7575
- return LLMRegistry.newLLM(this.model);
8195
+ } else if (this.model) {
8196
+ return new AiSdkLlm(this.model);
7576
8197
  }
7577
8198
  let ancestorAgent = this.parentAgent;
7578
8199
  while (ancestorAgent !== null) {
@@ -8338,8 +8959,6 @@ var RunConfig = class {
8338
8959
  };
8339
8960
 
8340
8961
  // src/artifacts/in-memory-artifact-service.ts
8341
- init_logger();
8342
- var logger9 = new Logger({ name: "InMemoryArtifactService" });
8343
8962
  var InMemoryArtifactService = class {
8344
8963
  artifacts = /* @__PURE__ */ new Map();
8345
8964
  fileHasUserNamespace(filename) {
@@ -8787,7 +9406,6 @@ var InMemorySessionService = class extends BaseSessionService {
8787
9406
  };
8788
9407
 
8789
9408
  // src/runners.ts
8790
- var logger10 = new Logger({ name: "Runner" });
8791
9409
  function _findFunctionCallEventIfLastEventIsFunctionResponse(session) {
8792
9410
  const events = session.events;
8793
9411
  if (!events || events.length === 0) {
@@ -8832,6 +9450,7 @@ var Runner = class {
8832
9450
  * The memory service for the runner.
8833
9451
  */
8834
9452
  memoryService;
9453
+ logger = new Logger({ name: "Runner" });
8835
9454
  /**
8836
9455
  * Initializes the Runner.
8837
9456
  */
@@ -8934,7 +9553,7 @@ var Runner = class {
8934
9553
  yield event;
8935
9554
  }
8936
9555
  } catch (error) {
8937
- logger10.debug("Error running agent:", error);
9556
+ this.logger.debug("Error running agent:", error);
8938
9557
  span.recordException(error);
8939
9558
  span.setStatus({
8940
9559
  code: SpanStatusCode.ERROR,
@@ -8998,7 +9617,7 @@ var Runner = class {
8998
9617
  }
8999
9618
  const agent = rootAgent.findSubAgent?.(event2.author);
9000
9619
  if (!agent) {
9001
- logger10.debug(
9620
+ this.logger.debug(
9002
9621
  `Event from an unknown agent: ${event2.author}, event id: ${event2.id}`
9003
9622
  );
9004
9623
  continue;
@@ -9277,6 +9896,20 @@ var AgentBuilder = class _AgentBuilder {
9277
9896
  */
9278
9897
  createAgent() {
9279
9898
  switch (this.agentType) {
9899
+ case "llm": {
9900
+ if (!this.config.model) {
9901
+ throw new Error("Model is required for LLM agent");
9902
+ }
9903
+ const model = this.config.model;
9904
+ return new LlmAgent({
9905
+ name: this.config.name,
9906
+ model,
9907
+ description: this.config.description,
9908
+ instruction: this.config.instruction,
9909
+ tools: this.config.tools,
9910
+ planner: this.config.planner
9911
+ });
9912
+ }
9280
9913
  case "sequential":
9281
9914
  if (!this.config.subAgents) {
9282
9915
  throw new Error("Sub-agents required for sequential agent");
@@ -9315,15 +9948,6 @@ var AgentBuilder = class _AgentBuilder {
9315
9948
  nodes: this.config.nodes,
9316
9949
  rootNode: this.config.rootNode
9317
9950
  });
9318
- default:
9319
- return new LlmAgent({
9320
- name: this.config.name,
9321
- model: this.config.model,
9322
- description: this.config.description,
9323
- instruction: this.config.instruction,
9324
- tools: this.config.tools,
9325
- planner: this.config.planner
9326
- });
9327
9951
  }
9328
9952
  }
9329
9953
  };
@@ -10061,11 +10685,11 @@ var DatabaseSessionService = class extends BaseSessionService {
10061
10685
  };
10062
10686
 
10063
10687
  // src/sessions/database-factories.ts
10064
- import dedent3 from "dedent";
10688
+ import dedent from "dedent";
10065
10689
  import { Kysely, MysqlDialect, PostgresDialect, SqliteDialect } from "kysely";
10066
10690
  function createDependencyError(packageName, dbType) {
10067
10691
  return new Error(
10068
- dedent3`
10692
+ dedent`
10069
10693
  Missing required peer dependency: ${packageName}
10070
10694
  To use ${dbType} sessions, install the required package:
10071
10695
  npm install ${packageName}
@@ -10138,11 +10762,9 @@ function createDatabaseSessionService(databaseUrl, options) {
10138
10762
  }
10139
10763
 
10140
10764
  // src/artifacts/gcs-artifact-service.ts
10141
- init_logger();
10142
10765
  import {
10143
10766
  Storage
10144
10767
  } from "@google-cloud/storage";
10145
- var logger11 = new Logger({ name: "GcsArtifactService" });
10146
10768
  var GcsArtifactService = class {
10147
10769
  bucketName;
10148
10770
  storageClient;
@@ -10297,20 +10919,20 @@ __export(flows_exports, {
10297
10919
  REQUEST_EUC_FUNCTION_CALL_NAME: () => REQUEST_EUC_FUNCTION_CALL_NAME,
10298
10920
  SingleFlow: () => SingleFlow,
10299
10921
  agentTransferRequestProcessor: () => requestProcessor8,
10300
- basicRequestProcessor: () => requestProcessor,
10301
- codeExecutionRequestProcessor: () => requestProcessor7,
10302
- codeExecutionResponseProcessor: () => responseProcessor2,
10303
- contentRequestProcessor: () => requestProcessor5,
10922
+ basicRequestProcessor: () => requestProcessor2,
10923
+ codeExecutionRequestProcessor: () => requestProcessor3,
10924
+ codeExecutionResponseProcessor: () => responseProcessor,
10925
+ contentRequestProcessor: () => requestProcessor4,
10304
10926
  generateAuthEvent: () => generateAuthEvent,
10305
10927
  generateClientFunctionCallId: () => generateClientFunctionCallId,
10306
10928
  getLongRunningFunctionCalls: () => getLongRunningFunctionCalls,
10307
10929
  handleFunctionCallsAsync: () => handleFunctionCallsAsync,
10308
10930
  handleFunctionCallsLive: () => handleFunctionCallsLive,
10309
- identityRequestProcessor: () => requestProcessor3,
10310
- instructionsRequestProcessor: () => requestProcessor4,
10931
+ identityRequestProcessor: () => requestProcessor5,
10932
+ instructionsRequestProcessor: () => requestProcessor6,
10311
10933
  mergeParallelFunctionResponseEvents: () => mergeParallelFunctionResponseEvents,
10312
- nlPlanningRequestProcessor: () => requestProcessor6,
10313
- nlPlanningResponseProcessor: () => responseProcessor,
10934
+ nlPlanningRequestProcessor: () => requestProcessor7,
10935
+ nlPlanningResponseProcessor: () => responseProcessor2,
10314
10936
  populateClientFunctionCallId: () => populateClientFunctionCallId,
10315
10937
  removeClientFunctionCallId: () => removeClientFunctionCallId
10316
10938
  });
@@ -10322,6 +10944,7 @@ export {
10322
10944
  LlmAgent as Agent,
10323
10945
  AgentBuilder,
10324
10946
  agents_exports as Agents,
10947
+ AiSdkLlm,
10325
10948
  AnthropicLlm,
10326
10949
  ApiKeyCredential,
10327
10950
  ApiKeyScheme,
@@ -10334,6 +10957,7 @@ export {
10334
10957
  AuthTool,
10335
10958
  AutoFlow,
10336
10959
  BaseAgent,
10960
+ BaseCodeExecutor,
10337
10961
  BaseLLMConnection,
10338
10962
  BaseLlm,
10339
10963
  BaseLlmFlow,
@@ -10344,8 +10968,11 @@ export {
10344
10968
  BaseTool,
10345
10969
  BasicAuthCredential,
10346
10970
  BearerTokenCredential,
10971
+ BuiltInCodeExecutor,
10347
10972
  BuiltInPlanner,
10348
10973
  CallbackContext,
10974
+ CodeExecutionUtils,
10975
+ CodeExecutorContext,
10349
10976
  DatabaseSessionService,
10350
10977
  EnhancedAuthConfig,
10351
10978
  Event,
@@ -10417,11 +11044,11 @@ export {
10417
11044
  VertexAiSessionService,
10418
11045
  adkToMcpToolType,
10419
11046
  requestProcessor8 as agentTransferRequestProcessor,
10420
- requestProcessor as basicRequestProcessor,
11047
+ requestProcessor2 as basicRequestProcessor,
10421
11048
  buildFunctionDeclaration,
10422
- requestProcessor7 as codeExecutionRequestProcessor,
10423
- responseProcessor2 as codeExecutionResponseProcessor,
10424
- requestProcessor5 as contentRequestProcessor,
11049
+ requestProcessor3 as codeExecutionRequestProcessor,
11050
+ responseProcessor as codeExecutionResponseProcessor,
11051
+ requestProcessor4 as contentRequestProcessor,
10425
11052
  createAuthToolArguments,
10426
11053
  createDatabaseSessionService,
10427
11054
  createFunctionTool,
@@ -10435,22 +11062,22 @@ export {
10435
11062
  getMcpTools,
10436
11063
  handleFunctionCallsAsync,
10437
11064
  handleFunctionCallsLive,
10438
- requestProcessor3 as identityRequestProcessor,
11065
+ requestProcessor5 as identityRequestProcessor,
10439
11066
  initializeTelemetry,
10440
11067
  injectSessionState,
10441
- requestProcessor4 as instructionsRequestProcessor,
11068
+ requestProcessor6 as instructionsRequestProcessor,
10442
11069
  isEnhancedAuthConfig,
10443
11070
  jsonSchemaToDeclaration,
10444
11071
  mcpSchemaToParameters,
10445
11072
  mergeParallelFunctionResponseEvents,
10446
11073
  newInvocationContextId,
10447
- requestProcessor6 as nlPlanningRequestProcessor,
10448
- responseProcessor as nlPlanningResponseProcessor,
11074
+ requestProcessor7 as nlPlanningRequestProcessor,
11075
+ responseProcessor2 as nlPlanningResponseProcessor,
10449
11076
  normalizeJsonSchema,
10450
11077
  populateClientFunctionCallId,
10451
11078
  registerProviders,
10452
11079
  removeClientFunctionCallId,
10453
- requestProcessor2 as requestProcessor,
11080
+ requestProcessor,
10454
11081
  shutdownTelemetry,
10455
11082
  telemetryService,
10456
11083
  traceLlmCall,