@orq-ai/node 3.13.0-rc.41 → 3.13.0-rc.42

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.
Files changed (94) hide show
  1. package/bin/mcp-server.js +479 -473
  2. package/bin/mcp-server.js.map +40 -40
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +28 -28
  15. package/models/operations/createtool.js +14 -14
  16. package/models/operations/duplicatetool.js +10 -10
  17. package/models/operations/fileget.js +2 -2
  18. package/models/operations/filelist.js +2 -2
  19. package/models/operations/fileupload.js +2 -2
  20. package/models/operations/getagent.d.ts +63 -57
  21. package/models/operations/getagent.d.ts.map +1 -1
  22. package/models/operations/getagent.js +87 -82
  23. package/models/operations/getagent.js.map +1 -1
  24. package/models/operations/getalltools.js +10 -10
  25. package/models/operations/getbudget.js +2 -2
  26. package/models/operations/getevals.js +28 -28
  27. package/models/operations/listagents.d.ts +63 -57
  28. package/models/operations/listagents.d.ts.map +1 -1
  29. package/models/operations/listagents.js +89 -83
  30. package/models/operations/listagents.js.map +1 -1
  31. package/models/operations/listbudgets.js +2 -2
  32. package/models/operations/listcontacts.js +2 -2
  33. package/models/operations/listdatasetdatapoints.js +2 -2
  34. package/models/operations/listdatasets.js +2 -2
  35. package/models/operations/listdatasources.js +2 -2
  36. package/models/operations/retrievecontact.js +2 -2
  37. package/models/operations/retrievedatapoint.js +2 -2
  38. package/models/operations/retrievedataset.js +2 -2
  39. package/models/operations/retrievedatasource.js +2 -2
  40. package/models/operations/retrievetool.js +10 -10
  41. package/models/operations/runagent.d.ts +130 -103
  42. package/models/operations/runagent.d.ts.map +1 -1
  43. package/models/operations/runagent.js +155 -145
  44. package/models/operations/runagent.js.map +1 -1
  45. package/models/operations/streamrunagent.d.ts +130 -103
  46. package/models/operations/streamrunagent.d.ts.map +1 -1
  47. package/models/operations/streamrunagent.js +156 -147
  48. package/models/operations/streamrunagent.js.map +1 -1
  49. package/models/operations/updatebudget.js +2 -2
  50. package/models/operations/updatecontact.js +2 -2
  51. package/models/operations/updatedatapoint.js +2 -2
  52. package/models/operations/updatedataset.js +2 -2
  53. package/models/operations/updatedatasource.js +2 -2
  54. package/models/operations/updateeval.js +28 -28
  55. package/models/operations/updatetool.js +14 -14
  56. package/package.json +1 -1
  57. package/src/lib/config.ts +3 -3
  58. package/src/mcp-server/mcp-server.ts +1 -1
  59. package/src/mcp-server/server.ts +1 -1
  60. package/src/models/operations/createbudget.ts +2 -2
  61. package/src/models/operations/createcontact.ts +2 -2
  62. package/src/models/operations/createdataset.ts +2 -2
  63. package/src/models/operations/createdatasetitem.ts +2 -2
  64. package/src/models/operations/createdatasource.ts +2 -2
  65. package/src/models/operations/createeval.ts +28 -28
  66. package/src/models/operations/createtool.ts +14 -14
  67. package/src/models/operations/duplicatetool.ts +10 -10
  68. package/src/models/operations/fileget.ts +2 -2
  69. package/src/models/operations/filelist.ts +2 -2
  70. package/src/models/operations/fileupload.ts +2 -2
  71. package/src/models/operations/getagent.ts +194 -135
  72. package/src/models/operations/getalltools.ts +10 -10
  73. package/src/models/operations/getbudget.ts +2 -2
  74. package/src/models/operations/getevals.ts +28 -28
  75. package/src/models/operations/listagents.ts +193 -135
  76. package/src/models/operations/listbudgets.ts +2 -2
  77. package/src/models/operations/listcontacts.ts +2 -2
  78. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  79. package/src/models/operations/listdatasets.ts +2 -2
  80. package/src/models/operations/listdatasources.ts +2 -2
  81. package/src/models/operations/retrievecontact.ts +2 -2
  82. package/src/models/operations/retrievedatapoint.ts +2 -2
  83. package/src/models/operations/retrievedataset.ts +2 -2
  84. package/src/models/operations/retrievedatasource.ts +2 -2
  85. package/src/models/operations/retrievetool.ts +10 -10
  86. package/src/models/operations/runagent.ts +265 -197
  87. package/src/models/operations/streamrunagent.ts +310 -226
  88. package/src/models/operations/updatebudget.ts +2 -2
  89. package/src/models/operations/updatecontact.ts +2 -2
  90. package/src/models/operations/updatedatapoint.ts +2 -2
  91. package/src/models/operations/updatedataset.ts +2 -2
  92. package/src/models/operations/updatedatasource.ts +2 -2
  93. package/src/models/operations/updateeval.ts +28 -28
  94. package/src/models/operations/updatetool.ts +14 -14
package/bin/mcp-server.js CHANGED
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
34203
34203
  SDK_METADATA = {
34204
34204
  language: "typescript",
34205
34205
  openapiDocVersion: "2.0",
34206
- sdkVersion: "3.13.0-rc.41",
34207
- genVersion: "2.716.10",
34208
- userAgent: "speakeasy-sdk/typescript 3.13.0-rc.41 2.716.10 2.0 @orq-ai/node"
34206
+ sdkVersion: "3.13.0-rc.42",
34207
+ genVersion: "2.716.16",
34208
+ userAgent: "speakeasy-sdk/typescript 3.13.0-rc.42 2.716.16 2.0 @orq-ai/node"
34209
34209
  };
34210
34210
  });
34211
34211
 
@@ -35891,7 +35891,7 @@ var init_createbudget = __esm(() => {
35891
35891
  is_active: booleanType(),
35892
35892
  consumption: lazyType(() => Consumption$inboundSchema).optional(),
35893
35893
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35894
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
35894
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
35895
35895
  }).transform((v2) => {
35896
35896
  return remap(v2, {
35897
35897
  _id: "id",
@@ -35907,7 +35907,7 @@ var init_createbudget = __esm(() => {
35907
35907
  isActive: booleanType(),
35908
35908
  consumption: lazyType(() => Consumption$outboundSchema).optional(),
35909
35909
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35910
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
35910
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
35911
35911
  }).transform((v2) => {
35912
35912
  return remap(v2, {
35913
35913
  id: "_id",
@@ -36078,7 +36078,7 @@ var init_createcontact = __esm(() => {
36078
36078
  tags: arrayType(stringType()).optional(),
36079
36079
  metadata: recordType(anyType()).optional(),
36080
36080
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36081
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
36081
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
36082
36082
  }).transform((v2) => {
36083
36083
  return remap(v2, {
36084
36084
  _id: "id",
@@ -36098,7 +36098,7 @@ var init_createcontact = __esm(() => {
36098
36098
  tags: arrayType(stringType()).optional(),
36099
36099
  metadata: recordType(anyType()).optional(),
36100
36100
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36101
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
36101
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
36102
36102
  }).transform((v2) => {
36103
36103
  return remap(v2, {
36104
36104
  id: "_id",
@@ -36170,7 +36170,7 @@ var init_createdataset = __esm(() => {
36170
36170
  updated_by_id: stringType().optional(),
36171
36171
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
36172
36172
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
36173
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
36173
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
36174
36174
  }).transform((v2) => {
36175
36175
  return remap(v2, {
36176
36176
  _id: "id",
@@ -36190,7 +36190,7 @@ var init_createdataset = __esm(() => {
36190
36190
  updatedById: stringType().optional(),
36191
36191
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
36192
36192
  created: dateType().transform((v2) => v2.toISOString()).optional(),
36193
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
36193
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
36194
36194
  }).transform((v2) => {
36195
36195
  return remap(v2, {
36196
36196
  id: "_id",
@@ -37596,7 +37596,7 @@ var init_createdatasetitem = __esm(() => {
37596
37596
  created_by_id: stringType().optional(),
37597
37597
  updated_by_id: stringType().optional(),
37598
37598
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37599
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
37599
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
37600
37600
  }).transform((v2) => {
37601
37601
  return remap(v2, {
37602
37602
  _id: "id",
@@ -37623,7 +37623,7 @@ var init_createdatasetitem = __esm(() => {
37623
37623
  createdById: stringType().optional(),
37624
37624
  updatedById: stringType().optional(),
37625
37625
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37626
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
37626
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
37627
37627
  }).transform((v2) => {
37628
37628
  return remap(v2, {
37629
37629
  id: "_id",
@@ -37845,7 +37845,7 @@ var init_createdatasource = __esm(() => {
37845
37845
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37846
37846
  })(CreateDatasourceStatus$ ||= {});
37847
37847
  CreateDatasourceResponseBody$inboundSchema = objectType({
37848
- _id: stringType().default("01K62YGYCN9Y2FH3VHDWB15XVY"),
37848
+ _id: stringType().default("01K69SP35V9995NE57NTQVS4HH"),
37849
37849
  display_name: stringType(),
37850
37850
  description: stringType().optional(),
37851
37851
  status: CreateDatasourceStatus$inboundSchema,
@@ -37868,7 +37868,7 @@ var init_createdatasource = __esm(() => {
37868
37868
  });
37869
37869
  });
37870
37870
  CreateDatasourceResponseBody$outboundSchema = objectType({
37871
- id: stringType().default("01K62YGYCN9Y2FH3VHDWB15XVY"),
37871
+ id: stringType().default("01K69SP35V9995NE57NTQVS4HH"),
37872
37872
  displayName: stringType(),
37873
37873
  description: stringType().optional(),
37874
37874
  status: CreateDatasourceStatus$outboundSchema,
@@ -38772,8 +38772,8 @@ var init_createeval = __esm(() => {
38772
38772
  Typescript$inboundSchema = objectType({
38773
38773
  _id: stringType(),
38774
38774
  description: stringType(),
38775
- created: stringType().default("2025-09-26T12:03:42.222Z"),
38776
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
38775
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
38776
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
38777
38777
  guardrail_config: unionType([
38778
38778
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
38779
38779
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
@@ -38790,8 +38790,8 @@ var init_createeval = __esm(() => {
38790
38790
  Typescript$outboundSchema = objectType({
38791
38791
  id: stringType(),
38792
38792
  description: stringType(),
38793
- created: stringType().default("2025-09-26T12:03:42.222Z"),
38794
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
38793
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
38794
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
38795
38795
  guardrailConfig: unionType([
38796
38796
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
38797
38797
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
@@ -38884,8 +38884,8 @@ var init_createeval = __esm(() => {
38884
38884
  Ragas$inboundSchema = objectType({
38885
38885
  _id: stringType(),
38886
38886
  description: stringType(),
38887
- created: stringType().default("2025-09-26T12:03:42.222Z"),
38888
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
38887
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
38888
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
38889
38889
  guardrail_config: unionType([
38890
38890
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
38891
38891
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
@@ -38904,8 +38904,8 @@ var init_createeval = __esm(() => {
38904
38904
  Ragas$outboundSchema = objectType({
38905
38905
  id: stringType(),
38906
38906
  description: stringType(),
38907
- created: stringType().default("2025-09-26T12:03:42.222Z"),
38908
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
38907
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
38908
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
38909
38909
  guardrailConfig: unionType([
38910
38910
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
38911
38911
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
@@ -39658,8 +39658,8 @@ var init_createeval = __esm(() => {
39658
39658
  ResponseBodyFunction$inboundSchema = objectType({
39659
39659
  _id: stringType(),
39660
39660
  description: stringType(),
39661
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39662
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39661
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39662
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39663
39663
  guardrail_config: unionType([
39664
39664
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
39665
39665
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
@@ -39713,8 +39713,8 @@ var init_createeval = __esm(() => {
39713
39713
  ResponseBodyFunction$outboundSchema = objectType({
39714
39714
  id: stringType(),
39715
39715
  description: stringType(),
39716
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39717
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39716
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39717
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39718
39718
  guardrailConfig: unionType([
39719
39719
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
39720
39720
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
@@ -39838,8 +39838,8 @@ var init_createeval = __esm(() => {
39838
39838
  ResponseBodyPython$inboundSchema = objectType({
39839
39839
  _id: stringType(),
39840
39840
  description: stringType(),
39841
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39842
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39841
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39842
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39843
39843
  guardrail_config: unionType([
39844
39844
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
39845
39845
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -39856,8 +39856,8 @@ var init_createeval = __esm(() => {
39856
39856
  ResponseBodyPython$outboundSchema = objectType({
39857
39857
  id: stringType(),
39858
39858
  description: stringType(),
39859
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39860
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39859
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39860
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39861
39861
  guardrailConfig: unionType([
39862
39862
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
39863
39863
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -39950,8 +39950,8 @@ var init_createeval = __esm(() => {
39950
39950
  ResponseBodyHTTP$inboundSchema = objectType({
39951
39951
  _id: stringType(),
39952
39952
  description: stringType(),
39953
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39954
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39953
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39954
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39955
39955
  guardrail_config: unionType([
39956
39956
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
39957
39957
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -39971,8 +39971,8 @@ var init_createeval = __esm(() => {
39971
39971
  ResponseBodyHTTP$outboundSchema = objectType({
39972
39972
  id: stringType(),
39973
39973
  description: stringType(),
39974
- created: stringType().default("2025-09-26T12:03:42.222Z"),
39975
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
39974
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
39975
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
39976
39976
  guardrailConfig: unionType([
39977
39977
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
39978
39978
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -40062,8 +40062,8 @@ var init_createeval = __esm(() => {
40062
40062
  ResponseBodyJSON$inboundSchema = objectType({
40063
40063
  _id: stringType(),
40064
40064
  description: stringType(),
40065
- created: stringType().default("2025-09-26T12:03:42.222Z"),
40066
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
40065
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
40066
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
40067
40067
  guardrail_config: unionType([
40068
40068
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
40069
40069
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -40080,8 +40080,8 @@ var init_createeval = __esm(() => {
40080
40080
  ResponseBodyJSON$outboundSchema = objectType({
40081
40081
  id: stringType(),
40082
40082
  description: stringType(),
40083
- created: stringType().default("2025-09-26T12:03:42.222Z"),
40084
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
40083
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
40084
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
40085
40085
  guardrailConfig: unionType([
40086
40086
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
40087
40087
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -40168,8 +40168,8 @@ var init_createeval = __esm(() => {
40168
40168
  ResponseBodyLLM$inboundSchema = objectType({
40169
40169
  _id: stringType(),
40170
40170
  description: stringType(),
40171
- created: stringType().default("2025-09-26T12:03:42.222Z"),
40172
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
40171
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
40172
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
40173
40173
  guardrail_config: unionType([
40174
40174
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
40175
40175
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -40187,8 +40187,8 @@ var init_createeval = __esm(() => {
40187
40187
  ResponseBodyLLM$outboundSchema = objectType({
40188
40188
  id: stringType(),
40189
40189
  description: stringType(),
40190
- created: stringType().default("2025-09-26T12:03:42.222Z"),
40191
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
40190
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
40191
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
40192
40192
  guardrailConfig: unionType([
40193
40193
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
40194
40194
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -43220,7 +43220,7 @@ var init_createtool = __esm(() => {
43220
43220
  CreateToolRequestBodyHttp$.outboundSchema = CreateToolRequestBodyHttp$outboundSchema;
43221
43221
  })(CreateToolRequestBodyHttp$ ||= {});
43222
43222
  RequestBody3$inboundSchema = objectType({
43223
- _id: stringType().default("01K62YGYFY3AMRMBWMCQ0NRKC6"),
43223
+ _id: stringType().default("01K69SP38VRDGWBSDEX9E7QA5Q"),
43224
43224
  path: stringType(),
43225
43225
  key: stringType(),
43226
43226
  display_name: stringType(),
@@ -43235,7 +43235,7 @@ var init_createtool = __esm(() => {
43235
43235
  });
43236
43236
  });
43237
43237
  RequestBody3$outboundSchema = objectType({
43238
- id: stringType().default("01K62YGYFY3AMRMBWMCQ0NRKC6"),
43238
+ id: stringType().default("01K69SP38VRDGWBSDEX9E7QA5Q"),
43239
43239
  path: stringType(),
43240
43240
  key: stringType(),
43241
43241
  displayName: stringType(),
@@ -43282,7 +43282,7 @@ var init_createtool = __esm(() => {
43282
43282
  RequestBodyJsonSchema$.outboundSchema = RequestBodyJsonSchema$outboundSchema;
43283
43283
  })(RequestBodyJsonSchema$ ||= {});
43284
43284
  RequestBody2$inboundSchema = objectType({
43285
- _id: stringType().default("01K62YGYFY21Q90XCC66NWDGG7"),
43285
+ _id: stringType().default("01K69SP38V5Y1CNRRRK1YKDPY5"),
43286
43286
  path: stringType(),
43287
43287
  key: stringType(),
43288
43288
  display_name: stringType(),
@@ -43298,7 +43298,7 @@ var init_createtool = __esm(() => {
43298
43298
  });
43299
43299
  });
43300
43300
  RequestBody2$outboundSchema = objectType({
43301
- id: stringType().default("01K62YGYFY21Q90XCC66NWDGG7"),
43301
+ id: stringType().default("01K69SP38V5Y1CNRRRK1YKDPY5"),
43302
43302
  path: stringType(),
43303
43303
  key: stringType(),
43304
43304
  displayName: stringType(),
@@ -43426,7 +43426,7 @@ var init_createtool = __esm(() => {
43426
43426
  ResponseBodyCodeTool$.outboundSchema = ResponseBodyCodeTool$outboundSchema;
43427
43427
  })(ResponseBodyCodeTool$ ||= {});
43428
43428
  ResponseBody5$inboundSchema = objectType({
43429
- _id: stringType().default("01K62YGYFXRG7SSQ1N09ZQ1KXB"),
43429
+ _id: stringType().default("01K69SP38TPZFWRN1JPB4HZKER"),
43430
43430
  path: stringType(),
43431
43431
  key: stringType(),
43432
43432
  display_name: stringType(),
@@ -43454,7 +43454,7 @@ var init_createtool = __esm(() => {
43454
43454
  });
43455
43455
  });
43456
43456
  ResponseBody5$outboundSchema = objectType({
43457
- id: stringType().default("01K62YGYFXRG7SSQ1N09ZQ1KXB"),
43457
+ id: stringType().default("01K69SP38TPZFWRN1JPB4HZKER"),
43458
43458
  path: stringType(),
43459
43459
  key: stringType(),
43460
43460
  displayName: stringType(),
@@ -43572,7 +43572,7 @@ var init_createtool = __esm(() => {
43572
43572
  ResponseBodyMcp$.outboundSchema = ResponseBodyMcp$outboundSchema;
43573
43573
  })(ResponseBodyMcp$ ||= {});
43574
43574
  ResponseBody4$inboundSchema = objectType({
43575
- _id: stringType().default("01K62YGYFWE3A03R67YVM2FNRN"),
43575
+ _id: stringType().default("01K69SP38SSZ7W3V1SM71C5SKD"),
43576
43576
  path: stringType(),
43577
43577
  key: stringType(),
43578
43578
  display_name: stringType(),
@@ -43599,7 +43599,7 @@ var init_createtool = __esm(() => {
43599
43599
  });
43600
43600
  });
43601
43601
  ResponseBody4$outboundSchema = objectType({
43602
- id: stringType().default("01K62YGYFWE3A03R67YVM2FNRN"),
43602
+ id: stringType().default("01K69SP38SSZ7W3V1SM71C5SKD"),
43603
43603
  path: stringType(),
43604
43604
  key: stringType(),
43605
43605
  displayName: stringType(),
@@ -43714,7 +43714,7 @@ var init_createtool = __esm(() => {
43714
43714
  CreateToolResponseBodyHttp$.outboundSchema = CreateToolResponseBodyHttp$outboundSchema;
43715
43715
  })(CreateToolResponseBodyHttp$ ||= {});
43716
43716
  ResponseBody3$inboundSchema = objectType({
43717
- _id: stringType().default("01K62YGYFWCHR6WJQMV3N48D90"),
43717
+ _id: stringType().default("01K69SP38RMN938K4A6NZ54QXK"),
43718
43718
  path: stringType(),
43719
43719
  key: stringType(),
43720
43720
  display_name: stringType(),
@@ -43741,7 +43741,7 @@ var init_createtool = __esm(() => {
43741
43741
  });
43742
43742
  });
43743
43743
  ResponseBody3$outboundSchema = objectType({
43744
- id: stringType().default("01K62YGYFWCHR6WJQMV3N48D90"),
43744
+ id: stringType().default("01K69SP38RMN938K4A6NZ54QXK"),
43745
43745
  path: stringType(),
43746
43746
  key: stringType(),
43747
43747
  displayName: stringType(),
@@ -43800,7 +43800,7 @@ var init_createtool = __esm(() => {
43800
43800
  ResponseBodyJsonSchema$.outboundSchema = ResponseBodyJsonSchema$outboundSchema;
43801
43801
  })(ResponseBodyJsonSchema$ ||= {});
43802
43802
  ResponseBody2$inboundSchema = objectType({
43803
- _id: stringType().default("01K62YGYFVGBEENT01R4NCJ7WY"),
43803
+ _id: stringType().default("01K69SP38RVC9V7VJ4YAFKDEM0"),
43804
43804
  path: stringType(),
43805
43805
  key: stringType(),
43806
43806
  display_name: stringType(),
@@ -43828,7 +43828,7 @@ var init_createtool = __esm(() => {
43828
43828
  });
43829
43829
  });
43830
43830
  ResponseBody2$outboundSchema = objectType({
43831
- id: stringType().default("01K62YGYFVGBEENT01R4NCJ7WY"),
43831
+ id: stringType().default("01K69SP38RVC9V7VJ4YAFKDEM0"),
43832
43832
  path: stringType(),
43833
43833
  key: stringType(),
43834
43834
  displayName: stringType(),
@@ -43888,7 +43888,7 @@ var init_createtool = __esm(() => {
43888
43888
  CreateToolResponseBodyFunction$.outboundSchema = CreateToolResponseBodyFunction$outboundSchema;
43889
43889
  })(CreateToolResponseBodyFunction$ ||= {});
43890
43890
  ResponseBody1$inboundSchema = objectType({
43891
- _id: stringType().default("01K62YGYFVJW4C61TPXDR5159C"),
43891
+ _id: stringType().default("01K69SP38QEMWYCRCGAC2Z9Q84"),
43892
43892
  path: stringType(),
43893
43893
  key: stringType(),
43894
43894
  display_name: stringType(),
@@ -43915,7 +43915,7 @@ var init_createtool = __esm(() => {
43915
43915
  });
43916
43916
  });
43917
43917
  ResponseBody1$outboundSchema = objectType({
43918
- id: stringType().default("01K62YGYFVJW4C61TPXDR5159C"),
43918
+ id: stringType().default("01K69SP38QEMWYCRCGAC2Z9Q84"),
43919
43919
  path: stringType(),
43920
43920
  key: stringType(),
43921
43921
  displayName: stringType(),
@@ -51977,7 +51977,7 @@ var init_duplicatetool = __esm(() => {
51977
51977
  DuplicateToolResponseBodyCodeTool$.outboundSchema = DuplicateToolResponseBodyCodeTool$outboundSchema;
51978
51978
  })(DuplicateToolResponseBodyCodeTool$ ||= {});
51979
51979
  DuplicateToolResponseBody5$inboundSchema = objectType({
51980
- _id: stringType().default("01K62YGYG41XJP1QYWJEC0W6TW"),
51980
+ _id: stringType().default("01K69SP394K68SS8EDH0473MW3"),
51981
51981
  path: stringType(),
51982
51982
  key: stringType(),
51983
51983
  display_name: stringType(),
@@ -52005,7 +52005,7 @@ var init_duplicatetool = __esm(() => {
52005
52005
  });
52006
52006
  });
52007
52007
  DuplicateToolResponseBody5$outboundSchema = objectType({
52008
- id: stringType().default("01K62YGYG41XJP1QYWJEC0W6TW"),
52008
+ id: stringType().default("01K69SP394K68SS8EDH0473MW3"),
52009
52009
  path: stringType(),
52010
52010
  key: stringType(),
52011
52011
  displayName: stringType(),
@@ -52123,7 +52123,7 @@ var init_duplicatetool = __esm(() => {
52123
52123
  DuplicateToolResponseBodyMcp$.outboundSchema = DuplicateToolResponseBodyMcp$outboundSchema;
52124
52124
  })(DuplicateToolResponseBodyMcp$ ||= {});
52125
52125
  DuplicateToolResponseBody4$inboundSchema = objectType({
52126
- _id: stringType().default("01K62YGYG3JM367APTNDEH7Q4Q"),
52126
+ _id: stringType().default("01K69SP393YK4MZP6584BZC9WP"),
52127
52127
  path: stringType(),
52128
52128
  key: stringType(),
52129
52129
  display_name: stringType(),
@@ -52150,7 +52150,7 @@ var init_duplicatetool = __esm(() => {
52150
52150
  });
52151
52151
  });
52152
52152
  DuplicateToolResponseBody4$outboundSchema = objectType({
52153
- id: stringType().default("01K62YGYG3JM367APTNDEH7Q4Q"),
52153
+ id: stringType().default("01K69SP393YK4MZP6584BZC9WP"),
52154
52154
  path: stringType(),
52155
52155
  key: stringType(),
52156
52156
  displayName: stringType(),
@@ -52265,7 +52265,7 @@ var init_duplicatetool = __esm(() => {
52265
52265
  DuplicateToolResponseBodyHttp$.outboundSchema = DuplicateToolResponseBodyHttp$outboundSchema;
52266
52266
  })(DuplicateToolResponseBodyHttp$ ||= {});
52267
52267
  DuplicateToolResponseBody3$inboundSchema = objectType({
52268
- _id: stringType().default("01K62YGYG3BWWJX6BVA8RJ0HWF"),
52268
+ _id: stringType().default("01K69SP393JA9Q3CZYS1DGJ3DR"),
52269
52269
  path: stringType(),
52270
52270
  key: stringType(),
52271
52271
  display_name: stringType(),
@@ -52292,7 +52292,7 @@ var init_duplicatetool = __esm(() => {
52292
52292
  });
52293
52293
  });
52294
52294
  DuplicateToolResponseBody3$outboundSchema = objectType({
52295
- id: stringType().default("01K62YGYG3BWWJX6BVA8RJ0HWF"),
52295
+ id: stringType().default("01K69SP393JA9Q3CZYS1DGJ3DR"),
52296
52296
  path: stringType(),
52297
52297
  key: stringType(),
52298
52298
  displayName: stringType(),
@@ -52351,7 +52351,7 @@ var init_duplicatetool = __esm(() => {
52351
52351
  DuplicateToolResponseBodyJsonSchema$.outboundSchema = DuplicateToolResponseBodyJsonSchema$outboundSchema;
52352
52352
  })(DuplicateToolResponseBodyJsonSchema$ ||= {});
52353
52353
  DuplicateToolResponseBody2$inboundSchema = objectType({
52354
- _id: stringType().default("01K62YGYG3DE9X2M5ETPC0EB1T"),
52354
+ _id: stringType().default("01K69SP39282PKB87KYFWME9K8"),
52355
52355
  path: stringType(),
52356
52356
  key: stringType(),
52357
52357
  display_name: stringType(),
@@ -52379,7 +52379,7 @@ var init_duplicatetool = __esm(() => {
52379
52379
  });
52380
52380
  });
52381
52381
  DuplicateToolResponseBody2$outboundSchema = objectType({
52382
- id: stringType().default("01K62YGYG3DE9X2M5ETPC0EB1T"),
52382
+ id: stringType().default("01K69SP39282PKB87KYFWME9K8"),
52383
52383
  path: stringType(),
52384
52384
  key: stringType(),
52385
52385
  displayName: stringType(),
@@ -52439,7 +52439,7 @@ var init_duplicatetool = __esm(() => {
52439
52439
  DuplicateToolResponseBodyFunction$.outboundSchema = DuplicateToolResponseBodyFunction$outboundSchema;
52440
52440
  })(DuplicateToolResponseBodyFunction$ ||= {});
52441
52441
  DuplicateToolResponseBody1$inboundSchema = objectType({
52442
- _id: stringType().default("01K62YGYG2REPJWTMT48X7X7C1"),
52442
+ _id: stringType().default("01K69SP39212TYQ5FC4AVQVJ0Z"),
52443
52443
  path: stringType(),
52444
52444
  key: stringType(),
52445
52445
  display_name: stringType(),
@@ -52466,7 +52466,7 @@ var init_duplicatetool = __esm(() => {
52466
52466
  });
52467
52467
  });
52468
52468
  DuplicateToolResponseBody1$outboundSchema = objectType({
52469
- id: stringType().default("01K62YGYG2REPJWTMT48X7X7C1"),
52469
+ id: stringType().default("01K69SP39212TYQ5FC4AVQVJ0Z"),
52470
52470
  path: stringType(),
52471
52471
  key: stringType(),
52472
52472
  displayName: stringType(),
@@ -54112,7 +54112,7 @@ var init_fileget = __esm(() => {
54112
54112
  bytes: numberType(),
54113
54113
  file_name: stringType(),
54114
54114
  workspace_id: stringType(),
54115
- created: stringType().datetime({ offset: true }).default("2025-09-26T12:03:42.938Z").transform((v2) => new Date(v2))
54115
+ created: stringType().datetime({ offset: true }).default("2025-09-29T03:53:49.945Z").transform((v2) => new Date(v2))
54116
54116
  }).transform((v2) => {
54117
54117
  return remap(v2, {
54118
54118
  _id: "id",
@@ -54128,7 +54128,7 @@ var init_fileget = __esm(() => {
54128
54128
  bytes: numberType(),
54129
54129
  fileName: stringType(),
54130
54130
  workspaceId: stringType(),
54131
- created: dateType().default(() => new Date("2025-09-26T12:03:42.938Z")).transform((v2) => v2.toISOString())
54131
+ created: dateType().default(() => new Date("2025-09-29T03:53:49.945Z")).transform((v2) => v2.toISOString())
54132
54132
  }).transform((v2) => {
54133
54133
  return remap(v2, {
54134
54134
  id: "_id",
@@ -54199,7 +54199,7 @@ var init_filelist = __esm(() => {
54199
54199
  bytes: numberType(),
54200
54200
  file_name: stringType(),
54201
54201
  workspace_id: stringType(),
54202
- created: stringType().datetime({ offset: true }).default("2025-09-26T12:03:42.938Z").transform((v2) => new Date(v2))
54202
+ created: stringType().datetime({ offset: true }).default("2025-09-29T03:53:49.945Z").transform((v2) => new Date(v2))
54203
54203
  }).transform((v2) => {
54204
54204
  return remap(v2, {
54205
54205
  _id: "id",
@@ -54215,7 +54215,7 @@ var init_filelist = __esm(() => {
54215
54215
  bytes: numberType(),
54216
54216
  fileName: stringType(),
54217
54217
  workspaceId: stringType(),
54218
- created: dateType().default(() => new Date("2025-09-26T12:03:42.938Z")).transform((v2) => v2.toISOString())
54218
+ created: dateType().default(() => new Date("2025-09-29T03:53:49.945Z")).transform((v2) => v2.toISOString())
54219
54219
  }).transform((v2) => {
54220
54220
  return remap(v2, {
54221
54221
  id: "_id",
@@ -54347,7 +54347,7 @@ var init_fileupload = __esm(() => {
54347
54347
  bytes: numberType(),
54348
54348
  file_name: stringType(),
54349
54349
  workspace_id: stringType(),
54350
- created: stringType().datetime({ offset: true }).default("2025-09-26T12:03:42.938Z").transform((v2) => new Date(v2))
54350
+ created: stringType().datetime({ offset: true }).default("2025-09-29T03:53:49.945Z").transform((v2) => new Date(v2))
54351
54351
  }).transform((v2) => {
54352
54352
  return remap(v2, {
54353
54353
  _id: "id",
@@ -54363,7 +54363,7 @@ var init_fileupload = __esm(() => {
54363
54363
  bytes: numberType(),
54364
54364
  fileName: stringType(),
54365
54365
  workspaceId: stringType(),
54366
- created: dateType().default(() => new Date("2025-09-26T12:03:42.938Z")).transform((v2) => v2.toISOString())
54366
+ created: dateType().default(() => new Date("2025-09-29T03:53:49.945Z")).transform((v2) => v2.toISOString())
54367
54367
  }).transform((v2) => {
54368
54368
  return remap(v2, {
54369
54369
  id: "_id",
@@ -54379,7 +54379,7 @@ var init_fileupload = __esm(() => {
54379
54379
  });
54380
54380
 
54381
54381
  // src/models/operations/getagent.ts
54382
- var GetAgentStatus, GetAgentToolApprovalRequired, GetAgentConfigurationType, GetAgentConfigurationAgentsType, HiddenPanels, GetAgentRequest$inboundSchema, GetAgentRequest$outboundSchema, GetAgentRequest$, GetAgentStatus$inboundSchema, GetAgentStatus$outboundSchema, GetAgentStatus$, GetAgentToolApprovalRequired$inboundSchema, GetAgentToolApprovalRequired$outboundSchema, GetAgentToolApprovalRequired$, Conditions$inboundSchema, Conditions$outboundSchema, Conditions$, GetAgentTools$inboundSchema, GetAgentTools$outboundSchema, GetAgentTools$, GetAgentSettings$inboundSchema, GetAgentSettings$outboundSchema, GetAgentSettings$, GetAgentModel$inboundSchema, GetAgentModel$outboundSchema, GetAgentModel$, GetAgentTeamOfAgents$inboundSchema, GetAgentTeamOfAgents$outboundSchema, GetAgentTeamOfAgents$, Metrics$inboundSchema, Metrics$outboundSchema, Metrics$, GetAgentConfigurationType$inboundSchema, GetAgentConfigurationType$outboundSchema, GetAgentConfigurationType$, GetAgentConfiguration2$inboundSchema, GetAgentConfiguration2$outboundSchema, GetAgentConfiguration2$, GetAgentConfigurationAgentsType$inboundSchema, GetAgentConfigurationAgentsType$outboundSchema, GetAgentConfigurationAgentsType$, GetAgentConfiguration1$inboundSchema, GetAgentConfiguration1$outboundSchema, GetAgentConfiguration1$, GetAgentConfiguration$inboundSchema, GetAgentConfiguration$outboundSchema, GetAgentConfiguration$, GetAgentKnowledgeBases$inboundSchema, GetAgentKnowledgeBases$outboundSchema, GetAgentKnowledgeBases$, HiddenPanels$inboundSchema, HiddenPanels$outboundSchema, HiddenPanels$, GetAgentResponseBody$inboundSchema, GetAgentResponseBody$outboundSchema, GetAgentResponseBody$;
54382
+ var GetAgentStatus, GetAgentToolApprovalRequired, GetAgentKnowledgeBaseConfigurationType, GetAgentKnowledgeBaseConfigurationAgentsType, HiddenPanels, GetAgentRequest$inboundSchema, GetAgentRequest$outboundSchema, GetAgentRequest$, GetAgentStatus$inboundSchema, GetAgentStatus$outboundSchema, GetAgentStatus$, GetAgentToolApprovalRequired$inboundSchema, GetAgentToolApprovalRequired$outboundSchema, GetAgentToolApprovalRequired$, Conditions$inboundSchema, Conditions$outboundSchema, Conditions$, GetAgentTools$inboundSchema, GetAgentTools$outboundSchema, GetAgentTools$, GetAgentSettings$inboundSchema, GetAgentSettings$outboundSchema, GetAgentSettings$, GetAgentModel$inboundSchema, GetAgentModel$outboundSchema, GetAgentModel$, GetAgentTeamOfAgents$inboundSchema, GetAgentTeamOfAgents$outboundSchema, GetAgentTeamOfAgents$, Metrics$inboundSchema, Metrics$outboundSchema, Metrics$, GetAgentKnowledgeBaseConfigurationType$inboundSchema, GetAgentKnowledgeBaseConfigurationType$outboundSchema, GetAgentKnowledgeBaseConfigurationType$, GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema, GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema, GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$, GetAgentKnowledgeBaseConfigurationAgentsType$inboundSchema, GetAgentKnowledgeBaseConfigurationAgentsType$outboundSchema, GetAgentKnowledgeBaseConfigurationAgentsType$, GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema, GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema, GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$, GetAgentKnowledgeBaseConfiguration$inboundSchema, GetAgentKnowledgeBaseConfiguration$outboundSchema, GetAgentKnowledgeBaseConfiguration$, GetAgentKnowledgeBases$inboundSchema, GetAgentKnowledgeBases$outboundSchema, GetAgentKnowledgeBases$, HiddenPanels$inboundSchema, HiddenPanels$outboundSchema, HiddenPanels$, GetAgentResponseBody$inboundSchema, GetAgentResponseBody$outboundSchema, GetAgentResponseBody$;
54383
54383
  var init_getagent = __esm(() => {
54384
54384
  init_esm();
54385
54385
  init_primitives();
@@ -54394,10 +54394,10 @@ var init_getagent = __esm(() => {
54394
54394
  RespectTool: "respect_tool",
54395
54395
  None: "none"
54396
54396
  };
54397
- GetAgentConfigurationType = {
54397
+ GetAgentKnowledgeBaseConfigurationType = {
54398
54398
  Query: "query"
54399
54399
  };
54400
- GetAgentConfigurationAgentsType = {
54400
+ GetAgentKnowledgeBaseConfigurationAgentsType = {
54401
54401
  LastUserMessage: "last_user_message"
54402
54402
  };
54403
54403
  HiddenPanels = {
@@ -54573,58 +54573,58 @@ var init_getagent = __esm(() => {
54573
54573
  Metrics$.inboundSchema = Metrics$inboundSchema;
54574
54574
  Metrics$.outboundSchema = Metrics$outboundSchema;
54575
54575
  })(Metrics$ ||= {});
54576
- GetAgentConfigurationType$inboundSchema = nativeEnumType(GetAgentConfigurationType);
54577
- GetAgentConfigurationType$outboundSchema = GetAgentConfigurationType$inboundSchema;
54578
- ((GetAgentConfigurationType$) => {
54579
- GetAgentConfigurationType$.inboundSchema = GetAgentConfigurationType$inboundSchema;
54580
- GetAgentConfigurationType$.outboundSchema = GetAgentConfigurationType$outboundSchema;
54581
- })(GetAgentConfigurationType$ ||= {});
54582
- GetAgentConfiguration2$inboundSchema = objectType({
54583
- type: GetAgentConfigurationType$inboundSchema,
54576
+ GetAgentKnowledgeBaseConfigurationType$inboundSchema = nativeEnumType(GetAgentKnowledgeBaseConfigurationType);
54577
+ GetAgentKnowledgeBaseConfigurationType$outboundSchema = GetAgentKnowledgeBaseConfigurationType$inboundSchema;
54578
+ ((GetAgentKnowledgeBaseConfigurationType$) => {
54579
+ GetAgentKnowledgeBaseConfigurationType$.inboundSchema = GetAgentKnowledgeBaseConfigurationType$inboundSchema;
54580
+ GetAgentKnowledgeBaseConfigurationType$.outboundSchema = GetAgentKnowledgeBaseConfigurationType$outboundSchema;
54581
+ })(GetAgentKnowledgeBaseConfigurationType$ ||= {});
54582
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema = objectType({
54583
+ type: GetAgentKnowledgeBaseConfigurationType$inboundSchema,
54584
54584
  query: stringType()
54585
54585
  });
54586
- GetAgentConfiguration2$outboundSchema = objectType({
54587
- type: GetAgentConfigurationType$outboundSchema,
54586
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema = objectType({
54587
+ type: GetAgentKnowledgeBaseConfigurationType$outboundSchema,
54588
54588
  query: stringType()
54589
54589
  });
54590
- ((GetAgentConfiguration2$) => {
54591
- GetAgentConfiguration2$.inboundSchema = GetAgentConfiguration2$inboundSchema;
54592
- GetAgentConfiguration2$.outboundSchema = GetAgentConfiguration2$outboundSchema;
54593
- })(GetAgentConfiguration2$ ||= {});
54594
- GetAgentConfigurationAgentsType$inboundSchema = nativeEnumType(GetAgentConfigurationAgentsType);
54595
- GetAgentConfigurationAgentsType$outboundSchema = GetAgentConfigurationAgentsType$inboundSchema;
54596
- ((GetAgentConfigurationAgentsType$) => {
54597
- GetAgentConfigurationAgentsType$.inboundSchema = GetAgentConfigurationAgentsType$inboundSchema;
54598
- GetAgentConfigurationAgentsType$.outboundSchema = GetAgentConfigurationAgentsType$outboundSchema;
54599
- })(GetAgentConfigurationAgentsType$ ||= {});
54600
- GetAgentConfiguration1$inboundSchema = objectType({
54601
- type: GetAgentConfigurationAgentsType$inboundSchema
54602
- });
54603
- GetAgentConfiguration1$outboundSchema = objectType({
54604
- type: GetAgentConfigurationAgentsType$outboundSchema
54605
- });
54606
- ((GetAgentConfiguration1$) => {
54607
- GetAgentConfiguration1$.inboundSchema = GetAgentConfiguration1$inboundSchema;
54608
- GetAgentConfiguration1$.outboundSchema = GetAgentConfiguration1$outboundSchema;
54609
- })(GetAgentConfiguration1$ ||= {});
54610
- GetAgentConfiguration$inboundSchema = unionType([
54611
- lazyType(() => GetAgentConfiguration2$inboundSchema),
54612
- lazyType(() => GetAgentConfiguration1$inboundSchema)
54590
+ ((GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$) => {
54591
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.inboundSchema = GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema;
54592
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.outboundSchema = GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema;
54593
+ })(GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$ ||= {});
54594
+ GetAgentKnowledgeBaseConfigurationAgentsType$inboundSchema = nativeEnumType(GetAgentKnowledgeBaseConfigurationAgentsType);
54595
+ GetAgentKnowledgeBaseConfigurationAgentsType$outboundSchema = GetAgentKnowledgeBaseConfigurationAgentsType$inboundSchema;
54596
+ ((GetAgentKnowledgeBaseConfigurationAgentsType$) => {
54597
+ GetAgentKnowledgeBaseConfigurationAgentsType$.inboundSchema = GetAgentKnowledgeBaseConfigurationAgentsType$inboundSchema;
54598
+ GetAgentKnowledgeBaseConfigurationAgentsType$.outboundSchema = GetAgentKnowledgeBaseConfigurationAgentsType$outboundSchema;
54599
+ })(GetAgentKnowledgeBaseConfigurationAgentsType$ ||= {});
54600
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema = objectType({
54601
+ type: GetAgentKnowledgeBaseConfigurationAgentsType$inboundSchema
54602
+ });
54603
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema = objectType({
54604
+ type: GetAgentKnowledgeBaseConfigurationAgentsType$outboundSchema
54605
+ });
54606
+ ((GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$) => {
54607
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.inboundSchema = GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema;
54608
+ GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.outboundSchema = GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema;
54609
+ })(GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$ ||= {});
54610
+ GetAgentKnowledgeBaseConfiguration$inboundSchema = unionType([
54611
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
54612
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
54613
54613
  ]);
54614
- GetAgentConfiguration$outboundSchema = unionType([
54615
- lazyType(() => GetAgentConfiguration2$outboundSchema),
54616
- lazyType(() => GetAgentConfiguration1$outboundSchema)
54614
+ GetAgentKnowledgeBaseConfiguration$outboundSchema = unionType([
54615
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
54616
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
54617
54617
  ]);
54618
- ((GetAgentConfiguration$) => {
54619
- GetAgentConfiguration$.inboundSchema = GetAgentConfiguration$inboundSchema;
54620
- GetAgentConfiguration$.outboundSchema = GetAgentConfiguration$outboundSchema;
54621
- })(GetAgentConfiguration$ ||= {});
54618
+ ((GetAgentKnowledgeBaseConfiguration$) => {
54619
+ GetAgentKnowledgeBaseConfiguration$.inboundSchema = GetAgentKnowledgeBaseConfiguration$inboundSchema;
54620
+ GetAgentKnowledgeBaseConfiguration$.outboundSchema = GetAgentKnowledgeBaseConfiguration$outboundSchema;
54621
+ })(GetAgentKnowledgeBaseConfiguration$ ||= {});
54622
54622
  GetAgentKnowledgeBases$inboundSchema = objectType({
54623
- id: stringType().default("01K62YGY8QR3RJQ7K8PHHEHXZ1"),
54623
+ id: stringType().default("01K69SP30TSHD0QHYN85YB6ZGD"),
54624
54624
  knowledge_id: stringType(),
54625
54625
  configuration: unionType([
54626
- lazyType(() => GetAgentConfiguration2$inboundSchema),
54627
- lazyType(() => GetAgentConfiguration1$inboundSchema)
54626
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
54627
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
54628
54628
  ])
54629
54629
  }).transform((v2) => {
54630
54630
  return remap(v2, {
@@ -54632,11 +54632,11 @@ var init_getagent = __esm(() => {
54632
54632
  });
54633
54633
  });
54634
54634
  GetAgentKnowledgeBases$outboundSchema = objectType({
54635
- id: stringType().default("01K62YGY8QR3RJQ7K8PHHEHXZ1"),
54635
+ id: stringType().default("01K69SP30TSHD0QHYN85YB6ZGD"),
54636
54636
  knowledgeId: stringType(),
54637
54637
  configuration: unionType([
54638
- lazyType(() => GetAgentConfiguration2$outboundSchema),
54639
- lazyType(() => GetAgentConfiguration1$outboundSchema)
54638
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
54639
+ lazyType(() => GetAgentKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
54640
54640
  ])
54641
54641
  }).transform((v2) => {
54642
54642
  return remap(v2, {
@@ -56365,7 +56365,7 @@ var init_getalltools = __esm(() => {
56365
56365
  DataCodeTool$.outboundSchema = DataCodeTool$outboundSchema;
56366
56366
  })(DataCodeTool$ ||= {});
56367
56367
  Data5$inboundSchema = objectType({
56368
- _id: stringType().default("01K62YGYFRX97QRB1WB7XPP9CG"),
56368
+ _id: stringType().default("01K69SP38MCBBC9B3NTH1WHJ45"),
56369
56369
  path: stringType(),
56370
56370
  key: stringType(),
56371
56371
  display_name: stringType(),
@@ -56393,7 +56393,7 @@ var init_getalltools = __esm(() => {
56393
56393
  });
56394
56394
  });
56395
56395
  Data5$outboundSchema = objectType({
56396
- id: stringType().default("01K62YGYFRX97QRB1WB7XPP9CG"),
56396
+ id: stringType().default("01K69SP38MCBBC9B3NTH1WHJ45"),
56397
56397
  path: stringType(),
56398
56398
  key: stringType(),
56399
56399
  displayName: stringType(),
@@ -56511,7 +56511,7 @@ var init_getalltools = __esm(() => {
56511
56511
  DataMcp$.outboundSchema = DataMcp$outboundSchema;
56512
56512
  })(DataMcp$ ||= {});
56513
56513
  Data4$inboundSchema = objectType({
56514
- _id: stringType().default("01K62YGYFQK6P4KXNXMW44TJ13"),
56514
+ _id: stringType().default("01K69SP38KRJWZJZD8SRT0S40M"),
56515
56515
  path: stringType(),
56516
56516
  key: stringType(),
56517
56517
  display_name: stringType(),
@@ -56538,7 +56538,7 @@ var init_getalltools = __esm(() => {
56538
56538
  });
56539
56539
  });
56540
56540
  Data4$outboundSchema = objectType({
56541
- id: stringType().default("01K62YGYFQK6P4KXNXMW44TJ13"),
56541
+ id: stringType().default("01K69SP38KRJWZJZD8SRT0S40M"),
56542
56542
  path: stringType(),
56543
56543
  key: stringType(),
56544
56544
  displayName: stringType(),
@@ -56653,7 +56653,7 @@ var init_getalltools = __esm(() => {
56653
56653
  GetAllToolsDataHttp$.outboundSchema = GetAllToolsDataHttp$outboundSchema;
56654
56654
  })(GetAllToolsDataHttp$ ||= {});
56655
56655
  Data3$inboundSchema = objectType({
56656
- _id: stringType().default("01K62YGYFQMYZN3W01VEJKK73A"),
56656
+ _id: stringType().default("01K69SP38J13QSEDQKTP0TF5RW"),
56657
56657
  path: stringType(),
56658
56658
  key: stringType(),
56659
56659
  display_name: stringType(),
@@ -56680,7 +56680,7 @@ var init_getalltools = __esm(() => {
56680
56680
  });
56681
56681
  });
56682
56682
  Data3$outboundSchema = objectType({
56683
- id: stringType().default("01K62YGYFQMYZN3W01VEJKK73A"),
56683
+ id: stringType().default("01K69SP38J13QSEDQKTP0TF5RW"),
56684
56684
  path: stringType(),
56685
56685
  key: stringType(),
56686
56686
  displayName: stringType(),
@@ -56739,7 +56739,7 @@ var init_getalltools = __esm(() => {
56739
56739
  DataJsonSchema$.outboundSchema = DataJsonSchema$outboundSchema;
56740
56740
  })(DataJsonSchema$ ||= {});
56741
56741
  Data2$inboundSchema = objectType({
56742
- _id: stringType().default("01K62YGYFPS09PMFXRMY555KQN"),
56742
+ _id: stringType().default("01K69SP38JCGHB5KABQ01SZ763"),
56743
56743
  path: stringType(),
56744
56744
  key: stringType(),
56745
56745
  display_name: stringType(),
@@ -56767,7 +56767,7 @@ var init_getalltools = __esm(() => {
56767
56767
  });
56768
56768
  });
56769
56769
  Data2$outboundSchema = objectType({
56770
- id: stringType().default("01K62YGYFPS09PMFXRMY555KQN"),
56770
+ id: stringType().default("01K69SP38JCGHB5KABQ01SZ763"),
56771
56771
  path: stringType(),
56772
56772
  key: stringType(),
56773
56773
  displayName: stringType(),
@@ -56827,7 +56827,7 @@ var init_getalltools = __esm(() => {
56827
56827
  GetAllToolsDataFunction$.outboundSchema = GetAllToolsDataFunction$outboundSchema;
56828
56828
  })(GetAllToolsDataFunction$ ||= {});
56829
56829
  Data1$inboundSchema = objectType({
56830
- _id: stringType().default("01K62YGYFPQ4R0C4VRVYFEJE90"),
56830
+ _id: stringType().default("01K69SP38HDNX1A6555ZQV8T94"),
56831
56831
  path: stringType(),
56832
56832
  key: stringType(),
56833
56833
  display_name: stringType(),
@@ -56854,7 +56854,7 @@ var init_getalltools = __esm(() => {
56854
56854
  });
56855
56855
  });
56856
56856
  Data1$outboundSchema = objectType({
56857
- id: stringType().default("01K62YGYFPQ4R0C4VRVYFEJE90"),
56857
+ id: stringType().default("01K69SP38HDNX1A6555ZQV8T94"),
56858
56858
  path: stringType(),
56859
56859
  key: stringType(),
56860
56860
  displayName: stringType(),
@@ -57026,7 +57026,7 @@ var init_getbudget = __esm(() => {
57026
57026
  is_active: booleanType(),
57027
57027
  consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
57028
57028
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57029
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
57029
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
57030
57030
  }).transform((v2) => {
57031
57031
  return remap(v2, {
57032
57032
  _id: "id",
@@ -57042,7 +57042,7 @@ var init_getbudget = __esm(() => {
57042
57042
  isActive: booleanType(),
57043
57043
  consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
57044
57044
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57045
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
57045
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
57046
57046
  }).transform((v2) => {
57047
57047
  return remap(v2, {
57048
57048
  id: "_id",
@@ -57405,8 +57405,8 @@ var init_getevals = __esm(() => {
57405
57405
  DataTypescript$inboundSchema = objectType({
57406
57406
  _id: stringType(),
57407
57407
  description: stringType(),
57408
- created: stringType().default("2025-09-26T12:03:42.222Z"),
57409
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
57408
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
57409
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
57410
57410
  guardrail_config: unionType([
57411
57411
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
57412
57412
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -57423,8 +57423,8 @@ var init_getevals = __esm(() => {
57423
57423
  DataTypescript$outboundSchema = objectType({
57424
57424
  id: stringType(),
57425
57425
  description: stringType(),
57426
- created: stringType().default("2025-09-26T12:03:42.222Z"),
57427
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
57426
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
57427
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
57428
57428
  guardrailConfig: unionType([
57429
57429
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
57430
57430
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -57517,8 +57517,8 @@ var init_getevals = __esm(() => {
57517
57517
  DataRagas$inboundSchema = objectType({
57518
57518
  _id: stringType(),
57519
57519
  description: stringType(),
57520
- created: stringType().default("2025-09-26T12:03:42.222Z"),
57521
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
57520
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
57521
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
57522
57522
  guardrail_config: unionType([
57523
57523
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
57524
57524
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -57537,8 +57537,8 @@ var init_getevals = __esm(() => {
57537
57537
  DataRagas$outboundSchema = objectType({
57538
57538
  id: stringType(),
57539
57539
  description: stringType(),
57540
- created: stringType().default("2025-09-26T12:03:42.222Z"),
57541
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
57540
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
57541
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
57542
57542
  guardrailConfig: unionType([
57543
57543
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
57544
57544
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -58291,8 +58291,8 @@ var init_getevals = __esm(() => {
58291
58291
  DataFunction$inboundSchema = objectType({
58292
58292
  _id: stringType(),
58293
58293
  description: stringType(),
58294
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58295
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58294
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58295
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58296
58296
  guardrail_config: unionType([
58297
58297
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
58298
58298
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -58346,8 +58346,8 @@ var init_getevals = __esm(() => {
58346
58346
  DataFunction$outboundSchema = objectType({
58347
58347
  id: stringType(),
58348
58348
  description: stringType(),
58349
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58350
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58349
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58350
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58351
58351
  guardrailConfig: unionType([
58352
58352
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
58353
58353
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -58471,8 +58471,8 @@ var init_getevals = __esm(() => {
58471
58471
  DataPython$inboundSchema = objectType({
58472
58472
  _id: stringType(),
58473
58473
  description: stringType(),
58474
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58475
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58474
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58475
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58476
58476
  guardrail_config: unionType([
58477
58477
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
58478
58478
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -58489,8 +58489,8 @@ var init_getevals = __esm(() => {
58489
58489
  DataPython$outboundSchema = objectType({
58490
58490
  id: stringType(),
58491
58491
  description: stringType(),
58492
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58493
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58492
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58493
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58494
58494
  guardrailConfig: unionType([
58495
58495
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
58496
58496
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -58583,8 +58583,8 @@ var init_getevals = __esm(() => {
58583
58583
  DataHTTP$inboundSchema = objectType({
58584
58584
  _id: stringType(),
58585
58585
  description: stringType(),
58586
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58587
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58586
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58587
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58588
58588
  guardrail_config: unionType([
58589
58589
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
58590
58590
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -58604,8 +58604,8 @@ var init_getevals = __esm(() => {
58604
58604
  DataHTTP$outboundSchema = objectType({
58605
58605
  id: stringType(),
58606
58606
  description: stringType(),
58607
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58608
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58607
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58608
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58609
58609
  guardrailConfig: unionType([
58610
58610
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
58611
58611
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -58695,8 +58695,8 @@ var init_getevals = __esm(() => {
58695
58695
  DataJSON$inboundSchema = objectType({
58696
58696
  _id: stringType(),
58697
58697
  description: stringType(),
58698
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58699
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58698
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58699
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58700
58700
  guardrail_config: unionType([
58701
58701
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
58702
58702
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -58713,8 +58713,8 @@ var init_getevals = __esm(() => {
58713
58713
  DataJSON$outboundSchema = objectType({
58714
58714
  id: stringType(),
58715
58715
  description: stringType(),
58716
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58717
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58716
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58717
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58718
58718
  guardrailConfig: unionType([
58719
58719
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
58720
58720
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -58801,8 +58801,8 @@ var init_getevals = __esm(() => {
58801
58801
  DataLLM$inboundSchema = objectType({
58802
58802
  _id: stringType(),
58803
58803
  description: stringType(),
58804
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58805
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58804
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58805
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58806
58806
  guardrail_config: unionType([
58807
58807
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
58808
58808
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -58820,8 +58820,8 @@ var init_getevals = __esm(() => {
58820
58820
  DataLLM$outboundSchema = objectType({
58821
58821
  id: stringType(),
58822
58822
  description: stringType(),
58823
- created: stringType().default("2025-09-26T12:03:42.222Z"),
58824
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
58823
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
58824
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
58825
58825
  guardrailConfig: unionType([
58826
58826
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
58827
58827
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -61389,7 +61389,7 @@ var init_listactions = __esm(() => {
61389
61389
  });
61390
61390
 
61391
61391
  // src/models/operations/listagents.ts
61392
- var ListAgentsObject, ListAgentsStatus, ListAgentsToolApprovalRequired, ListAgentsConfigurationType, ListAgentsConfigurationAgentsType, ListAgentsHiddenPanels, ListAgentsRequest$inboundSchema, ListAgentsRequest$outboundSchema, ListAgentsRequest$, ListAgentsObject$inboundSchema, ListAgentsObject$outboundSchema, ListAgentsObject$, ListAgentsStatus$inboundSchema, ListAgentsStatus$outboundSchema, ListAgentsStatus$, ListAgentsToolApprovalRequired$inboundSchema, ListAgentsToolApprovalRequired$outboundSchema, ListAgentsToolApprovalRequired$, ListAgentsConditions$inboundSchema, ListAgentsConditions$outboundSchema, ListAgentsConditions$, ListAgentsTools$inboundSchema, ListAgentsTools$outboundSchema, ListAgentsTools$, ListAgentsSettings$inboundSchema, ListAgentsSettings$outboundSchema, ListAgentsSettings$, ListAgentsModel$inboundSchema, ListAgentsModel$outboundSchema, ListAgentsModel$, ListAgentsTeamOfAgents$inboundSchema, ListAgentsTeamOfAgents$outboundSchema, ListAgentsTeamOfAgents$, ListAgentsMetrics$inboundSchema, ListAgentsMetrics$outboundSchema, ListAgentsMetrics$, ListAgentsConfigurationType$inboundSchema, ListAgentsConfigurationType$outboundSchema, ListAgentsConfigurationType$, ListAgentsConfiguration2$inboundSchema, ListAgentsConfiguration2$outboundSchema, ListAgentsConfiguration2$, ListAgentsConfigurationAgentsType$inboundSchema, ListAgentsConfigurationAgentsType$outboundSchema, ListAgentsConfigurationAgentsType$, ListAgentsConfiguration1$inboundSchema, ListAgentsConfiguration1$outboundSchema, ListAgentsConfiguration1$, ListAgentsConfiguration$inboundSchema, ListAgentsConfiguration$outboundSchema, ListAgentsConfiguration$, ListAgentsKnowledgeBases$inboundSchema, ListAgentsKnowledgeBases$outboundSchema, ListAgentsKnowledgeBases$, ListAgentsHiddenPanels$inboundSchema, ListAgentsHiddenPanels$outboundSchema, ListAgentsHiddenPanels$, ListAgentsData$inboundSchema, ListAgentsData$outboundSchema, ListAgentsData$, ListAgentsResponseBody$inboundSchema, ListAgentsResponseBody$outboundSchema, ListAgentsResponseBody$;
61392
+ var ListAgentsObject, ListAgentsStatus, ListAgentsToolApprovalRequired, ListAgentsKnowledgeBaseConfigurationType, ListAgentsKnowledgeBaseConfigurationAgentsType, ListAgentsHiddenPanels, ListAgentsRequest$inboundSchema, ListAgentsRequest$outboundSchema, ListAgentsRequest$, ListAgentsObject$inboundSchema, ListAgentsObject$outboundSchema, ListAgentsObject$, ListAgentsStatus$inboundSchema, ListAgentsStatus$outboundSchema, ListAgentsStatus$, ListAgentsToolApprovalRequired$inboundSchema, ListAgentsToolApprovalRequired$outboundSchema, ListAgentsToolApprovalRequired$, ListAgentsConditions$inboundSchema, ListAgentsConditions$outboundSchema, ListAgentsConditions$, ListAgentsTools$inboundSchema, ListAgentsTools$outboundSchema, ListAgentsTools$, ListAgentsSettings$inboundSchema, ListAgentsSettings$outboundSchema, ListAgentsSettings$, ListAgentsModel$inboundSchema, ListAgentsModel$outboundSchema, ListAgentsModel$, ListAgentsTeamOfAgents$inboundSchema, ListAgentsTeamOfAgents$outboundSchema, ListAgentsTeamOfAgents$, ListAgentsMetrics$inboundSchema, ListAgentsMetrics$outboundSchema, ListAgentsMetrics$, ListAgentsKnowledgeBaseConfigurationType$inboundSchema, ListAgentsKnowledgeBaseConfigurationType$outboundSchema, ListAgentsKnowledgeBaseConfigurationType$, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$, ListAgentsKnowledgeBaseConfigurationAgentsType$inboundSchema, ListAgentsKnowledgeBaseConfigurationAgentsType$outboundSchema, ListAgentsKnowledgeBaseConfigurationAgentsType$, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema, ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$, ListAgentsKnowledgeBaseConfiguration$inboundSchema, ListAgentsKnowledgeBaseConfiguration$outboundSchema, ListAgentsKnowledgeBaseConfiguration$, ListAgentsKnowledgeBases$inboundSchema, ListAgentsKnowledgeBases$outboundSchema, ListAgentsKnowledgeBases$, ListAgentsHiddenPanels$inboundSchema, ListAgentsHiddenPanels$outboundSchema, ListAgentsHiddenPanels$, ListAgentsData$inboundSchema, ListAgentsData$outboundSchema, ListAgentsData$, ListAgentsResponseBody$inboundSchema, ListAgentsResponseBody$outboundSchema, ListAgentsResponseBody$;
61393
61393
  var init_listagents = __esm(() => {
61394
61394
  init_esm();
61395
61395
  init_primitives();
@@ -61407,10 +61407,10 @@ var init_listagents = __esm(() => {
61407
61407
  RespectTool: "respect_tool",
61408
61408
  None: "none"
61409
61409
  };
61410
- ListAgentsConfigurationType = {
61410
+ ListAgentsKnowledgeBaseConfigurationType = {
61411
61411
  Query: "query"
61412
61412
  };
61413
- ListAgentsConfigurationAgentsType = {
61413
+ ListAgentsKnowledgeBaseConfigurationAgentsType = {
61414
61414
  LastUserMessage: "last_user_message"
61415
61415
  };
61416
61416
  ListAgentsHiddenPanels = {
@@ -61606,58 +61606,58 @@ var init_listagents = __esm(() => {
61606
61606
  ListAgentsMetrics$.inboundSchema = ListAgentsMetrics$inboundSchema;
61607
61607
  ListAgentsMetrics$.outboundSchema = ListAgentsMetrics$outboundSchema;
61608
61608
  })(ListAgentsMetrics$ ||= {});
61609
- ListAgentsConfigurationType$inboundSchema = nativeEnumType(ListAgentsConfigurationType);
61610
- ListAgentsConfigurationType$outboundSchema = ListAgentsConfigurationType$inboundSchema;
61611
- ((ListAgentsConfigurationType$) => {
61612
- ListAgentsConfigurationType$.inboundSchema = ListAgentsConfigurationType$inboundSchema;
61613
- ListAgentsConfigurationType$.outboundSchema = ListAgentsConfigurationType$outboundSchema;
61614
- })(ListAgentsConfigurationType$ ||= {});
61615
- ListAgentsConfiguration2$inboundSchema = objectType({
61616
- type: ListAgentsConfigurationType$inboundSchema,
61609
+ ListAgentsKnowledgeBaseConfigurationType$inboundSchema = nativeEnumType(ListAgentsKnowledgeBaseConfigurationType);
61610
+ ListAgentsKnowledgeBaseConfigurationType$outboundSchema = ListAgentsKnowledgeBaseConfigurationType$inboundSchema;
61611
+ ((ListAgentsKnowledgeBaseConfigurationType$) => {
61612
+ ListAgentsKnowledgeBaseConfigurationType$.inboundSchema = ListAgentsKnowledgeBaseConfigurationType$inboundSchema;
61613
+ ListAgentsKnowledgeBaseConfigurationType$.outboundSchema = ListAgentsKnowledgeBaseConfigurationType$outboundSchema;
61614
+ })(ListAgentsKnowledgeBaseConfigurationType$ ||= {});
61615
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema = objectType({
61616
+ type: ListAgentsKnowledgeBaseConfigurationType$inboundSchema,
61617
61617
  query: stringType()
61618
61618
  });
61619
- ListAgentsConfiguration2$outboundSchema = objectType({
61620
- type: ListAgentsConfigurationType$outboundSchema,
61619
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema = objectType({
61620
+ type: ListAgentsKnowledgeBaseConfigurationType$outboundSchema,
61621
61621
  query: stringType()
61622
61622
  });
61623
- ((ListAgentsConfiguration2$) => {
61624
- ListAgentsConfiguration2$.inboundSchema = ListAgentsConfiguration2$inboundSchema;
61625
- ListAgentsConfiguration2$.outboundSchema = ListAgentsConfiguration2$outboundSchema;
61626
- })(ListAgentsConfiguration2$ ||= {});
61627
- ListAgentsConfigurationAgentsType$inboundSchema = nativeEnumType(ListAgentsConfigurationAgentsType);
61628
- ListAgentsConfigurationAgentsType$outboundSchema = ListAgentsConfigurationAgentsType$inboundSchema;
61629
- ((ListAgentsConfigurationAgentsType$) => {
61630
- ListAgentsConfigurationAgentsType$.inboundSchema = ListAgentsConfigurationAgentsType$inboundSchema;
61631
- ListAgentsConfigurationAgentsType$.outboundSchema = ListAgentsConfigurationAgentsType$outboundSchema;
61632
- })(ListAgentsConfigurationAgentsType$ ||= {});
61633
- ListAgentsConfiguration1$inboundSchema = objectType({
61634
- type: ListAgentsConfigurationAgentsType$inboundSchema
61635
- });
61636
- ListAgentsConfiguration1$outboundSchema = objectType({
61637
- type: ListAgentsConfigurationAgentsType$outboundSchema
61638
- });
61639
- ((ListAgentsConfiguration1$) => {
61640
- ListAgentsConfiguration1$.inboundSchema = ListAgentsConfiguration1$inboundSchema;
61641
- ListAgentsConfiguration1$.outboundSchema = ListAgentsConfiguration1$outboundSchema;
61642
- })(ListAgentsConfiguration1$ ||= {});
61643
- ListAgentsConfiguration$inboundSchema = unionType([
61644
- lazyType(() => ListAgentsConfiguration2$inboundSchema),
61645
- lazyType(() => ListAgentsConfiguration1$inboundSchema)
61623
+ ((ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$) => {
61624
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.inboundSchema = ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema;
61625
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.outboundSchema = ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema;
61626
+ })(ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$ ||= {});
61627
+ ListAgentsKnowledgeBaseConfigurationAgentsType$inboundSchema = nativeEnumType(ListAgentsKnowledgeBaseConfigurationAgentsType);
61628
+ ListAgentsKnowledgeBaseConfigurationAgentsType$outboundSchema = ListAgentsKnowledgeBaseConfigurationAgentsType$inboundSchema;
61629
+ ((ListAgentsKnowledgeBaseConfigurationAgentsType$) => {
61630
+ ListAgentsKnowledgeBaseConfigurationAgentsType$.inboundSchema = ListAgentsKnowledgeBaseConfigurationAgentsType$inboundSchema;
61631
+ ListAgentsKnowledgeBaseConfigurationAgentsType$.outboundSchema = ListAgentsKnowledgeBaseConfigurationAgentsType$outboundSchema;
61632
+ })(ListAgentsKnowledgeBaseConfigurationAgentsType$ ||= {});
61633
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema = objectType({
61634
+ type: ListAgentsKnowledgeBaseConfigurationAgentsType$inboundSchema
61635
+ });
61636
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema = objectType({
61637
+ type: ListAgentsKnowledgeBaseConfigurationAgentsType$outboundSchema
61638
+ });
61639
+ ((ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$) => {
61640
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.inboundSchema = ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema;
61641
+ ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.outboundSchema = ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema;
61642
+ })(ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$ ||= {});
61643
+ ListAgentsKnowledgeBaseConfiguration$inboundSchema = unionType([
61644
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
61645
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
61646
61646
  ]);
61647
- ListAgentsConfiguration$outboundSchema = unionType([
61648
- lazyType(() => ListAgentsConfiguration2$outboundSchema),
61649
- lazyType(() => ListAgentsConfiguration1$outboundSchema)
61647
+ ListAgentsKnowledgeBaseConfiguration$outboundSchema = unionType([
61648
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
61649
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
61650
61650
  ]);
61651
- ((ListAgentsConfiguration$) => {
61652
- ListAgentsConfiguration$.inboundSchema = ListAgentsConfiguration$inboundSchema;
61653
- ListAgentsConfiguration$.outboundSchema = ListAgentsConfiguration$outboundSchema;
61654
- })(ListAgentsConfiguration$ ||= {});
61651
+ ((ListAgentsKnowledgeBaseConfiguration$) => {
61652
+ ListAgentsKnowledgeBaseConfiguration$.inboundSchema = ListAgentsKnowledgeBaseConfiguration$inboundSchema;
61653
+ ListAgentsKnowledgeBaseConfiguration$.outboundSchema = ListAgentsKnowledgeBaseConfiguration$outboundSchema;
61654
+ })(ListAgentsKnowledgeBaseConfiguration$ ||= {});
61655
61655
  ListAgentsKnowledgeBases$inboundSchema = objectType({
61656
- id: stringType().default("01K62YGY886SEKTXEF48210N7N"),
61656
+ id: stringType().default("01K69SP30PWE5R0Y0080G61B43"),
61657
61657
  knowledge_id: stringType(),
61658
61658
  configuration: unionType([
61659
- lazyType(() => ListAgentsConfiguration2$inboundSchema),
61660
- lazyType(() => ListAgentsConfiguration1$inboundSchema)
61659
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
61660
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
61661
61661
  ])
61662
61662
  }).transform((v2) => {
61663
61663
  return remap(v2, {
@@ -61665,11 +61665,11 @@ var init_listagents = __esm(() => {
61665
61665
  });
61666
61666
  });
61667
61667
  ListAgentsKnowledgeBases$outboundSchema = objectType({
61668
- id: stringType().default("01K62YGY886SEKTXEF48210N7N"),
61668
+ id: stringType().default("01K69SP30PWE5R0Y0080G61B43"),
61669
61669
  knowledgeId: stringType(),
61670
61670
  configuration: unionType([
61671
- lazyType(() => ListAgentsConfiguration2$outboundSchema),
61672
- lazyType(() => ListAgentsConfiguration1$outboundSchema)
61671
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
61672
+ lazyType(() => ListAgentsKnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
61673
61673
  ])
61674
61674
  }).transform((v2) => {
61675
61675
  return remap(v2, {
@@ -61923,7 +61923,7 @@ var init_listbudgets = __esm(() => {
61923
61923
  is_active: booleanType(),
61924
61924
  consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
61925
61925
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61926
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
61926
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
61927
61927
  }).transform((v2) => {
61928
61928
  return remap(v2, {
61929
61929
  _id: "id",
@@ -61939,7 +61939,7 @@ var init_listbudgets = __esm(() => {
61939
61939
  isActive: booleanType(),
61940
61940
  consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
61941
61941
  created: dateType().transform((v2) => v2.toISOString()).optional(),
61942
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
61942
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
61943
61943
  }).transform((v2) => {
61944
61944
  return remap(v2, {
61945
61945
  id: "_id",
@@ -62207,7 +62207,7 @@ var init_listcontacts = __esm(() => {
62207
62207
  tags: arrayType(stringType()).optional(),
62208
62208
  metadata: recordType(anyType()).optional(),
62209
62209
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62210
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2)),
62210
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2)),
62211
62211
  metrics: lazyType(() => ListContactsMetrics$inboundSchema)
62212
62212
  }).transform((v2) => {
62213
62213
  return remap(v2, {
@@ -62226,7 +62226,7 @@ var init_listcontacts = __esm(() => {
62226
62226
  tags: arrayType(stringType()).optional(),
62227
62227
  metadata: recordType(anyType()).optional(),
62228
62228
  created: dateType().transform((v2) => v2.toISOString()).optional(),
62229
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString()),
62229
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString()),
62230
62230
  metrics: lazyType(() => ListContactsMetrics$outboundSchema)
62231
62231
  }).transform((v2) => {
62232
62232
  return remap(v2, {
@@ -62978,7 +62978,7 @@ var init_listdatasetdatapoints = __esm(() => {
62978
62978
  created_by_id: stringType().optional(),
62979
62979
  updated_by_id: stringType().optional(),
62980
62980
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62981
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
62981
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
62982
62982
  }).transform((v2) => {
62983
62983
  return remap(v2, {
62984
62984
  _id: "id",
@@ -63005,7 +63005,7 @@ var init_listdatasetdatapoints = __esm(() => {
63005
63005
  createdById: stringType().optional(),
63006
63006
  updatedById: stringType().optional(),
63007
63007
  created: dateType().transform((v2) => v2.toISOString()).optional(),
63008
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
63008
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
63009
63009
  }).transform((v2) => {
63010
63010
  return remap(v2, {
63011
63011
  id: "_id",
@@ -63113,7 +63113,7 @@ var init_listdatasets = __esm(() => {
63113
63113
  updated_by_id: stringType().optional(),
63114
63114
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
63115
63115
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
63116
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
63116
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
63117
63117
  }).transform((v2) => {
63118
63118
  return remap(v2, {
63119
63119
  _id: "id",
@@ -63133,7 +63133,7 @@ var init_listdatasets = __esm(() => {
63133
63133
  updatedById: stringType().optional(),
63134
63134
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
63135
63135
  created: dateType().transform((v2) => v2.toISOString()).optional(),
63136
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
63136
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
63137
63137
  }).transform((v2) => {
63138
63138
  return remap(v2, {
63139
63139
  id: "_id",
@@ -63238,7 +63238,7 @@ var init_listdatasources = __esm(() => {
63238
63238
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
63239
63239
  })(ListDatasourcesStatus$ ||= {});
63240
63240
  ListDatasourcesData$inboundSchema = objectType({
63241
- _id: stringType().default("01K62YGYCM426DXKA2WRZX1V7R"),
63241
+ _id: stringType().default("01K69SP35VAWDY07HAABMZV6WV"),
63242
63242
  display_name: stringType(),
63243
63243
  description: stringType().optional(),
63244
63244
  status: ListDatasourcesStatus$inboundSchema,
@@ -63261,7 +63261,7 @@ var init_listdatasources = __esm(() => {
63261
63261
  });
63262
63262
  });
63263
63263
  ListDatasourcesData$outboundSchema = objectType({
63264
- id: stringType().default("01K62YGYCM426DXKA2WRZX1V7R"),
63264
+ id: stringType().default("01K69SP35VAWDY07HAABMZV6WV"),
63265
63265
  displayName: stringType(),
63266
63266
  description: stringType().optional(),
63267
63267
  status: ListDatasourcesStatus$outboundSchema,
@@ -64948,7 +64948,7 @@ var init_retrievecontact = __esm(() => {
64948
64948
  tags: arrayType(stringType()).optional(),
64949
64949
  metadata: recordType(anyType()).optional(),
64950
64950
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
64951
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
64951
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
64952
64952
  }).transform((v2) => {
64953
64953
  return remap(v2, {
64954
64954
  _id: "id",
@@ -64966,7 +64966,7 @@ var init_retrievecontact = __esm(() => {
64966
64966
  tags: arrayType(stringType()).optional(),
64967
64967
  metadata: recordType(anyType()).optional(),
64968
64968
  created: dateType().transform((v2) => v2.toISOString()).optional(),
64969
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
64969
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
64970
64970
  }).transform((v2) => {
64971
64971
  return remap(v2, {
64972
64972
  id: "_id",
@@ -65680,7 +65680,7 @@ var init_retrievedatapoint = __esm(() => {
65680
65680
  created_by_id: stringType().optional(),
65681
65681
  updated_by_id: stringType().optional(),
65682
65682
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
65683
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
65683
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
65684
65684
  }).transform((v2) => {
65685
65685
  return remap(v2, {
65686
65686
  _id: "id",
@@ -65707,7 +65707,7 @@ var init_retrievedatapoint = __esm(() => {
65707
65707
  createdById: stringType().optional(),
65708
65708
  updatedById: stringType().optional(),
65709
65709
  created: dateType().transform((v2) => v2.toISOString()).optional(),
65710
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
65710
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
65711
65711
  }).transform((v2) => {
65712
65712
  return remap(v2, {
65713
65713
  id: "_id",
@@ -65778,7 +65778,7 @@ var init_retrievedataset = __esm(() => {
65778
65778
  updated_by_id: stringType().optional(),
65779
65779
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
65780
65780
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
65781
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
65781
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
65782
65782
  }).transform((v2) => {
65783
65783
  return remap(v2, {
65784
65784
  _id: "id",
@@ -65798,7 +65798,7 @@ var init_retrievedataset = __esm(() => {
65798
65798
  updatedById: stringType().optional(),
65799
65799
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
65800
65800
  created: dateType().transform((v2) => v2.toISOString()).optional(),
65801
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
65801
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
65802
65802
  }).transform((v2) => {
65803
65803
  return remap(v2, {
65804
65804
  id: "_id",
@@ -65856,7 +65856,7 @@ var init_retrievedatasource = __esm(() => {
65856
65856
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
65857
65857
  })(RetrieveDatasourceStatus$ ||= {});
65858
65858
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
65859
- _id: stringType().default("01K62YGYCMDEF84D5KVKJ9X47W"),
65859
+ _id: stringType().default("01K69SP35VACQ247H0N14SVG05"),
65860
65860
  display_name: stringType(),
65861
65861
  description: stringType().optional(),
65862
65862
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -65879,7 +65879,7 @@ var init_retrievedatasource = __esm(() => {
65879
65879
  });
65880
65880
  });
65881
65881
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
65882
- id: stringType().default("01K62YGYCMDEF84D5KVKJ9X47W"),
65882
+ id: stringType().default("01K69SP35VACQ247H0N14SVG05"),
65883
65883
  displayName: stringType(),
65884
65884
  description: stringType().optional(),
65885
65885
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -66552,7 +66552,7 @@ var init_retrievetool = __esm(() => {
66552
66552
  RetrieveToolResponseBodyCodeTool$.outboundSchema = RetrieveToolResponseBodyCodeTool$outboundSchema;
66553
66553
  })(RetrieveToolResponseBodyCodeTool$ ||= {});
66554
66554
  RetrieveToolResponseBody5$inboundSchema = objectType({
66555
- _id: stringType().default("01K62YGYGDE2X31GKFS0003KKG"),
66555
+ _id: stringType().default("01K69SP3968B35GW1NRRRZ0YA3"),
66556
66556
  path: stringType(),
66557
66557
  key: stringType(),
66558
66558
  display_name: stringType(),
@@ -66580,7 +66580,7 @@ var init_retrievetool = __esm(() => {
66580
66580
  });
66581
66581
  });
66582
66582
  RetrieveToolResponseBody5$outboundSchema = objectType({
66583
- id: stringType().default("01K62YGYGDE2X31GKFS0003KKG"),
66583
+ id: stringType().default("01K69SP3968B35GW1NRRRZ0YA3"),
66584
66584
  path: stringType(),
66585
66585
  key: stringType(),
66586
66586
  displayName: stringType(),
@@ -66698,7 +66698,7 @@ var init_retrievetool = __esm(() => {
66698
66698
  RetrieveToolResponseBodyMcp$.outboundSchema = RetrieveToolResponseBodyMcp$outboundSchema;
66699
66699
  })(RetrieveToolResponseBodyMcp$ ||= {});
66700
66700
  RetrieveToolResponseBody4$inboundSchema = objectType({
66701
- _id: stringType().default("01K62YGYG57VT4NFH9TZEPB7T2"),
66701
+ _id: stringType().default("01K69SP395XTJRM12J486SXZ81"),
66702
66702
  path: stringType(),
66703
66703
  key: stringType(),
66704
66704
  display_name: stringType(),
@@ -66725,7 +66725,7 @@ var init_retrievetool = __esm(() => {
66725
66725
  });
66726
66726
  });
66727
66727
  RetrieveToolResponseBody4$outboundSchema = objectType({
66728
- id: stringType().default("01K62YGYG57VT4NFH9TZEPB7T2"),
66728
+ id: stringType().default("01K69SP395XTJRM12J486SXZ81"),
66729
66729
  path: stringType(),
66730
66730
  key: stringType(),
66731
66731
  displayName: stringType(),
@@ -66840,7 +66840,7 @@ var init_retrievetool = __esm(() => {
66840
66840
  RetrieveToolResponseBodyHttp$.outboundSchema = RetrieveToolResponseBodyHttp$outboundSchema;
66841
66841
  })(RetrieveToolResponseBodyHttp$ ||= {});
66842
66842
  RetrieveToolResponseBody3$inboundSchema = objectType({
66843
- _id: stringType().default("01K62YGYG5P5SJR9WPZS4E2VYX"),
66843
+ _id: stringType().default("01K69SP395998R1NE44RG4QQT4"),
66844
66844
  path: stringType(),
66845
66845
  key: stringType(),
66846
66846
  display_name: stringType(),
@@ -66867,7 +66867,7 @@ var init_retrievetool = __esm(() => {
66867
66867
  });
66868
66868
  });
66869
66869
  RetrieveToolResponseBody3$outboundSchema = objectType({
66870
- id: stringType().default("01K62YGYG5P5SJR9WPZS4E2VYX"),
66870
+ id: stringType().default("01K69SP395998R1NE44RG4QQT4"),
66871
66871
  path: stringType(),
66872
66872
  key: stringType(),
66873
66873
  displayName: stringType(),
@@ -66926,7 +66926,7 @@ var init_retrievetool = __esm(() => {
66926
66926
  RetrieveToolResponseBodyJsonSchema$.outboundSchema = RetrieveToolResponseBodyJsonSchema$outboundSchema;
66927
66927
  })(RetrieveToolResponseBodyJsonSchema$ ||= {});
66928
66928
  RetrieveToolResponseBody2$inboundSchema = objectType({
66929
- _id: stringType().default("01K62YGYG44PG5ZPHXGXVAD794"),
66929
+ _id: stringType().default("01K69SP3949SYGX595YZ4JR18M"),
66930
66930
  path: stringType(),
66931
66931
  key: stringType(),
66932
66932
  display_name: stringType(),
@@ -66954,7 +66954,7 @@ var init_retrievetool = __esm(() => {
66954
66954
  });
66955
66955
  });
66956
66956
  RetrieveToolResponseBody2$outboundSchema = objectType({
66957
- id: stringType().default("01K62YGYG44PG5ZPHXGXVAD794"),
66957
+ id: stringType().default("01K69SP3949SYGX595YZ4JR18M"),
66958
66958
  path: stringType(),
66959
66959
  key: stringType(),
66960
66960
  displayName: stringType(),
@@ -67014,7 +67014,7 @@ var init_retrievetool = __esm(() => {
67014
67014
  RetrieveToolResponseBodyFunction$.outboundSchema = RetrieveToolResponseBodyFunction$outboundSchema;
67015
67015
  })(RetrieveToolResponseBodyFunction$ ||= {});
67016
67016
  RetrieveToolResponseBody1$inboundSchema = objectType({
67017
- _id: stringType().default("01K62YGYG4CD6R15430VM7VZ5Y"),
67017
+ _id: stringType().default("01K69SP394ME176T6BF40SZ2G4"),
67018
67018
  path: stringType(),
67019
67019
  key: stringType(),
67020
67020
  display_name: stringType(),
@@ -67041,7 +67041,7 @@ var init_retrievetool = __esm(() => {
67041
67041
  });
67042
67042
  });
67043
67043
  RetrieveToolResponseBody1$outboundSchema = objectType({
67044
- id: stringType().default("01K62YGYG4CD6R15430VM7VZ5Y"),
67044
+ id: stringType().default("01K69SP394ME176T6BF40SZ2G4"),
67045
67045
  path: stringType(),
67046
67046
  key: stringType(),
67047
67047
  displayName: stringType(),
@@ -67092,14 +67092,14 @@ var init_retrievetool = __esm(() => {
67092
67092
  });
67093
67093
 
67094
67094
  // src/models/operations/runagent.ts
67095
- var Role2, Role1, RunAgentPublicMessagePartKind, PublicMessagePartKind, Kind, RunAgentConfigurationType, ConfigurationType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type, Language, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type, Method, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType, RunAgentRunAgentRequestToolAgentsRequestType, RunAgentRunAgentRequestToolAgentsType, RunAgentRunAgentRequestToolType, RunAgentRequestToolType, ToolApprovalRequired, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, Role2$inboundSchema, Role2$outboundSchema, Role2$, Role1$inboundSchema, Role1$outboundSchema, Role1$, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentRole$, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, RunAgentPublicMessagePartKind$, ToolResultPart$inboundSchema, ToolResultPart$outboundSchema, ToolResultPart$, PublicMessagePartKind$inboundSchema, PublicMessagePartKind$outboundSchema, PublicMessagePartKind$, File2$inboundSchema, File2$outboundSchema, File2$, File1$inboundSchema, File1$outboundSchema, File1$, PublicMessagePartFile$inboundSchema, PublicMessagePartFile$outboundSchema, PublicMessagePartFile$, FilePart$inboundSchema, FilePart$outboundSchema, FilePart$, Kind$inboundSchema, Kind$outboundSchema, Kind$, TextPart$inboundSchema, TextPart$outboundSchema, TextPart$, PublicMessagePart$inboundSchema, PublicMessagePart$outboundSchema, PublicMessagePart$, Message$inboundSchema, Message$outboundSchema, Message$, Contact$inboundSchema, Contact$outboundSchema, Contact$, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentThread$, Memory$inboundSchema, Memory$outboundSchema, Memory$, RunAgentConfigurationType$inboundSchema, RunAgentConfigurationType$outboundSchema, RunAgentConfigurationType$, Configuration2$inboundSchema, Configuration2$outboundSchema, Configuration2$, ConfigurationType$inboundSchema, ConfigurationType$outboundSchema, ConfigurationType$, Configuration1$inboundSchema, Configuration1$outboundSchema, Configuration1$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, KnowledgeBases$, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, TeamOfAgents$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$, RunAgentRequestToolFunction$inboundSchema, RunAgentRequestToolFunction$outboundSchema, RunAgentRequestToolFunction$, FunctionTool$inboundSchema, FunctionTool$outboundSchema, FunctionTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$, Language$inboundSchema, Language$outboundSchema, Language$, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeTool$, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CodeExecutionTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$, Method$inboundSchema, Method$outboundSchema, Method$, Blueprint$inboundSchema, Blueprint$outboundSchema, Blueprint$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$, DefaultValue$inboundSchema, DefaultValue$outboundSchema, DefaultValue$, Arguments$inboundSchema, Arguments$outboundSchema, Arguments$, Http$inboundSchema, Http$outboundSchema, Http$, HTTPTool$inboundSchema, HTTPTool$outboundSchema, HTTPTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CurrentDateTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, QueryKnowledgeBaseTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, RetrieveKnowledgeBasesTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, RetrieveMemoryStoresTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, WriteMemoryStoreTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, QueryMemoryStoreTool$, RunAgentRunAgentRequestToolAgentsRequestType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestType$, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, RetrieveAgentsTool$, RunAgentRunAgentRequestToolAgentsType$inboundSchema, RunAgentRunAgentRequestToolAgentsType$outboundSchema, RunAgentRunAgentRequestToolAgentsType$, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CallSubAgentTool$, RunAgentRunAgentRequestToolType$inboundSchema, RunAgentRunAgentRequestToolType$outboundSchema, RunAgentRunAgentRequestToolType$, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, WebScraperTool$, RunAgentRequestToolType$inboundSchema, RunAgentRequestToolType$outboundSchema, RunAgentRequestToolType$, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, GoogleSearchTool$, RunAgentRequestTool$inboundSchema, RunAgentRequestTool$outboundSchema, RunAgentRequestTool$, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, ToolApprovalRequired$, Settings$inboundSchema, Settings$outboundSchema, Settings$, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentRequestBody$, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentKind$, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentState$, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsKind$, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentAgentsRole$, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentMessage$, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentStatus$, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema, RunAgentResponseBody$;
67095
+ var RoleToolMessage, RoleUserMessage, RunAgentPublicMessagePartKind, PublicMessagePartKind, Kind, RunAgentKnowledgeBaseConfigurationType, KnowledgeBaseConfigurationType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type, Language, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type, Method, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType, RunAgentRunAgentRequestToolAgentsRequestType, RunAgentRunAgentRequestToolAgentsType, RunAgentRunAgentRequestToolType, RunAgentRequestToolType, ToolApprovalRequired, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RoleToolMessage$inboundSchema, RoleToolMessage$outboundSchema, RoleToolMessage$, RoleUserMessage$inboundSchema, RoleUserMessage$outboundSchema, RoleUserMessage$, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentRole$, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, RunAgentPublicMessagePartKind$, ToolResultPart$inboundSchema, ToolResultPart$outboundSchema, ToolResultPart$, PublicMessagePartKind$inboundSchema, PublicMessagePartKind$outboundSchema, PublicMessagePartKind$, FileInURIFormat$inboundSchema, FileInURIFormat$outboundSchema, FileInURIFormat$, BinaryFormat$inboundSchema, BinaryFormat$outboundSchema, BinaryFormat$, PublicMessagePartFile$inboundSchema, PublicMessagePartFile$outboundSchema, PublicMessagePartFile$, FilePart$inboundSchema, FilePart$outboundSchema, FilePart$, Kind$inboundSchema, Kind$outboundSchema, Kind$, TextPart$inboundSchema, TextPart$outboundSchema, TextPart$, PublicMessagePart$inboundSchema, PublicMessagePart$outboundSchema, PublicMessagePart$, Message$inboundSchema, Message$outboundSchema, Message$, Contact$inboundSchema, Contact$outboundSchema, Contact$, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentThread$, Memory$inboundSchema, Memory$outboundSchema, Memory$, RunAgentKnowledgeBaseConfigurationType$inboundSchema, RunAgentKnowledgeBaseConfigurationType$outboundSchema, RunAgentKnowledgeBaseConfigurationType$, KnowledgeBaseStaticQuery$inboundSchema, KnowledgeBaseStaticQuery$outboundSchema, KnowledgeBaseStaticQuery$, KnowledgeBaseConfigurationType$inboundSchema, KnowledgeBaseConfigurationType$outboundSchema, KnowledgeBaseConfigurationType$, KnowledgeBaseLastUserMessage$inboundSchema, KnowledgeBaseLastUserMessage$outboundSchema, KnowledgeBaseLastUserMessage$, KnowledgeBaseConfiguration$inboundSchema, KnowledgeBaseConfiguration$outboundSchema, KnowledgeBaseConfiguration$, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, KnowledgeBases$, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, TeamOfAgents$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$, RunAgentRequestToolFunction$inboundSchema, RunAgentRequestToolFunction$outboundSchema, RunAgentRequestToolFunction$, FunctionTool$inboundSchema, FunctionTool$outboundSchema, FunctionTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$, Language$inboundSchema, Language$outboundSchema, Language$, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeTool$, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CodeExecutionTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$, Method$inboundSchema, Method$outboundSchema, Method$, Blueprint$inboundSchema, Blueprint$outboundSchema, Blueprint$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$, DefaultValue$inboundSchema, DefaultValue$outboundSchema, DefaultValue$, Arguments$inboundSchema, Arguments$outboundSchema, Arguments$, Http$inboundSchema, Http$outboundSchema, Http$, HTTPTool$inboundSchema, HTTPTool$outboundSchema, HTTPTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CurrentDateTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, QueryKnowledgeBaseTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, RetrieveKnowledgeBasesTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, RetrieveMemoryStoresTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, WriteMemoryStoreTool$, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestRequestBodyType$, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, QueryMemoryStoreTool$, RunAgentRunAgentRequestToolAgentsRequestType$inboundSchema, RunAgentRunAgentRequestToolAgentsRequestType$outboundSchema, RunAgentRunAgentRequestToolAgentsRequestType$, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, RetrieveAgentsTool$, RunAgentRunAgentRequestToolAgentsType$inboundSchema, RunAgentRunAgentRequestToolAgentsType$outboundSchema, RunAgentRunAgentRequestToolAgentsType$, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CallSubAgentTool$, RunAgentRunAgentRequestToolType$inboundSchema, RunAgentRunAgentRequestToolType$outboundSchema, RunAgentRunAgentRequestToolType$, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, WebScraperTool$, RunAgentRequestToolType$inboundSchema, RunAgentRequestToolType$outboundSchema, RunAgentRequestToolType$, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, GoogleSearchTool$, RunAgentRequestTool$inboundSchema, RunAgentRequestTool$outboundSchema, RunAgentRequestTool$, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, ToolApprovalRequired$, Settings$inboundSchema, Settings$outboundSchema, Settings$, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentRequestBody$, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentKind$, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentState$, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsKind$, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentAgentsRole$, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentMessage$, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentStatus$, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema, RunAgentResponseBody$;
67096
67096
  var init_runagent = __esm(() => {
67097
67097
  init_esm();
67098
67098
  init_primitives();
67099
- Role2 = {
67099
+ RoleToolMessage = {
67100
67100
  Tool: "tool"
67101
67101
  };
67102
- Role1 = {
67102
+ RoleUserMessage = {
67103
67103
  User: "user"
67104
67104
  };
67105
67105
  RunAgentPublicMessagePartKind = {
@@ -67111,10 +67111,10 @@ var init_runagent = __esm(() => {
67111
67111
  Kind = {
67112
67112
  Text: "text"
67113
67113
  };
67114
- RunAgentConfigurationType = {
67114
+ RunAgentKnowledgeBaseConfigurationType = {
67115
67115
  Query: "query"
67116
67116
  };
67117
- ConfigurationType = {
67117
+ KnowledgeBaseConfigurationType = {
67118
67118
  LastUserMessage: "last_user_message"
67119
67119
  };
67120
67120
  RunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type = {
@@ -67198,20 +67198,20 @@ var init_runagent = __esm(() => {
67198
67198
  Tool: "tool",
67199
67199
  System: "system"
67200
67200
  };
67201
- Role2$inboundSchema = nativeEnumType(Role2);
67202
- Role2$outboundSchema = Role2$inboundSchema;
67203
- ((Role2$) => {
67204
- Role2$.inboundSchema = Role2$inboundSchema;
67205
- Role2$.outboundSchema = Role2$outboundSchema;
67206
- })(Role2$ ||= {});
67207
- Role1$inboundSchema = nativeEnumType(Role1);
67208
- Role1$outboundSchema = Role1$inboundSchema;
67209
- ((Role1$) => {
67210
- Role1$.inboundSchema = Role1$inboundSchema;
67211
- Role1$.outboundSchema = Role1$outboundSchema;
67212
- })(Role1$ ||= {});
67213
- RunAgentRole$inboundSchema = unionType([Role1$inboundSchema, Role2$inboundSchema]);
67214
- RunAgentRole$outboundSchema = unionType([Role1$outboundSchema, Role2$outboundSchema]);
67201
+ RoleToolMessage$inboundSchema = nativeEnumType(RoleToolMessage);
67202
+ RoleToolMessage$outboundSchema = RoleToolMessage$inboundSchema;
67203
+ ((RoleToolMessage$) => {
67204
+ RoleToolMessage$.inboundSchema = RoleToolMessage$inboundSchema;
67205
+ RoleToolMessage$.outboundSchema = RoleToolMessage$outboundSchema;
67206
+ })(RoleToolMessage$ ||= {});
67207
+ RoleUserMessage$inboundSchema = nativeEnumType(RoleUserMessage);
67208
+ RoleUserMessage$outboundSchema = RoleUserMessage$inboundSchema;
67209
+ ((RoleUserMessage$) => {
67210
+ RoleUserMessage$.inboundSchema = RoleUserMessage$inboundSchema;
67211
+ RoleUserMessage$.outboundSchema = RoleUserMessage$outboundSchema;
67212
+ })(RoleUserMessage$ ||= {});
67213
+ RunAgentRole$inboundSchema = unionType([RoleUserMessage$inboundSchema, RoleToolMessage$inboundSchema]);
67214
+ RunAgentRole$outboundSchema = unionType([RoleUserMessage$outboundSchema, RoleToolMessage$outboundSchema]);
67215
67215
  ((RunAgentRole$) => {
67216
67216
  RunAgentRole$.inboundSchema = RunAgentRole$inboundSchema;
67217
67217
  RunAgentRole$.outboundSchema = RunAgentRole$outboundSchema;
@@ -67252,41 +67252,41 @@ var init_runagent = __esm(() => {
67252
67252
  PublicMessagePartKind$.inboundSchema = PublicMessagePartKind$inboundSchema;
67253
67253
  PublicMessagePartKind$.outboundSchema = PublicMessagePartKind$outboundSchema;
67254
67254
  })(PublicMessagePartKind$ ||= {});
67255
- File2$inboundSchema = objectType({
67255
+ FileInURIFormat$inboundSchema = objectType({
67256
67256
  uri: stringType(),
67257
67257
  mimeType: stringType().optional(),
67258
67258
  name: stringType().optional()
67259
67259
  });
67260
- File2$outboundSchema = objectType({
67260
+ FileInURIFormat$outboundSchema = objectType({
67261
67261
  uri: stringType(),
67262
67262
  mimeType: stringType().optional(),
67263
67263
  name: stringType().optional()
67264
67264
  });
67265
- ((File2$) => {
67266
- File2$.inboundSchema = File2$inboundSchema;
67267
- File2$.outboundSchema = File2$outboundSchema;
67268
- })(File2$ ||= {});
67269
- File1$inboundSchema = objectType({
67265
+ ((FileInURIFormat$) => {
67266
+ FileInURIFormat$.inboundSchema = FileInURIFormat$inboundSchema;
67267
+ FileInURIFormat$.outboundSchema = FileInURIFormat$outboundSchema;
67268
+ })(FileInURIFormat$ ||= {});
67269
+ BinaryFormat$inboundSchema = objectType({
67270
67270
  bytes: stringType(),
67271
67271
  mimeType: stringType().optional(),
67272
67272
  name: stringType().optional()
67273
67273
  });
67274
- File1$outboundSchema = objectType({
67274
+ BinaryFormat$outboundSchema = objectType({
67275
67275
  bytes: stringType(),
67276
67276
  mimeType: stringType().optional(),
67277
67277
  name: stringType().optional()
67278
67278
  });
67279
- ((File1$) => {
67280
- File1$.inboundSchema = File1$inboundSchema;
67281
- File1$.outboundSchema = File1$outboundSchema;
67282
- })(File1$ ||= {});
67279
+ ((BinaryFormat$) => {
67280
+ BinaryFormat$.inboundSchema = BinaryFormat$inboundSchema;
67281
+ BinaryFormat$.outboundSchema = BinaryFormat$outboundSchema;
67282
+ })(BinaryFormat$ ||= {});
67283
67283
  PublicMessagePartFile$inboundSchema = unionType([
67284
- lazyType(() => File1$inboundSchema),
67285
- lazyType(() => File2$inboundSchema)
67284
+ lazyType(() => BinaryFormat$inboundSchema),
67285
+ lazyType(() => FileInURIFormat$inboundSchema)
67286
67286
  ]);
67287
67287
  PublicMessagePartFile$outboundSchema = unionType([
67288
- lazyType(() => File1$outboundSchema),
67289
- lazyType(() => File2$outboundSchema)
67288
+ lazyType(() => BinaryFormat$outboundSchema),
67289
+ lazyType(() => FileInURIFormat$outboundSchema)
67290
67290
  ]);
67291
67291
  ((PublicMessagePartFile$) => {
67292
67292
  PublicMessagePartFile$.inboundSchema = PublicMessagePartFile$inboundSchema;
@@ -67295,16 +67295,16 @@ var init_runagent = __esm(() => {
67295
67295
  FilePart$inboundSchema = objectType({
67296
67296
  kind: PublicMessagePartKind$inboundSchema,
67297
67297
  file: unionType([
67298
- lazyType(() => File1$inboundSchema),
67299
- lazyType(() => File2$inboundSchema)
67298
+ lazyType(() => BinaryFormat$inboundSchema),
67299
+ lazyType(() => FileInURIFormat$inboundSchema)
67300
67300
  ]),
67301
67301
  metadata: recordType(anyType()).optional()
67302
67302
  });
67303
67303
  FilePart$outboundSchema = objectType({
67304
67304
  kind: PublicMessagePartKind$outboundSchema,
67305
67305
  file: unionType([
67306
- lazyType(() => File1$outboundSchema),
67307
- lazyType(() => File2$outboundSchema)
67306
+ lazyType(() => BinaryFormat$outboundSchema),
67307
+ lazyType(() => FileInURIFormat$outboundSchema)
67308
67308
  ]),
67309
67309
  metadata: recordType(anyType()).optional()
67310
67310
  });
@@ -67346,7 +67346,10 @@ var init_runagent = __esm(() => {
67346
67346
  })(PublicMessagePart$ ||= {});
67347
67347
  Message$inboundSchema = objectType({
67348
67348
  messageId: stringType().optional(),
67349
- role: unionType([Role1$inboundSchema, Role2$inboundSchema]),
67349
+ role: unionType([
67350
+ RoleUserMessage$inboundSchema,
67351
+ RoleToolMessage$inboundSchema
67352
+ ]),
67350
67353
  parts: arrayType(unionType([
67351
67354
  lazyType(() => TextPart$inboundSchema),
67352
67355
  lazyType(() => FilePart$inboundSchema),
@@ -67355,7 +67358,10 @@ var init_runagent = __esm(() => {
67355
67358
  });
67356
67359
  Message$outboundSchema = objectType({
67357
67360
  messageId: stringType().optional(),
67358
- role: unionType([Role1$outboundSchema, Role2$outboundSchema]),
67361
+ role: unionType([
67362
+ RoleUserMessage$outboundSchema,
67363
+ RoleToolMessage$outboundSchema
67364
+ ]),
67359
67365
  parts: arrayType(unionType([
67360
67366
  lazyType(() => TextPart$outboundSchema),
67361
67367
  lazyType(() => FilePart$outboundSchema),
@@ -67426,62 +67432,62 @@ var init_runagent = __esm(() => {
67426
67432
  Memory$.inboundSchema = Memory$inboundSchema;
67427
67433
  Memory$.outboundSchema = Memory$outboundSchema;
67428
67434
  })(Memory$ ||= {});
67429
- RunAgentConfigurationType$inboundSchema = nativeEnumType(RunAgentConfigurationType);
67430
- RunAgentConfigurationType$outboundSchema = RunAgentConfigurationType$inboundSchema;
67431
- ((RunAgentConfigurationType$) => {
67432
- RunAgentConfigurationType$.inboundSchema = RunAgentConfigurationType$inboundSchema;
67433
- RunAgentConfigurationType$.outboundSchema = RunAgentConfigurationType$outboundSchema;
67434
- })(RunAgentConfigurationType$ ||= {});
67435
- Configuration2$inboundSchema = objectType({
67436
- type: RunAgentConfigurationType$inboundSchema,
67435
+ RunAgentKnowledgeBaseConfigurationType$inboundSchema = nativeEnumType(RunAgentKnowledgeBaseConfigurationType);
67436
+ RunAgentKnowledgeBaseConfigurationType$outboundSchema = RunAgentKnowledgeBaseConfigurationType$inboundSchema;
67437
+ ((RunAgentKnowledgeBaseConfigurationType$) => {
67438
+ RunAgentKnowledgeBaseConfigurationType$.inboundSchema = RunAgentKnowledgeBaseConfigurationType$inboundSchema;
67439
+ RunAgentKnowledgeBaseConfigurationType$.outboundSchema = RunAgentKnowledgeBaseConfigurationType$outboundSchema;
67440
+ })(RunAgentKnowledgeBaseConfigurationType$ ||= {});
67441
+ KnowledgeBaseStaticQuery$inboundSchema = objectType({
67442
+ type: RunAgentKnowledgeBaseConfigurationType$inboundSchema,
67437
67443
  query: stringType()
67438
67444
  });
67439
- Configuration2$outboundSchema = objectType({
67440
- type: RunAgentConfigurationType$outboundSchema,
67445
+ KnowledgeBaseStaticQuery$outboundSchema = objectType({
67446
+ type: RunAgentKnowledgeBaseConfigurationType$outboundSchema,
67441
67447
  query: stringType()
67442
67448
  });
67443
- ((Configuration2$) => {
67444
- Configuration2$.inboundSchema = Configuration2$inboundSchema;
67445
- Configuration2$.outboundSchema = Configuration2$outboundSchema;
67446
- })(Configuration2$ ||= {});
67447
- ConfigurationType$inboundSchema = nativeEnumType(ConfigurationType);
67448
- ConfigurationType$outboundSchema = ConfigurationType$inboundSchema;
67449
- ((ConfigurationType$) => {
67450
- ConfigurationType$.inboundSchema = ConfigurationType$inboundSchema;
67451
- ConfigurationType$.outboundSchema = ConfigurationType$outboundSchema;
67452
- })(ConfigurationType$ ||= {});
67453
- Configuration1$inboundSchema = objectType({
67454
- type: ConfigurationType$inboundSchema
67455
- });
67456
- Configuration1$outboundSchema = objectType({
67457
- type: ConfigurationType$outboundSchema
67458
- });
67459
- ((Configuration1$) => {
67460
- Configuration1$.inboundSchema = Configuration1$inboundSchema;
67461
- Configuration1$.outboundSchema = Configuration1$outboundSchema;
67462
- })(Configuration1$ ||= {});
67463
- Configuration$inboundSchema = unionType([
67464
- lazyType(() => Configuration2$inboundSchema),
67465
- lazyType(() => Configuration1$inboundSchema)
67449
+ ((KnowledgeBaseStaticQuery$) => {
67450
+ KnowledgeBaseStaticQuery$.inboundSchema = KnowledgeBaseStaticQuery$inboundSchema;
67451
+ KnowledgeBaseStaticQuery$.outboundSchema = KnowledgeBaseStaticQuery$outboundSchema;
67452
+ })(KnowledgeBaseStaticQuery$ ||= {});
67453
+ KnowledgeBaseConfigurationType$inboundSchema = nativeEnumType(KnowledgeBaseConfigurationType);
67454
+ KnowledgeBaseConfigurationType$outboundSchema = KnowledgeBaseConfigurationType$inboundSchema;
67455
+ ((KnowledgeBaseConfigurationType$) => {
67456
+ KnowledgeBaseConfigurationType$.inboundSchema = KnowledgeBaseConfigurationType$inboundSchema;
67457
+ KnowledgeBaseConfigurationType$.outboundSchema = KnowledgeBaseConfigurationType$outboundSchema;
67458
+ })(KnowledgeBaseConfigurationType$ ||= {});
67459
+ KnowledgeBaseLastUserMessage$inboundSchema = objectType({
67460
+ type: KnowledgeBaseConfigurationType$inboundSchema
67461
+ });
67462
+ KnowledgeBaseLastUserMessage$outboundSchema = objectType({
67463
+ type: KnowledgeBaseConfigurationType$outboundSchema
67464
+ });
67465
+ ((KnowledgeBaseLastUserMessage$) => {
67466
+ KnowledgeBaseLastUserMessage$.inboundSchema = KnowledgeBaseLastUserMessage$inboundSchema;
67467
+ KnowledgeBaseLastUserMessage$.outboundSchema = KnowledgeBaseLastUserMessage$outboundSchema;
67468
+ })(KnowledgeBaseLastUserMessage$ ||= {});
67469
+ KnowledgeBaseConfiguration$inboundSchema = unionType([
67470
+ lazyType(() => KnowledgeBaseStaticQuery$inboundSchema),
67471
+ lazyType(() => KnowledgeBaseLastUserMessage$inboundSchema)
67466
67472
  ]);
67467
- Configuration$outboundSchema = unionType([
67468
- lazyType(() => Configuration2$outboundSchema),
67469
- lazyType(() => Configuration1$outboundSchema)
67473
+ KnowledgeBaseConfiguration$outboundSchema = unionType([
67474
+ lazyType(() => KnowledgeBaseStaticQuery$outboundSchema),
67475
+ lazyType(() => KnowledgeBaseLastUserMessage$outboundSchema)
67470
67476
  ]);
67471
- ((Configuration$) => {
67472
- Configuration$.inboundSchema = Configuration$inboundSchema;
67473
- Configuration$.outboundSchema = Configuration$outboundSchema;
67474
- })(Configuration$ ||= {});
67477
+ ((KnowledgeBaseConfiguration$) => {
67478
+ KnowledgeBaseConfiguration$.inboundSchema = KnowledgeBaseConfiguration$inboundSchema;
67479
+ KnowledgeBaseConfiguration$.outboundSchema = KnowledgeBaseConfiguration$outboundSchema;
67480
+ })(KnowledgeBaseConfiguration$ ||= {});
67475
67481
  KnowledgeBases$inboundSchema = objectType({
67476
67482
  configuration: unionType([
67477
- lazyType(() => Configuration2$inboundSchema),
67478
- lazyType(() => Configuration1$inboundSchema)
67483
+ lazyType(() => KnowledgeBaseStaticQuery$inboundSchema),
67484
+ lazyType(() => KnowledgeBaseLastUserMessage$inboundSchema)
67479
67485
  ])
67480
67486
  });
67481
67487
  KnowledgeBases$outboundSchema = objectType({
67482
67488
  configuration: unionType([
67483
- lazyType(() => Configuration2$outboundSchema),
67484
- lazyType(() => Configuration1$outboundSchema)
67489
+ lazyType(() => KnowledgeBaseStaticQuery$outboundSchema),
67490
+ lazyType(() => KnowledgeBaseLastUserMessage$outboundSchema)
67485
67491
  ])
67486
67492
  });
67487
67493
  ((KnowledgeBases$) => {
@@ -67705,7 +67711,7 @@ var init_runagent = __esm(() => {
67705
67711
  Http$.outboundSchema = Http$outboundSchema;
67706
67712
  })(Http$ ||= {});
67707
67713
  HTTPTool$inboundSchema = objectType({
67708
- _id: stringType().default("01K62YGY95K5520CTFX05QZG7G"),
67714
+ _id: stringType().default("01K69SP31Y2P12G2N1XPSQ8JJ7"),
67709
67715
  key: stringType(),
67710
67716
  display_name: stringType(),
67711
67717
  description: stringType(),
@@ -67720,7 +67726,7 @@ var init_runagent = __esm(() => {
67720
67726
  });
67721
67727
  });
67722
67728
  HTTPTool$outboundSchema = objectType({
67723
- id: stringType().default("01K62YGY95K5520CTFX05QZG7G"),
67729
+ id: stringType().default("01K69SP31Y2P12G2N1XPSQ8JJ7"),
67724
67730
  key: stringType(),
67725
67731
  displayName: stringType(),
67726
67732
  description: stringType(),
@@ -68963,14 +68969,14 @@ var init_searchknowledge = __esm(() => {
68963
68969
  });
68964
68970
 
68965
68971
  // src/models/operations/streamrunagent.ts
68966
- var StreamRunAgentRole2, StreamRunAgentRole1, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentConfigurationAgentsType, StreamRunAgentConfigurationType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type, RunAgentRequestToolLanguage, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type, RunAgentRequestToolMethod, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType, StreamRunAgentRunAgentRequestToolAgentsRequestType, StreamRunAgentRunAgentRequestToolAgentsType, StreamRunAgentRunAgentRequestToolType, StreamRunAgentToolApprovalRequired, StreamRunAgentRole2$inboundSchema, StreamRunAgentRole2$outboundSchema, StreamRunAgentRole2$, StreamRunAgentRole1$inboundSchema, StreamRunAgentRole1$outboundSchema, StreamRunAgentRole1$, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentRole$, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, PublicMessagePartToolResultPart$, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$, StreamRunAgentFile2$inboundSchema, StreamRunAgentFile2$outboundSchema, StreamRunAgentFile2$, StreamRunAgentFile1$inboundSchema, StreamRunAgentFile1$outboundSchema, StreamRunAgentFile1$, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFile$, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, PublicMessagePartFilePart$, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartKind$, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, PublicMessagePartTextPart$, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentPublicMessagePart$, StreamRunAgentMessage$inboundSchema, StreamRunAgentMessage$outboundSchema, StreamRunAgentMessage$, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentContact$, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentThread$, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentMemory$, StreamRunAgentConfigurationAgentsType$inboundSchema, StreamRunAgentConfigurationAgentsType$outboundSchema, StreamRunAgentConfigurationAgentsType$, StreamRunAgentConfiguration2$inboundSchema, StreamRunAgentConfiguration2$outboundSchema, StreamRunAgentConfiguration2$, StreamRunAgentConfigurationType$inboundSchema, StreamRunAgentConfigurationType$outboundSchema, StreamRunAgentConfigurationType$, StreamRunAgentConfiguration1$inboundSchema, StreamRunAgentConfiguration1$outboundSchema, StreamRunAgentConfiguration1$, StreamRunAgentConfiguration$inboundSchema, StreamRunAgentConfiguration$outboundSchema, StreamRunAgentConfiguration$, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentKnowledgeBases$, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentTeamOfAgents$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$, StreamRunAgentRunAgentRequestToolFunction$inboundSchema, StreamRunAgentRunAgentRequestToolFunction$outboundSchema, StreamRunAgentRunAgentRequestToolFunction$, RunAgentRequestToolFunctionTool$inboundSchema, RunAgentRequestToolFunctionTool$outboundSchema, RunAgentRequestToolFunctionTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$, RunAgentRequestToolLanguage$inboundSchema, RunAgentRequestToolLanguage$outboundSchema, RunAgentRequestToolLanguage$, RunAgentRequestToolCodeTool$inboundSchema, RunAgentRequestToolCodeTool$outboundSchema, RunAgentRequestToolCodeTool$, RunAgentRequestToolCodeExecutionTool$inboundSchema, RunAgentRequestToolCodeExecutionTool$outboundSchema, RunAgentRequestToolCodeExecutionTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$, RunAgentRequestToolMethod$inboundSchema, RunAgentRequestToolMethod$outboundSchema, RunAgentRequestToolMethod$, RunAgentRequestToolBlueprint$inboundSchema, RunAgentRequestToolBlueprint$outboundSchema, RunAgentRequestToolBlueprint$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$, RunAgentRequestToolDefaultValue$inboundSchema, RunAgentRequestToolDefaultValue$outboundSchema, RunAgentRequestToolDefaultValue$, RunAgentRequestToolArguments$inboundSchema, RunAgentRequestToolArguments$outboundSchema, RunAgentRequestToolArguments$, RunAgentRequestToolHttp$inboundSchema, RunAgentRequestToolHttp$outboundSchema, RunAgentRequestToolHttp$, RunAgentRequestToolHTTPTool$inboundSchema, RunAgentRequestToolHTTPTool$outboundSchema, RunAgentRequestToolHTTPTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$, RunAgentRequestToolCurrentDateTool$inboundSchema, RunAgentRequestToolCurrentDateTool$outboundSchema, RunAgentRequestToolCurrentDateTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$, RunAgentRequestToolQueryKnowledgeBaseTool$inboundSchema, RunAgentRequestToolQueryKnowledgeBaseTool$outboundSchema, RunAgentRequestToolQueryKnowledgeBaseTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$, RunAgentRequestToolRetrieveKnowledgeBasesTool$inboundSchema, RunAgentRequestToolRetrieveKnowledgeBasesTool$outboundSchema, RunAgentRequestToolRetrieveKnowledgeBasesTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$, RunAgentRequestToolRetrieveMemoryStoresTool$inboundSchema, RunAgentRequestToolRetrieveMemoryStoresTool$outboundSchema, RunAgentRequestToolRetrieveMemoryStoresTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$, RunAgentRequestToolWriteMemoryStoreTool$inboundSchema, RunAgentRequestToolWriteMemoryStoreTool$outboundSchema, RunAgentRequestToolWriteMemoryStoreTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$, RunAgentRequestToolQueryMemoryStoreTool$inboundSchema, RunAgentRequestToolQueryMemoryStoreTool$outboundSchema, RunAgentRequestToolQueryMemoryStoreTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$, RunAgentRequestToolRetrieveAgentsTool$inboundSchema, RunAgentRequestToolRetrieveAgentsTool$outboundSchema, RunAgentRequestToolRetrieveAgentsTool$, StreamRunAgentRunAgentRequestToolAgentsRequestType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestType$, RunAgentRequestToolCallSubAgentTool$inboundSchema, RunAgentRequestToolCallSubAgentTool$outboundSchema, RunAgentRequestToolCallSubAgentTool$, StreamRunAgentRunAgentRequestToolAgentsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsType$, RunAgentRequestToolWebScraperTool$inboundSchema, RunAgentRequestToolWebScraperTool$outboundSchema, RunAgentRequestToolWebScraperTool$, StreamRunAgentRunAgentRequestToolType$inboundSchema, StreamRunAgentRunAgentRequestToolType$outboundSchema, StreamRunAgentRunAgentRequestToolType$, RunAgentRequestToolGoogleSearchTool$inboundSchema, RunAgentRequestToolGoogleSearchTool$outboundSchema, RunAgentRequestToolGoogleSearchTool$, StreamRunAgentRunAgentRequestTool$inboundSchema, StreamRunAgentRunAgentRequestTool$outboundSchema, StreamRunAgentRunAgentRequestTool$, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentToolApprovalRequired$, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentSettings$, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentRequestBody$, StreamRunAgentResponseBody$inboundSchema, StreamRunAgentResponseBody$outboundSchema, StreamRunAgentResponseBody$;
68972
+ var StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentKnowledgeBaseConfigurationAgentsType, StreamRunAgentKnowledgeBaseConfigurationType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type, RunAgentRequestToolLanguage, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type, RunAgentRequestToolMethod, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType, StreamRunAgentRunAgentRequestToolAgentsRequestType, StreamRunAgentRunAgentRequestToolAgentsType, StreamRunAgentRunAgentRequestToolType, StreamRunAgentToolApprovalRequired, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleToolMessage$, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRoleUserMessage$, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentRole$, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, PublicMessagePartToolResultPart$, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileFileInURIFormat$, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, FileBinaryFormat$, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFile$, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, PublicMessagePartFilePart$, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartKind$, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, PublicMessagePartTextPart$, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentPublicMessagePart$, StreamRunAgentMessage$inboundSchema, StreamRunAgentMessage$outboundSchema, StreamRunAgentMessage$, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentContact$, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentThread$, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentMemory$, StreamRunAgentKnowledgeBaseConfigurationAgentsType$inboundSchema, StreamRunAgentKnowledgeBaseConfigurationAgentsType$outboundSchema, StreamRunAgentKnowledgeBaseConfigurationAgentsType$, KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema, KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema, KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$, StreamRunAgentKnowledgeBaseConfigurationType$inboundSchema, StreamRunAgentKnowledgeBaseConfigurationType$outboundSchema, StreamRunAgentKnowledgeBaseConfigurationType$, KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema, KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema, KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$, StreamRunAgentKnowledgeBaseConfiguration$inboundSchema, StreamRunAgentKnowledgeBaseConfiguration$outboundSchema, StreamRunAgentKnowledgeBaseConfiguration$, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentKnowledgeBases$, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentTeamOfAgents$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type$, StreamRunAgentRunAgentRequestToolFunction$inboundSchema, StreamRunAgentRunAgentRequestToolFunction$outboundSchema, StreamRunAgentRunAgentRequestToolFunction$, RunAgentRequestToolFunctionTool$inboundSchema, RunAgentRequestToolFunctionTool$outboundSchema, RunAgentRequestToolFunctionTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools12Type$, RunAgentRequestToolLanguage$inboundSchema, RunAgentRequestToolLanguage$outboundSchema, RunAgentRequestToolLanguage$, RunAgentRequestToolCodeTool$inboundSchema, RunAgentRequestToolCodeTool$outboundSchema, RunAgentRequestToolCodeTool$, RunAgentRequestToolCodeExecutionTool$inboundSchema, RunAgentRequestToolCodeExecutionTool$outboundSchema, RunAgentRequestToolCodeExecutionTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11Type$, RunAgentRequestToolMethod$inboundSchema, RunAgentRequestToolMethod$outboundSchema, RunAgentRequestToolMethod$, RunAgentRequestToolBlueprint$inboundSchema, RunAgentRequestToolBlueprint$outboundSchema, RunAgentRequestToolBlueprint$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools11HttpType$, RunAgentRequestToolDefaultValue$inboundSchema, RunAgentRequestToolDefaultValue$outboundSchema, RunAgentRequestToolDefaultValue$, RunAgentRequestToolArguments$inboundSchema, RunAgentRequestToolArguments$outboundSchema, RunAgentRequestToolArguments$, RunAgentRequestToolHttp$inboundSchema, RunAgentRequestToolHttp$outboundSchema, RunAgentRequestToolHttp$, RunAgentRequestToolHTTPTool$inboundSchema, RunAgentRequestToolHTTPTool$outboundSchema, RunAgentRequestToolHTTPTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools10Type$, RunAgentRequestToolCurrentDateTool$inboundSchema, RunAgentRequestToolCurrentDateTool$outboundSchema, RunAgentRequestToolCurrentDateTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools9Type$, RunAgentRequestToolQueryKnowledgeBaseTool$inboundSchema, RunAgentRequestToolQueryKnowledgeBaseTool$outboundSchema, RunAgentRequestToolQueryKnowledgeBaseTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools8Type$, RunAgentRequestToolRetrieveKnowledgeBasesTool$inboundSchema, RunAgentRequestToolRetrieveKnowledgeBasesTool$outboundSchema, RunAgentRequestToolRetrieveKnowledgeBasesTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools7Type$, RunAgentRequestToolRetrieveMemoryStoresTool$inboundSchema, RunAgentRequestToolRetrieveMemoryStoresTool$outboundSchema, RunAgentRequestToolRetrieveMemoryStoresTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsToolsType$, RunAgentRequestToolWriteMemoryStoreTool$inboundSchema, RunAgentRequestToolWriteMemoryStoreTool$outboundSchema, RunAgentRequestToolWriteMemoryStoreTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsType$, RunAgentRequestToolQueryMemoryStoreTool$inboundSchema, RunAgentRequestToolQueryMemoryStoreTool$outboundSchema, RunAgentRequestToolQueryMemoryStoreTool$, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodyType$, RunAgentRequestToolRetrieveAgentsTool$inboundSchema, RunAgentRequestToolRetrieveAgentsTool$outboundSchema, RunAgentRequestToolRetrieveAgentsTool$, StreamRunAgentRunAgentRequestToolAgentsRequestType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsRequestType$, RunAgentRequestToolCallSubAgentTool$inboundSchema, RunAgentRequestToolCallSubAgentTool$outboundSchema, RunAgentRequestToolCallSubAgentTool$, StreamRunAgentRunAgentRequestToolAgentsType$inboundSchema, StreamRunAgentRunAgentRequestToolAgentsType$outboundSchema, StreamRunAgentRunAgentRequestToolAgentsType$, RunAgentRequestToolWebScraperTool$inboundSchema, RunAgentRequestToolWebScraperTool$outboundSchema, RunAgentRequestToolWebScraperTool$, StreamRunAgentRunAgentRequestToolType$inboundSchema, StreamRunAgentRunAgentRequestToolType$outboundSchema, StreamRunAgentRunAgentRequestToolType$, RunAgentRequestToolGoogleSearchTool$inboundSchema, RunAgentRequestToolGoogleSearchTool$outboundSchema, RunAgentRequestToolGoogleSearchTool$, StreamRunAgentRunAgentRequestTool$inboundSchema, StreamRunAgentRunAgentRequestTool$outboundSchema, StreamRunAgentRunAgentRequestTool$, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentToolApprovalRequired$, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentSettings$, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentRequestBody$, StreamRunAgentResponseBody$inboundSchema, StreamRunAgentResponseBody$outboundSchema, StreamRunAgentResponseBody$;
68967
68973
  var init_streamrunagent = __esm(() => {
68968
68974
  init_esm();
68969
68975
  init_primitives();
68970
- StreamRunAgentRole2 = {
68976
+ StreamRunAgentRoleToolMessage = {
68971
68977
  Tool: "tool"
68972
68978
  };
68973
- StreamRunAgentRole1 = {
68979
+ StreamRunAgentRoleUserMessage = {
68974
68980
  User: "user"
68975
68981
  };
68976
68982
  StreamRunAgentPublicMessagePartAgentsRequestKind = {
@@ -68982,10 +68988,10 @@ var init_streamrunagent = __esm(() => {
68982
68988
  StreamRunAgentPublicMessagePartKind = {
68983
68989
  Text: "text"
68984
68990
  };
68985
- StreamRunAgentConfigurationAgentsType = {
68991
+ StreamRunAgentKnowledgeBaseConfigurationAgentsType = {
68986
68992
  Query: "query"
68987
68993
  };
68988
- StreamRunAgentConfigurationType = {
68994
+ StreamRunAgentKnowledgeBaseConfigurationType = {
68989
68995
  LastUserMessage: "last_user_message"
68990
68996
  };
68991
68997
  StreamRunAgentRunAgentRequestToolAgentsRequestRequestBodySettingsTools13Type = {
@@ -69046,25 +69052,25 @@ var init_streamrunagent = __esm(() => {
69046
69052
  RespectTool: "respect_tool",
69047
69053
  None: "none"
69048
69054
  };
69049
- StreamRunAgentRole2$inboundSchema = nativeEnumType(StreamRunAgentRole2);
69050
- StreamRunAgentRole2$outboundSchema = StreamRunAgentRole2$inboundSchema;
69051
- ((StreamRunAgentRole2$) => {
69052
- StreamRunAgentRole2$.inboundSchema = StreamRunAgentRole2$inboundSchema;
69053
- StreamRunAgentRole2$.outboundSchema = StreamRunAgentRole2$outboundSchema;
69054
- })(StreamRunAgentRole2$ ||= {});
69055
- StreamRunAgentRole1$inboundSchema = nativeEnumType(StreamRunAgentRole1);
69056
- StreamRunAgentRole1$outboundSchema = StreamRunAgentRole1$inboundSchema;
69057
- ((StreamRunAgentRole1$) => {
69058
- StreamRunAgentRole1$.inboundSchema = StreamRunAgentRole1$inboundSchema;
69059
- StreamRunAgentRole1$.outboundSchema = StreamRunAgentRole1$outboundSchema;
69060
- })(StreamRunAgentRole1$ ||= {});
69055
+ StreamRunAgentRoleToolMessage$inboundSchema = nativeEnumType(StreamRunAgentRoleToolMessage);
69056
+ StreamRunAgentRoleToolMessage$outboundSchema = StreamRunAgentRoleToolMessage$inboundSchema;
69057
+ ((StreamRunAgentRoleToolMessage$) => {
69058
+ StreamRunAgentRoleToolMessage$.inboundSchema = StreamRunAgentRoleToolMessage$inboundSchema;
69059
+ StreamRunAgentRoleToolMessage$.outboundSchema = StreamRunAgentRoleToolMessage$outboundSchema;
69060
+ })(StreamRunAgentRoleToolMessage$ ||= {});
69061
+ StreamRunAgentRoleUserMessage$inboundSchema = nativeEnumType(StreamRunAgentRoleUserMessage);
69062
+ StreamRunAgentRoleUserMessage$outboundSchema = StreamRunAgentRoleUserMessage$inboundSchema;
69063
+ ((StreamRunAgentRoleUserMessage$) => {
69064
+ StreamRunAgentRoleUserMessage$.inboundSchema = StreamRunAgentRoleUserMessage$inboundSchema;
69065
+ StreamRunAgentRoleUserMessage$.outboundSchema = StreamRunAgentRoleUserMessage$outboundSchema;
69066
+ })(StreamRunAgentRoleUserMessage$ ||= {});
69061
69067
  StreamRunAgentRole$inboundSchema = unionType([
69062
- StreamRunAgentRole1$inboundSchema,
69063
- StreamRunAgentRole2$inboundSchema
69068
+ StreamRunAgentRoleUserMessage$inboundSchema,
69069
+ StreamRunAgentRoleToolMessage$inboundSchema
69064
69070
  ]);
69065
69071
  StreamRunAgentRole$outboundSchema = unionType([
69066
- StreamRunAgentRole1$outboundSchema,
69067
- StreamRunAgentRole2$outboundSchema
69072
+ StreamRunAgentRoleUserMessage$outboundSchema,
69073
+ StreamRunAgentRoleToolMessage$outboundSchema
69068
69074
  ]);
69069
69075
  ((StreamRunAgentRole$) => {
69070
69076
  StreamRunAgentRole$.inboundSchema = StreamRunAgentRole$inboundSchema;
@@ -69106,41 +69112,41 @@ var init_streamrunagent = __esm(() => {
69106
69112
  StreamRunAgentPublicMessagePartAgentsKind$.inboundSchema = StreamRunAgentPublicMessagePartAgentsKind$inboundSchema;
69107
69113
  StreamRunAgentPublicMessagePartAgentsKind$.outboundSchema = StreamRunAgentPublicMessagePartAgentsKind$outboundSchema;
69108
69114
  })(StreamRunAgentPublicMessagePartAgentsKind$ ||= {});
69109
- StreamRunAgentFile2$inboundSchema = objectType({
69115
+ FileFileInURIFormat$inboundSchema = objectType({
69110
69116
  uri: stringType(),
69111
69117
  mimeType: stringType().optional(),
69112
69118
  name: stringType().optional()
69113
69119
  });
69114
- StreamRunAgentFile2$outboundSchema = objectType({
69120
+ FileFileInURIFormat$outboundSchema = objectType({
69115
69121
  uri: stringType(),
69116
69122
  mimeType: stringType().optional(),
69117
69123
  name: stringType().optional()
69118
69124
  });
69119
- ((StreamRunAgentFile2$) => {
69120
- StreamRunAgentFile2$.inboundSchema = StreamRunAgentFile2$inboundSchema;
69121
- StreamRunAgentFile2$.outboundSchema = StreamRunAgentFile2$outboundSchema;
69122
- })(StreamRunAgentFile2$ ||= {});
69123
- StreamRunAgentFile1$inboundSchema = objectType({
69125
+ ((FileFileInURIFormat$) => {
69126
+ FileFileInURIFormat$.inboundSchema = FileFileInURIFormat$inboundSchema;
69127
+ FileFileInURIFormat$.outboundSchema = FileFileInURIFormat$outboundSchema;
69128
+ })(FileFileInURIFormat$ ||= {});
69129
+ FileBinaryFormat$inboundSchema = objectType({
69124
69130
  bytes: stringType(),
69125
69131
  mimeType: stringType().optional(),
69126
69132
  name: stringType().optional()
69127
69133
  });
69128
- StreamRunAgentFile1$outboundSchema = objectType({
69134
+ FileBinaryFormat$outboundSchema = objectType({
69129
69135
  bytes: stringType(),
69130
69136
  mimeType: stringType().optional(),
69131
69137
  name: stringType().optional()
69132
69138
  });
69133
- ((StreamRunAgentFile1$) => {
69134
- StreamRunAgentFile1$.inboundSchema = StreamRunAgentFile1$inboundSchema;
69135
- StreamRunAgentFile1$.outboundSchema = StreamRunAgentFile1$outboundSchema;
69136
- })(StreamRunAgentFile1$ ||= {});
69139
+ ((FileBinaryFormat$) => {
69140
+ FileBinaryFormat$.inboundSchema = FileBinaryFormat$inboundSchema;
69141
+ FileBinaryFormat$.outboundSchema = FileBinaryFormat$outboundSchema;
69142
+ })(FileBinaryFormat$ ||= {});
69137
69143
  StreamRunAgentPublicMessagePartFile$inboundSchema = unionType([
69138
- lazyType(() => StreamRunAgentFile1$inboundSchema),
69139
- lazyType(() => StreamRunAgentFile2$inboundSchema)
69144
+ lazyType(() => FileBinaryFormat$inboundSchema),
69145
+ lazyType(() => FileFileInURIFormat$inboundSchema)
69140
69146
  ]);
69141
69147
  StreamRunAgentPublicMessagePartFile$outboundSchema = unionType([
69142
- lazyType(() => StreamRunAgentFile1$outboundSchema),
69143
- lazyType(() => StreamRunAgentFile2$outboundSchema)
69148
+ lazyType(() => FileBinaryFormat$outboundSchema),
69149
+ lazyType(() => FileFileInURIFormat$outboundSchema)
69144
69150
  ]);
69145
69151
  ((StreamRunAgentPublicMessagePartFile$) => {
69146
69152
  StreamRunAgentPublicMessagePartFile$.inboundSchema = StreamRunAgentPublicMessagePartFile$inboundSchema;
@@ -69149,16 +69155,16 @@ var init_streamrunagent = __esm(() => {
69149
69155
  PublicMessagePartFilePart$inboundSchema = objectType({
69150
69156
  kind: StreamRunAgentPublicMessagePartAgentsKind$inboundSchema,
69151
69157
  file: unionType([
69152
- lazyType(() => StreamRunAgentFile1$inboundSchema),
69153
- lazyType(() => StreamRunAgentFile2$inboundSchema)
69158
+ lazyType(() => FileBinaryFormat$inboundSchema),
69159
+ lazyType(() => FileFileInURIFormat$inboundSchema)
69154
69160
  ]),
69155
69161
  metadata: recordType(anyType()).optional()
69156
69162
  });
69157
69163
  PublicMessagePartFilePart$outboundSchema = objectType({
69158
69164
  kind: StreamRunAgentPublicMessagePartAgentsKind$outboundSchema,
69159
69165
  file: unionType([
69160
- lazyType(() => StreamRunAgentFile1$outboundSchema),
69161
- lazyType(() => StreamRunAgentFile2$outboundSchema)
69166
+ lazyType(() => FileBinaryFormat$outboundSchema),
69167
+ lazyType(() => FileFileInURIFormat$outboundSchema)
69162
69168
  ]),
69163
69169
  metadata: recordType(anyType()).optional()
69164
69170
  });
@@ -69201,8 +69207,8 @@ var init_streamrunagent = __esm(() => {
69201
69207
  StreamRunAgentMessage$inboundSchema = objectType({
69202
69208
  messageId: stringType().optional(),
69203
69209
  role: unionType([
69204
- StreamRunAgentRole1$inboundSchema,
69205
- StreamRunAgentRole2$inboundSchema
69210
+ StreamRunAgentRoleUserMessage$inboundSchema,
69211
+ StreamRunAgentRoleToolMessage$inboundSchema
69206
69212
  ]),
69207
69213
  parts: arrayType(unionType([
69208
69214
  lazyType(() => PublicMessagePartTextPart$inboundSchema),
@@ -69213,8 +69219,8 @@ var init_streamrunagent = __esm(() => {
69213
69219
  StreamRunAgentMessage$outboundSchema = objectType({
69214
69220
  messageId: stringType().optional(),
69215
69221
  role: unionType([
69216
- StreamRunAgentRole1$outboundSchema,
69217
- StreamRunAgentRole2$outboundSchema
69222
+ StreamRunAgentRoleUserMessage$outboundSchema,
69223
+ StreamRunAgentRoleToolMessage$outboundSchema
69218
69224
  ]),
69219
69225
  parts: arrayType(unionType([
69220
69226
  lazyType(() => PublicMessagePartTextPart$outboundSchema),
@@ -69286,62 +69292,62 @@ var init_streamrunagent = __esm(() => {
69286
69292
  StreamRunAgentMemory$.inboundSchema = StreamRunAgentMemory$inboundSchema;
69287
69293
  StreamRunAgentMemory$.outboundSchema = StreamRunAgentMemory$outboundSchema;
69288
69294
  })(StreamRunAgentMemory$ ||= {});
69289
- StreamRunAgentConfigurationAgentsType$inboundSchema = nativeEnumType(StreamRunAgentConfigurationAgentsType);
69290
- StreamRunAgentConfigurationAgentsType$outboundSchema = StreamRunAgentConfigurationAgentsType$inboundSchema;
69291
- ((StreamRunAgentConfigurationAgentsType$) => {
69292
- StreamRunAgentConfigurationAgentsType$.inboundSchema = StreamRunAgentConfigurationAgentsType$inboundSchema;
69293
- StreamRunAgentConfigurationAgentsType$.outboundSchema = StreamRunAgentConfigurationAgentsType$outboundSchema;
69294
- })(StreamRunAgentConfigurationAgentsType$ ||= {});
69295
- StreamRunAgentConfiguration2$inboundSchema = objectType({
69296
- type: StreamRunAgentConfigurationAgentsType$inboundSchema,
69295
+ StreamRunAgentKnowledgeBaseConfigurationAgentsType$inboundSchema = nativeEnumType(StreamRunAgentKnowledgeBaseConfigurationAgentsType);
69296
+ StreamRunAgentKnowledgeBaseConfigurationAgentsType$outboundSchema = StreamRunAgentKnowledgeBaseConfigurationAgentsType$inboundSchema;
69297
+ ((StreamRunAgentKnowledgeBaseConfigurationAgentsType$) => {
69298
+ StreamRunAgentKnowledgeBaseConfigurationAgentsType$.inboundSchema = StreamRunAgentKnowledgeBaseConfigurationAgentsType$inboundSchema;
69299
+ StreamRunAgentKnowledgeBaseConfigurationAgentsType$.outboundSchema = StreamRunAgentKnowledgeBaseConfigurationAgentsType$outboundSchema;
69300
+ })(StreamRunAgentKnowledgeBaseConfigurationAgentsType$ ||= {});
69301
+ KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema = objectType({
69302
+ type: StreamRunAgentKnowledgeBaseConfigurationAgentsType$inboundSchema,
69297
69303
  query: stringType()
69298
69304
  });
69299
- StreamRunAgentConfiguration2$outboundSchema = objectType({
69300
- type: StreamRunAgentConfigurationAgentsType$outboundSchema,
69305
+ KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema = objectType({
69306
+ type: StreamRunAgentKnowledgeBaseConfigurationAgentsType$outboundSchema,
69301
69307
  query: stringType()
69302
69308
  });
69303
- ((StreamRunAgentConfiguration2$) => {
69304
- StreamRunAgentConfiguration2$.inboundSchema = StreamRunAgentConfiguration2$inboundSchema;
69305
- StreamRunAgentConfiguration2$.outboundSchema = StreamRunAgentConfiguration2$outboundSchema;
69306
- })(StreamRunAgentConfiguration2$ ||= {});
69307
- StreamRunAgentConfigurationType$inboundSchema = nativeEnumType(StreamRunAgentConfigurationType);
69308
- StreamRunAgentConfigurationType$outboundSchema = StreamRunAgentConfigurationType$inboundSchema;
69309
- ((StreamRunAgentConfigurationType$) => {
69310
- StreamRunAgentConfigurationType$.inboundSchema = StreamRunAgentConfigurationType$inboundSchema;
69311
- StreamRunAgentConfigurationType$.outboundSchema = StreamRunAgentConfigurationType$outboundSchema;
69312
- })(StreamRunAgentConfigurationType$ ||= {});
69313
- StreamRunAgentConfiguration1$inboundSchema = objectType({
69314
- type: StreamRunAgentConfigurationType$inboundSchema
69315
- });
69316
- StreamRunAgentConfiguration1$outboundSchema = objectType({
69317
- type: StreamRunAgentConfigurationType$outboundSchema
69318
- });
69319
- ((StreamRunAgentConfiguration1$) => {
69320
- StreamRunAgentConfiguration1$.inboundSchema = StreamRunAgentConfiguration1$inboundSchema;
69321
- StreamRunAgentConfiguration1$.outboundSchema = StreamRunAgentConfiguration1$outboundSchema;
69322
- })(StreamRunAgentConfiguration1$ ||= {});
69323
- StreamRunAgentConfiguration$inboundSchema = unionType([
69324
- lazyType(() => StreamRunAgentConfiguration2$inboundSchema),
69325
- lazyType(() => StreamRunAgentConfiguration1$inboundSchema)
69309
+ ((KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$) => {
69310
+ KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.inboundSchema = KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema;
69311
+ KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$.outboundSchema = KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema;
69312
+ })(KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$ ||= {});
69313
+ StreamRunAgentKnowledgeBaseConfigurationType$inboundSchema = nativeEnumType(StreamRunAgentKnowledgeBaseConfigurationType);
69314
+ StreamRunAgentKnowledgeBaseConfigurationType$outboundSchema = StreamRunAgentKnowledgeBaseConfigurationType$inboundSchema;
69315
+ ((StreamRunAgentKnowledgeBaseConfigurationType$) => {
69316
+ StreamRunAgentKnowledgeBaseConfigurationType$.inboundSchema = StreamRunAgentKnowledgeBaseConfigurationType$inboundSchema;
69317
+ StreamRunAgentKnowledgeBaseConfigurationType$.outboundSchema = StreamRunAgentKnowledgeBaseConfigurationType$outboundSchema;
69318
+ })(StreamRunAgentKnowledgeBaseConfigurationType$ ||= {});
69319
+ KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema = objectType({
69320
+ type: StreamRunAgentKnowledgeBaseConfigurationType$inboundSchema
69321
+ });
69322
+ KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema = objectType({
69323
+ type: StreamRunAgentKnowledgeBaseConfigurationType$outboundSchema
69324
+ });
69325
+ ((KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$) => {
69326
+ KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.inboundSchema = KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema;
69327
+ KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$.outboundSchema = KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema;
69328
+ })(KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$ ||= {});
69329
+ StreamRunAgentKnowledgeBaseConfiguration$inboundSchema = unionType([
69330
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
69331
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
69326
69332
  ]);
69327
- StreamRunAgentConfiguration$outboundSchema = unionType([
69328
- lazyType(() => StreamRunAgentConfiguration2$outboundSchema),
69329
- lazyType(() => StreamRunAgentConfiguration1$outboundSchema)
69333
+ StreamRunAgentKnowledgeBaseConfiguration$outboundSchema = unionType([
69334
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
69335
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
69330
69336
  ]);
69331
- ((StreamRunAgentConfiguration$) => {
69332
- StreamRunAgentConfiguration$.inboundSchema = StreamRunAgentConfiguration$inboundSchema;
69333
- StreamRunAgentConfiguration$.outboundSchema = StreamRunAgentConfiguration$outboundSchema;
69334
- })(StreamRunAgentConfiguration$ ||= {});
69337
+ ((StreamRunAgentKnowledgeBaseConfiguration$) => {
69338
+ StreamRunAgentKnowledgeBaseConfiguration$.inboundSchema = StreamRunAgentKnowledgeBaseConfiguration$inboundSchema;
69339
+ StreamRunAgentKnowledgeBaseConfiguration$.outboundSchema = StreamRunAgentKnowledgeBaseConfiguration$outboundSchema;
69340
+ })(StreamRunAgentKnowledgeBaseConfiguration$ ||= {});
69335
69341
  StreamRunAgentKnowledgeBases$inboundSchema = objectType({
69336
69342
  configuration: unionType([
69337
- lazyType(() => StreamRunAgentConfiguration2$inboundSchema),
69338
- lazyType(() => StreamRunAgentConfiguration1$inboundSchema)
69343
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$inboundSchema),
69344
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$inboundSchema)
69339
69345
  ])
69340
69346
  });
69341
69347
  StreamRunAgentKnowledgeBases$outboundSchema = objectType({
69342
69348
  configuration: unionType([
69343
- lazyType(() => StreamRunAgentConfiguration2$outboundSchema),
69344
- lazyType(() => StreamRunAgentConfiguration1$outboundSchema)
69349
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseStaticQuery$outboundSchema),
69350
+ lazyType(() => KnowledgeBaseConfigurationKnowledgeBaseLastUserMessage$outboundSchema)
69345
69351
  ])
69346
69352
  });
69347
69353
  ((StreamRunAgentKnowledgeBases$) => {
@@ -69565,7 +69571,7 @@ var init_streamrunagent = __esm(() => {
69565
69571
  RunAgentRequestToolHttp$.outboundSchema = RunAgentRequestToolHttp$outboundSchema;
69566
69572
  })(RunAgentRequestToolHttp$ ||= {});
69567
69573
  RunAgentRequestToolHTTPTool$inboundSchema = objectType({
69568
- _id: stringType().default("01K62YGY99XT5HTD1YVGV5G48D"),
69574
+ _id: stringType().default("01K69SP322N8HZK6Y40VNVN53J"),
69569
69575
  key: stringType(),
69570
69576
  display_name: stringType(),
69571
69577
  description: stringType(),
@@ -69580,7 +69586,7 @@ var init_streamrunagent = __esm(() => {
69580
69586
  });
69581
69587
  });
69582
69588
  RunAgentRequestToolHTTPTool$outboundSchema = objectType({
69583
- id: stringType().default("01K62YGY99XT5HTD1YVGV5G48D"),
69589
+ id: stringType().default("01K69SP322N8HZK6Y40VNVN53J"),
69584
69590
  key: stringType(),
69585
69591
  displayName: stringType(),
69586
69592
  description: stringType(),
@@ -70174,7 +70180,7 @@ var init_updatebudget = __esm(() => {
70174
70180
  is_active: booleanType(),
70175
70181
  consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
70176
70182
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
70177
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
70183
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
70178
70184
  }).transform((v2) => {
70179
70185
  return remap(v2, {
70180
70186
  _id: "id",
@@ -70190,7 +70196,7 @@ var init_updatebudget = __esm(() => {
70190
70196
  isActive: booleanType(),
70191
70197
  consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
70192
70198
  created: dateType().transform((v2) => v2.toISOString()).optional(),
70193
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
70199
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
70194
70200
  }).transform((v2) => {
70195
70201
  return remap(v2, {
70196
70202
  id: "_id",
@@ -70380,7 +70386,7 @@ var init_updatecontact = __esm(() => {
70380
70386
  tags: arrayType(stringType()).optional(),
70381
70387
  metadata: recordType(anyType()).optional(),
70382
70388
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
70383
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
70389
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
70384
70390
  }).transform((v2) => {
70385
70391
  return remap(v2, {
70386
70392
  _id: "id",
@@ -70398,7 +70404,7 @@ var init_updatecontact = __esm(() => {
70398
70404
  tags: arrayType(stringType()).optional(),
70399
70405
  metadata: recordType(anyType()).optional(),
70400
70406
  created: dateType().transform((v2) => v2.toISOString()).optional(),
70401
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
70407
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
70402
70408
  }).transform((v2) => {
70403
70409
  return remap(v2, {
70404
70410
  id: "_id",
@@ -71806,7 +71812,7 @@ var init_updatedatapoint = __esm(() => {
71806
71812
  created_by_id: stringType().optional(),
71807
71813
  updated_by_id: stringType().optional(),
71808
71814
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71809
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
71815
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
71810
71816
  }).transform((v2) => {
71811
71817
  return remap(v2, {
71812
71818
  _id: "id",
@@ -71833,7 +71839,7 @@ var init_updatedatapoint = __esm(() => {
71833
71839
  createdById: stringType().optional(),
71834
71840
  updatedById: stringType().optional(),
71835
71841
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71836
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
71842
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
71837
71843
  }).transform((v2) => {
71838
71844
  return remap(v2, {
71839
71845
  id: "_id",
@@ -71934,7 +71940,7 @@ var init_updatedataset = __esm(() => {
71934
71940
  parent_id: stringType().optional(),
71935
71941
  version: stringType().optional(),
71936
71942
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71937
- updated: stringType().datetime({ offset: true }).default("2025-09-26T12:03:39.765Z").transform((v2) => new Date(v2))
71943
+ updated: stringType().datetime({ offset: true }).default("2025-09-29T03:53:46.885Z").transform((v2) => new Date(v2))
71938
71944
  }).transform((v2) => {
71939
71945
  return remap(v2, {
71940
71946
  _id: "id",
@@ -71957,7 +71963,7 @@ var init_updatedataset = __esm(() => {
71957
71963
  parentId: stringType().optional(),
71958
71964
  version: stringType().optional(),
71959
71965
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71960
- updated: dateType().default(() => new Date("2025-09-26T12:03:39.765Z")).transform((v2) => v2.toISOString())
71966
+ updated: dateType().default(() => new Date("2025-09-29T03:53:46.885Z")).transform((v2) => v2.toISOString())
71961
71967
  }).transform((v2) => {
71962
71968
  return remap(v2, {
71963
71969
  id: "_id",
@@ -72038,7 +72044,7 @@ var init_updatedatasource = __esm(() => {
72038
72044
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
72039
72045
  })(UpdateDatasourceStatus$ ||= {});
72040
72046
  UpdateDatasourceResponseBody$inboundSchema = objectType({
72041
- _id: stringType().default("01K62YGYCP01HC5T37MQK8XYVB"),
72047
+ _id: stringType().default("01K69SP35W547EHZXKCKA97SC1"),
72042
72048
  display_name: stringType(),
72043
72049
  description: stringType().optional(),
72044
72050
  status: UpdateDatasourceStatus$inboundSchema,
@@ -72061,7 +72067,7 @@ var init_updatedatasource = __esm(() => {
72061
72067
  });
72062
72068
  });
72063
72069
  UpdateDatasourceResponseBody$outboundSchema = objectType({
72064
- id: stringType().default("01K62YGYCP01HC5T37MQK8XYVB"),
72070
+ id: stringType().default("01K69SP35W547EHZXKCKA97SC1"),
72065
72071
  displayName: stringType(),
72066
72072
  description: stringType().optional(),
72067
72073
  status: UpdateDatasourceStatus$outboundSchema,
@@ -72995,8 +73001,8 @@ var init_updateeval = __esm(() => {
72995
73001
  ResponseBodyTypescript$inboundSchema = objectType({
72996
73002
  _id: stringType(),
72997
73003
  description: stringType(),
72998
- created: stringType().default("2025-09-26T12:03:42.222Z"),
72999
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73004
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73005
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73000
73006
  guardrail_config: unionType([
73001
73007
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
73002
73008
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
@@ -73013,8 +73019,8 @@ var init_updateeval = __esm(() => {
73013
73019
  ResponseBodyTypescript$outboundSchema = objectType({
73014
73020
  id: stringType(),
73015
73021
  description: stringType(),
73016
- created: stringType().default("2025-09-26T12:03:42.222Z"),
73017
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73022
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73023
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73018
73024
  guardrailConfig: unionType([
73019
73025
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
73020
73026
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
@@ -73107,8 +73113,8 @@ var init_updateeval = __esm(() => {
73107
73113
  ResponseBodyRagas$inboundSchema = objectType({
73108
73114
  _id: stringType(),
73109
73115
  description: stringType(),
73110
- created: stringType().default("2025-09-26T12:03:42.222Z"),
73111
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73116
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73117
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73112
73118
  guardrail_config: unionType([
73113
73119
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
73114
73120
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
@@ -73127,8 +73133,8 @@ var init_updateeval = __esm(() => {
73127
73133
  ResponseBodyRagas$outboundSchema = objectType({
73128
73134
  id: stringType(),
73129
73135
  description: stringType(),
73130
- created: stringType().default("2025-09-26T12:03:42.222Z"),
73131
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73136
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73137
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73132
73138
  guardrailConfig: unionType([
73133
73139
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
73134
73140
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
@@ -73881,8 +73887,8 @@ var init_updateeval = __esm(() => {
73881
73887
  UpdateEvalResponseBodyFunction$inboundSchema = objectType({
73882
73888
  _id: stringType(),
73883
73889
  description: stringType(),
73884
- created: stringType().default("2025-09-26T12:03:42.222Z"),
73885
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73890
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73891
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73886
73892
  guardrail_config: unionType([
73887
73893
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
73888
73894
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
@@ -73936,8 +73942,8 @@ var init_updateeval = __esm(() => {
73936
73942
  UpdateEvalResponseBodyFunction$outboundSchema = objectType({
73937
73943
  id: stringType(),
73938
73944
  description: stringType(),
73939
- created: stringType().default("2025-09-26T12:03:42.222Z"),
73940
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
73945
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
73946
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
73941
73947
  guardrailConfig: unionType([
73942
73948
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
73943
73949
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
@@ -74061,8 +74067,8 @@ var init_updateeval = __esm(() => {
74061
74067
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
74062
74068
  _id: stringType(),
74063
74069
  description: stringType(),
74064
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74065
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74070
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74071
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74066
74072
  guardrail_config: unionType([
74067
74073
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
74068
74074
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -74079,8 +74085,8 @@ var init_updateeval = __esm(() => {
74079
74085
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
74080
74086
  id: stringType(),
74081
74087
  description: stringType(),
74082
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74083
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74088
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74089
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74084
74090
  guardrailConfig: unionType([
74085
74091
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
74086
74092
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -74173,8 +74179,8 @@ var init_updateeval = __esm(() => {
74173
74179
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
74174
74180
  _id: stringType(),
74175
74181
  description: stringType(),
74176
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74177
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74182
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74183
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74178
74184
  guardrail_config: unionType([
74179
74185
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
74180
74186
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -74194,8 +74200,8 @@ var init_updateeval = __esm(() => {
74194
74200
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
74195
74201
  id: stringType(),
74196
74202
  description: stringType(),
74197
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74198
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74203
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74204
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74199
74205
  guardrailConfig: unionType([
74200
74206
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
74201
74207
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -74285,8 +74291,8 @@ var init_updateeval = __esm(() => {
74285
74291
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
74286
74292
  _id: stringType(),
74287
74293
  description: stringType(),
74288
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74289
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74294
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74295
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74290
74296
  guardrail_config: unionType([
74291
74297
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
74292
74298
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -74303,8 +74309,8 @@ var init_updateeval = __esm(() => {
74303
74309
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
74304
74310
  id: stringType(),
74305
74311
  description: stringType(),
74306
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74307
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74312
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74313
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74308
74314
  guardrailConfig: unionType([
74309
74315
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
74310
74316
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -74391,8 +74397,8 @@ var init_updateeval = __esm(() => {
74391
74397
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
74392
74398
  _id: stringType(),
74393
74399
  description: stringType(),
74394
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74395
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74400
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74401
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74396
74402
  guardrail_config: unionType([
74397
74403
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
74398
74404
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -74410,8 +74416,8 @@ var init_updateeval = __esm(() => {
74410
74416
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
74411
74417
  id: stringType(),
74412
74418
  description: stringType(),
74413
- created: stringType().default("2025-09-26T12:03:42.222Z"),
74414
- updated: stringType().default("2025-09-26T12:03:42.222Z"),
74419
+ created: stringType().default("2025-09-29T03:53:49.228Z"),
74420
+ updated: stringType().default("2025-09-29T03:53:49.228Z"),
74415
74421
  guardrailConfig: unionType([
74416
74422
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
74417
74423
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -77218,7 +77224,7 @@ var init_updatetool = __esm(() => {
77218
77224
  UpdateToolRequestBodyHttp$.outboundSchema = UpdateToolRequestBodyHttp$outboundSchema;
77219
77225
  })(UpdateToolRequestBodyHttp$ ||= {});
77220
77226
  UpdateToolRequestBody3$inboundSchema = objectType({
77221
- _id: stringType().default("01K62YGYG1X678PZB324AVXJVP"),
77227
+ _id: stringType().default("01K69SP390J08WHE23Z8DGKPJ1"),
77222
77228
  path: stringType().optional(),
77223
77229
  display_name: stringType().optional(),
77224
77230
  description: stringType().optional(),
@@ -77232,7 +77238,7 @@ var init_updatetool = __esm(() => {
77232
77238
  });
77233
77239
  });
77234
77240
  UpdateToolRequestBody3$outboundSchema = objectType({
77235
- id: stringType().default("01K62YGYG1X678PZB324AVXJVP"),
77241
+ id: stringType().default("01K69SP390J08WHE23Z8DGKPJ1"),
77236
77242
  path: stringType().optional(),
77237
77243
  displayName: stringType().optional(),
77238
77244
  description: stringType().optional(),
@@ -77278,7 +77284,7 @@ var init_updatetool = __esm(() => {
77278
77284
  UpdateToolRequestBodyJsonSchema$.outboundSchema = UpdateToolRequestBodyJsonSchema$outboundSchema;
77279
77285
  })(UpdateToolRequestBodyJsonSchema$ ||= {});
77280
77286
  UpdateToolRequestBody2$inboundSchema = objectType({
77281
- _id: stringType().default("01K62YGYG103EYZSRZ5Z5FG925"),
77287
+ _id: stringType().default("01K69SP3902VZVMKZRWQM2V6PD"),
77282
77288
  path: stringType().optional(),
77283
77289
  display_name: stringType().optional(),
77284
77290
  description: stringType().optional(),
@@ -77293,7 +77299,7 @@ var init_updatetool = __esm(() => {
77293
77299
  });
77294
77300
  });
77295
77301
  UpdateToolRequestBody2$outboundSchema = objectType({
77296
- id: stringType().default("01K62YGYG103EYZSRZ5Z5FG925"),
77302
+ id: stringType().default("01K69SP3902VZVMKZRWQM2V6PD"),
77297
77303
  path: stringType().optional(),
77298
77304
  displayName: stringType().optional(),
77299
77305
  description: stringType().optional(),
@@ -77452,7 +77458,7 @@ var init_updatetool = __esm(() => {
77452
77458
  UpdateToolResponseBodyCodeTool$.outboundSchema = UpdateToolResponseBodyCodeTool$outboundSchema;
77453
77459
  })(UpdateToolResponseBodyCodeTool$ ||= {});
77454
77460
  UpdateToolResponseBody5$inboundSchema = objectType({
77455
- _id: stringType().default("01K62YGYG1P02HS4SFGR2M8968"),
77461
+ _id: stringType().default("01K69SP38Z8A61B7P2S2NH4K4W"),
77456
77462
  path: stringType(),
77457
77463
  key: stringType(),
77458
77464
  display_name: stringType(),
@@ -77480,7 +77486,7 @@ var init_updatetool = __esm(() => {
77480
77486
  });
77481
77487
  });
77482
77488
  UpdateToolResponseBody5$outboundSchema = objectType({
77483
- id: stringType().default("01K62YGYG1P02HS4SFGR2M8968"),
77489
+ id: stringType().default("01K69SP38Z8A61B7P2S2NH4K4W"),
77484
77490
  path: stringType(),
77485
77491
  key: stringType(),
77486
77492
  displayName: stringType(),
@@ -77598,7 +77604,7 @@ var init_updatetool = __esm(() => {
77598
77604
  UpdateToolResponseBodyMcp$.outboundSchema = UpdateToolResponseBodyMcp$outboundSchema;
77599
77605
  })(UpdateToolResponseBodyMcp$ ||= {});
77600
77606
  UpdateToolResponseBody4$inboundSchema = objectType({
77601
- _id: stringType().default("01K62YGYG0DWQCENWQ8VDQBGY9"),
77607
+ _id: stringType().default("01K69SP38YFWGDZ34WSG1BXM53"),
77602
77608
  path: stringType(),
77603
77609
  key: stringType(),
77604
77610
  display_name: stringType(),
@@ -77625,7 +77631,7 @@ var init_updatetool = __esm(() => {
77625
77631
  });
77626
77632
  });
77627
77633
  UpdateToolResponseBody4$outboundSchema = objectType({
77628
- id: stringType().default("01K62YGYG0DWQCENWQ8VDQBGY9"),
77634
+ id: stringType().default("01K69SP38YFWGDZ34WSG1BXM53"),
77629
77635
  path: stringType(),
77630
77636
  key: stringType(),
77631
77637
  displayName: stringType(),
@@ -77740,7 +77746,7 @@ var init_updatetool = __esm(() => {
77740
77746
  UpdateToolResponseBodyHttp$.outboundSchema = UpdateToolResponseBodyHttp$outboundSchema;
77741
77747
  })(UpdateToolResponseBodyHttp$ ||= {});
77742
77748
  UpdateToolResponseBody3$inboundSchema = objectType({
77743
- _id: stringType().default("01K62YGYG01H1RHKN6M3GYH6QW"),
77749
+ _id: stringType().default("01K69SP38XKEYRZGNPEWS31TFZ"),
77744
77750
  path: stringType(),
77745
77751
  key: stringType(),
77746
77752
  display_name: stringType(),
@@ -77767,7 +77773,7 @@ var init_updatetool = __esm(() => {
77767
77773
  });
77768
77774
  });
77769
77775
  UpdateToolResponseBody3$outboundSchema = objectType({
77770
- id: stringType().default("01K62YGYG01H1RHKN6M3GYH6QW"),
77776
+ id: stringType().default("01K69SP38XKEYRZGNPEWS31TFZ"),
77771
77777
  path: stringType(),
77772
77778
  key: stringType(),
77773
77779
  displayName: stringType(),
@@ -77826,7 +77832,7 @@ var init_updatetool = __esm(() => {
77826
77832
  UpdateToolResponseBodyJsonSchema$.outboundSchema = UpdateToolResponseBodyJsonSchema$outboundSchema;
77827
77833
  })(UpdateToolResponseBodyJsonSchema$ ||= {});
77828
77834
  UpdateToolResponseBody2$inboundSchema = objectType({
77829
- _id: stringType().default("01K62YGYFZR0JECC2QJKNJJX4C"),
77835
+ _id: stringType().default("01K69SP38XZ7V54ER6K6N8R162"),
77830
77836
  path: stringType(),
77831
77837
  key: stringType(),
77832
77838
  display_name: stringType(),
@@ -77854,7 +77860,7 @@ var init_updatetool = __esm(() => {
77854
77860
  });
77855
77861
  });
77856
77862
  UpdateToolResponseBody2$outboundSchema = objectType({
77857
- id: stringType().default("01K62YGYFZR0JECC2QJKNJJX4C"),
77863
+ id: stringType().default("01K69SP38XZ7V54ER6K6N8R162"),
77858
77864
  path: stringType(),
77859
77865
  key: stringType(),
77860
77866
  displayName: stringType(),
@@ -77914,7 +77920,7 @@ var init_updatetool = __esm(() => {
77914
77920
  UpdateToolResponseBodyFunction$.outboundSchema = UpdateToolResponseBodyFunction$outboundSchema;
77915
77921
  })(UpdateToolResponseBodyFunction$ ||= {});
77916
77922
  UpdateToolResponseBody1$inboundSchema = objectType({
77917
- _id: stringType().default("01K62YGYFZHBX5FBMW7SRAG33F"),
77923
+ _id: stringType().default("01K69SP38WS94ZJHKJWSXZ059R"),
77918
77924
  path: stringType(),
77919
77925
  key: stringType(),
77920
77926
  display_name: stringType(),
@@ -77941,7 +77947,7 @@ var init_updatetool = __esm(() => {
77941
77947
  });
77942
77948
  });
77943
77949
  UpdateToolResponseBody1$outboundSchema = objectType({
77944
- id: stringType().default("01K62YGYFZHBX5FBMW7SRAG33F"),
77950
+ id: stringType().default("01K69SP38WS94ZJHKJWSXZ059R"),
77945
77951
  path: stringType(),
77946
77952
  key: stringType(),
77947
77953
  displayName: stringType(),
@@ -84441,7 +84447,7 @@ Retrieve the deployment configuration`,
84441
84447
  });
84442
84448
 
84443
84449
  // src/models/components/deployments.ts
84444
- var DeploymentsPrefixMessages5Role, Deployments2PrefixMessages4ContentType, Deployments2PrefixMessages4Type, DeploymentsAnnotationsType, AnnotationsType2, DeploymentsPrefixMessages4Role, Type2, DeploymentsPrefixMessagesRole, Deployments2PrefixMessagesType, Deployments2Type2, Format2, TwoType2, Detail2, Deployments2PrefixMessages3Type, PrefixMessagesRole2, Role3, DeploymentsMessages5Role, Deployments2Messages4ContentType, Deployments2Messages4Type, DeploymentsAnnotationsMessages4Type, DeploymentsAnnotationsMessagesType, DeploymentsMessages4Role, MessagesType2, DeploymentsMessages3Role, Deployments2Messages3Content4Type, Deployments2Messages3ContentType, TwoFormat2, Deployments2Messages3Type, TwoDetail2, Deployments2MessagesType, DeploymentsMessagesRole, MessagesRole2, DeploymentsPrefixMessages5Role$inboundSchema, DeploymentsPrefixMessages5Role$outboundSchema, DeploymentsPrefixMessages5Role$, DeploymentsPrefixMessagesContent$inboundSchema, DeploymentsPrefixMessagesContent$outboundSchema, DeploymentsPrefixMessagesContent$, ToolMessage$inboundSchema2, ToolMessage$outboundSchema2, ToolMessage$2, Deployments2PrefixMessages4ContentType$inboundSchema, Deployments2PrefixMessages4ContentType$outboundSchema, Deployments2PrefixMessages4ContentType$, RefusalContentPart$inboundSchema2, RefusalContentPart$outboundSchema2, RefusalContentPart$2, Deployments2PrefixMessages4Type$inboundSchema, Deployments2PrefixMessages4Type$outboundSchema, Deployments2PrefixMessages4Type$, DeploymentsAnnotationsType$inboundSchema, DeploymentsAnnotationsType$outboundSchema, DeploymentsAnnotationsType$, FilePath$inboundSchema2, FilePath$outboundSchema2, FilePath$2, Annotations2$inboundSchema2, Annotations2$outboundSchema2, Annotations2$2, AnnotationsType$inboundSchema2, AnnotationsType$outboundSchema2, AnnotationsType$2, FileCitation$inboundSchema2, FileCitation$outboundSchema2, FileCitation$2, Annotations1$inboundSchema2, Annotations1$outboundSchema2, Annotations1$2, Annotations$inboundSchema2, Annotations$outboundSchema2, Annotations$2, TextContentPart$inboundSchema2, TextContentPart$outboundSchema2, TextContentPart$2, Content2$inboundSchema2, Content2$outboundSchema2, Content2$2, PrefixMessagesContent$inboundSchema2, PrefixMessagesContent$outboundSchema2, PrefixMessagesContent$2, DeploymentsPrefixMessages4Role$inboundSchema, DeploymentsPrefixMessages4Role$outboundSchema, DeploymentsPrefixMessages4Role$, Audio$inboundSchema2, Audio$outboundSchema2, Audio$2, Type$inboundSchema2, Type$outboundSchema2, Type$2, FunctionT$inboundSchema2, FunctionT$outboundSchema2, FunctionT$2, ToolCalls$inboundSchema2, ToolCalls$outboundSchema2, ToolCalls$2, AssistantMessage$inboundSchema2, AssistantMessage$outboundSchema2, AssistantMessage$2, DeploymentsPrefixMessagesRole$inboundSchema, DeploymentsPrefixMessagesRole$outboundSchema, DeploymentsPrefixMessagesRole$, Deployments2PrefixMessagesType$inboundSchema, Deployments2PrefixMessagesType$outboundSchema, Deployments2PrefixMessagesType$, FileT$inboundSchema2, FileT$outboundSchema2, FileT$2, Four$inboundSchema2, Four$outboundSchema2, Four$2, Deployments2Type$inboundSchema2, Deployments2Type$outboundSchema2, Deployments2Type$2, Format$inboundSchema2, Format$outboundSchema2, Format$2, InputAudio$inboundSchema2, InputAudio$outboundSchema2, InputAudio$2, Deployments23$inboundSchema2, Deployments23$outboundSchema2, Deployments23$2, TwoType$inboundSchema2, TwoType$outboundSchema2, TwoType$2, Detail$inboundSchema2, Detail$outboundSchema2, Detail$2, ImageUrl$inboundSchema2, ImageUrl$outboundSchema2, ImageUrl$2, Two2$inboundSchema2, Two2$outboundSchema2, Two2$2, Deployments2PrefixMessages3Type$inboundSchema, Deployments2PrefixMessages3Type$outboundSchema, Deployments2PrefixMessages3Type$, Deployments21$inboundSchema2, Deployments21$outboundSchema2, Deployments21$2, Two$inboundSchema2, Two$outboundSchema2, Two$2, Content$inboundSchema2, Content$outboundSchema2, Content$2, UserMessage$inboundSchema2, UserMessage$outboundSchema2, UserMessage$2, PrefixMessagesRole$inboundSchema2, PrefixMessagesRole$outboundSchema2, PrefixMessagesRole$2, SystemMessage$inboundSchema2, SystemMessage$outboundSchema2, SystemMessage$2, Role$inboundSchema2, Role$outboundSchema2, Role$2, DeveloperMessage$inboundSchema2, DeveloperMessage$outboundSchema2, DeveloperMessage$2, PrefixMessages$inboundSchema2, PrefixMessages$outboundSchema2, PrefixMessages$2, DeploymentsMessages5Role$inboundSchema, DeploymentsMessages5Role$outboundSchema, DeploymentsMessages5Role$, DeploymentsMessages5Content$inboundSchema, DeploymentsMessages5Content$outboundSchema, DeploymentsMessages5Content$, MessagesToolMessage$inboundSchema2, MessagesToolMessage$outboundSchema2, MessagesToolMessage$2, Deployments2Messages4ContentType$inboundSchema, Deployments2Messages4ContentType$outboundSchema, Deployments2Messages4ContentType$, TwoRefusalContentPart$inboundSchema2, TwoRefusalContentPart$outboundSchema2, TwoRefusalContentPart$2, Deployments2Messages4Type$inboundSchema, Deployments2Messages4Type$outboundSchema, Deployments2Messages4Type$, DeploymentsAnnotationsMessages4Type$inboundSchema, DeploymentsAnnotationsMessages4Type$outboundSchema, DeploymentsAnnotationsMessages4Type$, AnnotationsFilePath$inboundSchema2, AnnotationsFilePath$outboundSchema2, AnnotationsFilePath$2, DeploymentsAnnotations2$inboundSchema, DeploymentsAnnotations2$outboundSchema, DeploymentsAnnotations2$, DeploymentsAnnotationsMessagesType$inboundSchema, DeploymentsAnnotationsMessagesType$outboundSchema, DeploymentsAnnotationsMessagesType$, AnnotationsFileCitation$inboundSchema2, AnnotationsFileCitation$outboundSchema2, AnnotationsFileCitation$2, DeploymentsAnnotations1$inboundSchema, DeploymentsAnnotations1$outboundSchema, DeploymentsAnnotations1$, TwoAnnotations$inboundSchema2, TwoAnnotations$outboundSchema2, TwoAnnotations$2, TwoTextContentPart$inboundSchema2, TwoTextContentPart$outboundSchema2, TwoTextContentPart$2, DeploymentsContentMessages2$inboundSchema, DeploymentsContentMessages2$outboundSchema, DeploymentsContentMessages2$, DeploymentsMessagesContent$inboundSchema, DeploymentsMessagesContent$outboundSchema, DeploymentsMessagesContent$, DeploymentsMessages4Role$inboundSchema, DeploymentsMessages4Role$outboundSchema, DeploymentsMessages4Role$, MessagesAudio$inboundSchema2, MessagesAudio$outboundSchema2, MessagesAudio$2, MessagesType$inboundSchema2, MessagesType$outboundSchema2, MessagesType$2, MessagesFunction$inboundSchema2, MessagesFunction$outboundSchema2, MessagesFunction$2, MessagesToolCalls$inboundSchema2, MessagesToolCalls$outboundSchema2, MessagesToolCalls$2, MessagesAssistantMessage$inboundSchema2, MessagesAssistantMessage$outboundSchema2, MessagesAssistantMessage$2, DeploymentsMessages3Role$inboundSchema, DeploymentsMessages3Role$outboundSchema, DeploymentsMessages3Role$, Deployments2Messages3Content4Type$inboundSchema, Deployments2Messages3Content4Type$outboundSchema, Deployments2Messages3Content4Type$, TwoFile$inboundSchema2, TwoFile$outboundSchema2, TwoFile$2, Two4$inboundSchema2, Two4$outboundSchema2, Two4$2, Deployments2Messages3ContentType$inboundSchema, Deployments2Messages3ContentType$outboundSchema, Deployments2Messages3ContentType$, TwoFormat$inboundSchema2, TwoFormat$outboundSchema2, TwoFormat$2, TwoInputAudio$inboundSchema2, TwoInputAudio$outboundSchema2, TwoInputAudio$2, Two3$inboundSchema2, Two3$outboundSchema2, Two3$2, Deployments2Messages3Type$inboundSchema, Deployments2Messages3Type$outboundSchema, Deployments2Messages3Type$, TwoDetail$inboundSchema2, TwoDetail$outboundSchema2, TwoDetail$2, TwoImageUrl$inboundSchema2, TwoImageUrl$outboundSchema2, TwoImageUrl$2, Deployments22$inboundSchema2, Deployments22$outboundSchema2, Deployments22$2, Deployments2MessagesType$inboundSchema, Deployments2MessagesType$outboundSchema, Deployments2MessagesType$, Two1$inboundSchema2, Two1$outboundSchema2, Two1$2, DeploymentsContent2$inboundSchema2, DeploymentsContent2$outboundSchema2, DeploymentsContent2$2, MessagesContent$inboundSchema2, MessagesContent$outboundSchema2, MessagesContent$2, MessagesUserMessage$inboundSchema2, MessagesUserMessage$outboundSchema2, MessagesUserMessage$2, DeploymentsMessagesRole$inboundSchema, DeploymentsMessagesRole$outboundSchema, DeploymentsMessagesRole$, MessagesSystemMessage$inboundSchema2, MessagesSystemMessage$outboundSchema2, MessagesSystemMessage$2, MessagesRole$inboundSchema2, MessagesRole$outboundSchema2, MessagesRole$2, MessagesDeveloperMessage$inboundSchema2, MessagesDeveloperMessage$outboundSchema2, MessagesDeveloperMessage$2, Messages$inboundSchema2, Messages$outboundSchema2, Messages$2, Metadata$inboundSchema2, Metadata$outboundSchema2, Metadata$2, Documents$inboundSchema2, Documents$outboundSchema2, Documents$2, InvokeOptions$inboundSchema2, InvokeOptions$outboundSchema2, InvokeOptions$2, Thread$inboundSchema2, Thread$outboundSchema2, Thread$2, OrExists$inboundSchema2, OrExists$outboundSchema2, OrExists$2, OrNin$inboundSchema2, OrNin$outboundSchema2, OrNin$2, DeploymentsOrNin$inboundSchema, DeploymentsOrNin$outboundSchema, DeploymentsOrNin$, OrIn$inboundSchema2, OrIn$outboundSchema2, OrIn$2, DeploymentsOrIn$inboundSchema, DeploymentsOrIn$outboundSchema, DeploymentsOrIn$, OrLte$inboundSchema2, OrLte$outboundSchema2, OrLte$2, OrLt$inboundSchema2, OrLt$outboundSchema2, OrLt$2, OrGte$inboundSchema2, OrGte$outboundSchema2, OrGte$2, Or3$inboundSchema2, Or3$outboundSchema2, Or3$2, OrNe$inboundSchema2, OrNe$outboundSchema2, OrNe$2, DeploymentsOrNe$inboundSchema, DeploymentsOrNe$outboundSchema, DeploymentsOrNe$, OrEq$inboundSchema2, OrEq$outboundSchema2, OrEq$2, DeploymentsOrEq$inboundSchema, DeploymentsOrEq$outboundSchema, DeploymentsOrEq$, Or$inboundSchema2, Or$outboundSchema2, Or$2, KnowledgeFilterOr$inboundSchema2, KnowledgeFilterOr$outboundSchema2, KnowledgeFilterOr$2, AndExists$inboundSchema2, AndExists$outboundSchema2, AndExists$2, AndNin$inboundSchema2, AndNin$outboundSchema2, AndNin$2, DeploymentsAndNin$inboundSchema, DeploymentsAndNin$outboundSchema, DeploymentsAndNin$, AndIn$inboundSchema2, AndIn$outboundSchema2, AndIn$2, DeploymentsAndIn$inboundSchema, DeploymentsAndIn$outboundSchema, DeploymentsAndIn$, AndLte$inboundSchema2, AndLte$outboundSchema2, AndLte$2, AndLt$inboundSchema2, AndLt$outboundSchema2, AndLt$2, AndGte$inboundSchema2, AndGte$outboundSchema2, AndGte$2, And3$inboundSchema2, And3$outboundSchema2, And3$2, AndNe$inboundSchema2, AndNe$outboundSchema2, AndNe$2, DeploymentsAndNe$inboundSchema, DeploymentsAndNe$outboundSchema, DeploymentsAndNe$, AndEq$inboundSchema2, AndEq$outboundSchema2, AndEq$2, DeploymentsAndEq$inboundSchema, DeploymentsAndEq$outboundSchema, DeploymentsAndEq$, And$inboundSchema2, And$outboundSchema2, And$2, KnowledgeFilterAnd$inboundSchema2, KnowledgeFilterAnd$outboundSchema2, KnowledgeFilterAnd$2, Exists$inboundSchema2, Exists$outboundSchema2, Exists$2, Nin$inboundSchema2, Nin$outboundSchema2, Nin$2, OneNin$inboundSchema2, OneNin$outboundSchema2, OneNin$2, In$inboundSchema2, In$outboundSchema2, In$2, OneIn$inboundSchema2, OneIn$outboundSchema2, OneIn$2, Lte$inboundSchema2, Lte$outboundSchema2, Lte$2, Lt$inboundSchema2, Lt$outboundSchema2, Lt$2, Gte$inboundSchema2, Gte$outboundSchema2, Gte$2, Three$inboundSchema2, Three$outboundSchema2, Three$2, Ne$inboundSchema2, Ne$outboundSchema2, Ne$2, OneNe$inboundSchema2, OneNe$outboundSchema2, OneNe$2, Eq$inboundSchema2, Eq$outboundSchema2, Eq$2, OneEq$inboundSchema2, OneEq$outboundSchema2, OneEq$2, One$inboundSchema2, One$outboundSchema2, One$2, KnowledgeFilter$inboundSchema2, KnowledgeFilter$outboundSchema2, KnowledgeFilter$2, Deployments$inboundSchema, Deployments$outboundSchema, Deployments$;
84450
+ var DeploymentsPrefixMessages5Role, Deployments2PrefixMessages4ContentType, Deployments2PrefixMessages4Type, DeploymentsAnnotationsType, AnnotationsType2, DeploymentsPrefixMessages4Role, Type2, DeploymentsPrefixMessagesRole, Deployments2PrefixMessagesType, Deployments2Type2, Format2, TwoType2, Detail2, Deployments2PrefixMessages3Type, PrefixMessagesRole2, Role2, DeploymentsMessages5Role, Deployments2Messages4ContentType, Deployments2Messages4Type, DeploymentsAnnotationsMessages4Type, DeploymentsAnnotationsMessagesType, DeploymentsMessages4Role, MessagesType2, DeploymentsMessages3Role, Deployments2Messages3Content4Type, Deployments2Messages3ContentType, TwoFormat2, Deployments2Messages3Type, TwoDetail2, Deployments2MessagesType, DeploymentsMessagesRole, MessagesRole2, DeploymentsPrefixMessages5Role$inboundSchema, DeploymentsPrefixMessages5Role$outboundSchema, DeploymentsPrefixMessages5Role$, DeploymentsPrefixMessagesContent$inboundSchema, DeploymentsPrefixMessagesContent$outboundSchema, DeploymentsPrefixMessagesContent$, ToolMessage$inboundSchema2, ToolMessage$outboundSchema2, ToolMessage$2, Deployments2PrefixMessages4ContentType$inboundSchema, Deployments2PrefixMessages4ContentType$outboundSchema, Deployments2PrefixMessages4ContentType$, RefusalContentPart$inboundSchema2, RefusalContentPart$outboundSchema2, RefusalContentPart$2, Deployments2PrefixMessages4Type$inboundSchema, Deployments2PrefixMessages4Type$outboundSchema, Deployments2PrefixMessages4Type$, DeploymentsAnnotationsType$inboundSchema, DeploymentsAnnotationsType$outboundSchema, DeploymentsAnnotationsType$, FilePath$inboundSchema2, FilePath$outboundSchema2, FilePath$2, Annotations2$inboundSchema2, Annotations2$outboundSchema2, Annotations2$2, AnnotationsType$inboundSchema2, AnnotationsType$outboundSchema2, AnnotationsType$2, FileCitation$inboundSchema2, FileCitation$outboundSchema2, FileCitation$2, Annotations1$inboundSchema2, Annotations1$outboundSchema2, Annotations1$2, Annotations$inboundSchema2, Annotations$outboundSchema2, Annotations$2, TextContentPart$inboundSchema2, TextContentPart$outboundSchema2, TextContentPart$2, Content2$inboundSchema2, Content2$outboundSchema2, Content2$2, PrefixMessagesContent$inboundSchema2, PrefixMessagesContent$outboundSchema2, PrefixMessagesContent$2, DeploymentsPrefixMessages4Role$inboundSchema, DeploymentsPrefixMessages4Role$outboundSchema, DeploymentsPrefixMessages4Role$, Audio$inboundSchema2, Audio$outboundSchema2, Audio$2, Type$inboundSchema2, Type$outboundSchema2, Type$2, FunctionT$inboundSchema2, FunctionT$outboundSchema2, FunctionT$2, ToolCalls$inboundSchema2, ToolCalls$outboundSchema2, ToolCalls$2, AssistantMessage$inboundSchema2, AssistantMessage$outboundSchema2, AssistantMessage$2, DeploymentsPrefixMessagesRole$inboundSchema, DeploymentsPrefixMessagesRole$outboundSchema, DeploymentsPrefixMessagesRole$, Deployments2PrefixMessagesType$inboundSchema, Deployments2PrefixMessagesType$outboundSchema, Deployments2PrefixMessagesType$, FileT$inboundSchema2, FileT$outboundSchema2, FileT$2, Four$inboundSchema2, Four$outboundSchema2, Four$2, Deployments2Type$inboundSchema2, Deployments2Type$outboundSchema2, Deployments2Type$2, Format$inboundSchema2, Format$outboundSchema2, Format$2, InputAudio$inboundSchema2, InputAudio$outboundSchema2, InputAudio$2, Deployments23$inboundSchema2, Deployments23$outboundSchema2, Deployments23$2, TwoType$inboundSchema2, TwoType$outboundSchema2, TwoType$2, Detail$inboundSchema2, Detail$outboundSchema2, Detail$2, ImageUrl$inboundSchema2, ImageUrl$outboundSchema2, ImageUrl$2, Two2$inboundSchema2, Two2$outboundSchema2, Two2$2, Deployments2PrefixMessages3Type$inboundSchema, Deployments2PrefixMessages3Type$outboundSchema, Deployments2PrefixMessages3Type$, Deployments21$inboundSchema2, Deployments21$outboundSchema2, Deployments21$2, Two$inboundSchema2, Two$outboundSchema2, Two$2, Content$inboundSchema2, Content$outboundSchema2, Content$2, UserMessage$inboundSchema2, UserMessage$outboundSchema2, UserMessage$2, PrefixMessagesRole$inboundSchema2, PrefixMessagesRole$outboundSchema2, PrefixMessagesRole$2, SystemMessage$inboundSchema2, SystemMessage$outboundSchema2, SystemMessage$2, Role$inboundSchema2, Role$outboundSchema2, Role$2, DeveloperMessage$inboundSchema2, DeveloperMessage$outboundSchema2, DeveloperMessage$2, PrefixMessages$inboundSchema2, PrefixMessages$outboundSchema2, PrefixMessages$2, DeploymentsMessages5Role$inboundSchema, DeploymentsMessages5Role$outboundSchema, DeploymentsMessages5Role$, DeploymentsMessages5Content$inboundSchema, DeploymentsMessages5Content$outboundSchema, DeploymentsMessages5Content$, MessagesToolMessage$inboundSchema2, MessagesToolMessage$outboundSchema2, MessagesToolMessage$2, Deployments2Messages4ContentType$inboundSchema, Deployments2Messages4ContentType$outboundSchema, Deployments2Messages4ContentType$, TwoRefusalContentPart$inboundSchema2, TwoRefusalContentPart$outboundSchema2, TwoRefusalContentPart$2, Deployments2Messages4Type$inboundSchema, Deployments2Messages4Type$outboundSchema, Deployments2Messages4Type$, DeploymentsAnnotationsMessages4Type$inboundSchema, DeploymentsAnnotationsMessages4Type$outboundSchema, DeploymentsAnnotationsMessages4Type$, AnnotationsFilePath$inboundSchema2, AnnotationsFilePath$outboundSchema2, AnnotationsFilePath$2, DeploymentsAnnotations2$inboundSchema, DeploymentsAnnotations2$outboundSchema, DeploymentsAnnotations2$, DeploymentsAnnotationsMessagesType$inboundSchema, DeploymentsAnnotationsMessagesType$outboundSchema, DeploymentsAnnotationsMessagesType$, AnnotationsFileCitation$inboundSchema2, AnnotationsFileCitation$outboundSchema2, AnnotationsFileCitation$2, DeploymentsAnnotations1$inboundSchema, DeploymentsAnnotations1$outboundSchema, DeploymentsAnnotations1$, TwoAnnotations$inboundSchema2, TwoAnnotations$outboundSchema2, TwoAnnotations$2, TwoTextContentPart$inboundSchema2, TwoTextContentPart$outboundSchema2, TwoTextContentPart$2, DeploymentsContentMessages2$inboundSchema, DeploymentsContentMessages2$outboundSchema, DeploymentsContentMessages2$, DeploymentsMessagesContent$inboundSchema, DeploymentsMessagesContent$outboundSchema, DeploymentsMessagesContent$, DeploymentsMessages4Role$inboundSchema, DeploymentsMessages4Role$outboundSchema, DeploymentsMessages4Role$, MessagesAudio$inboundSchema2, MessagesAudio$outboundSchema2, MessagesAudio$2, MessagesType$inboundSchema2, MessagesType$outboundSchema2, MessagesType$2, MessagesFunction$inboundSchema2, MessagesFunction$outboundSchema2, MessagesFunction$2, MessagesToolCalls$inboundSchema2, MessagesToolCalls$outboundSchema2, MessagesToolCalls$2, MessagesAssistantMessage$inboundSchema2, MessagesAssistantMessage$outboundSchema2, MessagesAssistantMessage$2, DeploymentsMessages3Role$inboundSchema, DeploymentsMessages3Role$outboundSchema, DeploymentsMessages3Role$, Deployments2Messages3Content4Type$inboundSchema, Deployments2Messages3Content4Type$outboundSchema, Deployments2Messages3Content4Type$, TwoFile$inboundSchema2, TwoFile$outboundSchema2, TwoFile$2, Two4$inboundSchema2, Two4$outboundSchema2, Two4$2, Deployments2Messages3ContentType$inboundSchema, Deployments2Messages3ContentType$outboundSchema, Deployments2Messages3ContentType$, TwoFormat$inboundSchema2, TwoFormat$outboundSchema2, TwoFormat$2, TwoInputAudio$inboundSchema2, TwoInputAudio$outboundSchema2, TwoInputAudio$2, Two3$inboundSchema2, Two3$outboundSchema2, Two3$2, Deployments2Messages3Type$inboundSchema, Deployments2Messages3Type$outboundSchema, Deployments2Messages3Type$, TwoDetail$inboundSchema2, TwoDetail$outboundSchema2, TwoDetail$2, TwoImageUrl$inboundSchema2, TwoImageUrl$outboundSchema2, TwoImageUrl$2, Deployments22$inboundSchema2, Deployments22$outboundSchema2, Deployments22$2, Deployments2MessagesType$inboundSchema, Deployments2MessagesType$outboundSchema, Deployments2MessagesType$, Two1$inboundSchema2, Two1$outboundSchema2, Two1$2, DeploymentsContent2$inboundSchema2, DeploymentsContent2$outboundSchema2, DeploymentsContent2$2, MessagesContent$inboundSchema2, MessagesContent$outboundSchema2, MessagesContent$2, MessagesUserMessage$inboundSchema2, MessagesUserMessage$outboundSchema2, MessagesUserMessage$2, DeploymentsMessagesRole$inboundSchema, DeploymentsMessagesRole$outboundSchema, DeploymentsMessagesRole$, MessagesSystemMessage$inboundSchema2, MessagesSystemMessage$outboundSchema2, MessagesSystemMessage$2, MessagesRole$inboundSchema2, MessagesRole$outboundSchema2, MessagesRole$2, MessagesDeveloperMessage$inboundSchema2, MessagesDeveloperMessage$outboundSchema2, MessagesDeveloperMessage$2, Messages$inboundSchema2, Messages$outboundSchema2, Messages$2, Metadata$inboundSchema2, Metadata$outboundSchema2, Metadata$2, Documents$inboundSchema2, Documents$outboundSchema2, Documents$2, InvokeOptions$inboundSchema2, InvokeOptions$outboundSchema2, InvokeOptions$2, Thread$inboundSchema2, Thread$outboundSchema2, Thread$2, OrExists$inboundSchema2, OrExists$outboundSchema2, OrExists$2, OrNin$inboundSchema2, OrNin$outboundSchema2, OrNin$2, DeploymentsOrNin$inboundSchema, DeploymentsOrNin$outboundSchema, DeploymentsOrNin$, OrIn$inboundSchema2, OrIn$outboundSchema2, OrIn$2, DeploymentsOrIn$inboundSchema, DeploymentsOrIn$outboundSchema, DeploymentsOrIn$, OrLte$inboundSchema2, OrLte$outboundSchema2, OrLte$2, OrLt$inboundSchema2, OrLt$outboundSchema2, OrLt$2, OrGte$inboundSchema2, OrGte$outboundSchema2, OrGte$2, Or3$inboundSchema2, Or3$outboundSchema2, Or3$2, OrNe$inboundSchema2, OrNe$outboundSchema2, OrNe$2, DeploymentsOrNe$inboundSchema, DeploymentsOrNe$outboundSchema, DeploymentsOrNe$, OrEq$inboundSchema2, OrEq$outboundSchema2, OrEq$2, DeploymentsOrEq$inboundSchema, DeploymentsOrEq$outboundSchema, DeploymentsOrEq$, Or$inboundSchema2, Or$outboundSchema2, Or$2, KnowledgeFilterOr$inboundSchema2, KnowledgeFilterOr$outboundSchema2, KnowledgeFilterOr$2, AndExists$inboundSchema2, AndExists$outboundSchema2, AndExists$2, AndNin$inboundSchema2, AndNin$outboundSchema2, AndNin$2, DeploymentsAndNin$inboundSchema, DeploymentsAndNin$outboundSchema, DeploymentsAndNin$, AndIn$inboundSchema2, AndIn$outboundSchema2, AndIn$2, DeploymentsAndIn$inboundSchema, DeploymentsAndIn$outboundSchema, DeploymentsAndIn$, AndLte$inboundSchema2, AndLte$outboundSchema2, AndLte$2, AndLt$inboundSchema2, AndLt$outboundSchema2, AndLt$2, AndGte$inboundSchema2, AndGte$outboundSchema2, AndGte$2, And3$inboundSchema2, And3$outboundSchema2, And3$2, AndNe$inboundSchema2, AndNe$outboundSchema2, AndNe$2, DeploymentsAndNe$inboundSchema, DeploymentsAndNe$outboundSchema, DeploymentsAndNe$, AndEq$inboundSchema2, AndEq$outboundSchema2, AndEq$2, DeploymentsAndEq$inboundSchema, DeploymentsAndEq$outboundSchema, DeploymentsAndEq$, And$inboundSchema2, And$outboundSchema2, And$2, KnowledgeFilterAnd$inboundSchema2, KnowledgeFilterAnd$outboundSchema2, KnowledgeFilterAnd$2, Exists$inboundSchema2, Exists$outboundSchema2, Exists$2, Nin$inboundSchema2, Nin$outboundSchema2, Nin$2, OneNin$inboundSchema2, OneNin$outboundSchema2, OneNin$2, In$inboundSchema2, In$outboundSchema2, In$2, OneIn$inboundSchema2, OneIn$outboundSchema2, OneIn$2, Lte$inboundSchema2, Lte$outboundSchema2, Lte$2, Lt$inboundSchema2, Lt$outboundSchema2, Lt$2, Gte$inboundSchema2, Gte$outboundSchema2, Gte$2, Three$inboundSchema2, Three$outboundSchema2, Three$2, Ne$inboundSchema2, Ne$outboundSchema2, Ne$2, OneNe$inboundSchema2, OneNe$outboundSchema2, OneNe$2, Eq$inboundSchema2, Eq$outboundSchema2, Eq$2, OneEq$inboundSchema2, OneEq$outboundSchema2, OneEq$2, One$inboundSchema2, One$outboundSchema2, One$2, KnowledgeFilter$inboundSchema2, KnowledgeFilter$outboundSchema2, KnowledgeFilter$2, Deployments$inboundSchema, Deployments$outboundSchema, Deployments$;
84445
84451
  var init_deployments2 = __esm(() => {
84446
84452
  init_esm();
84447
84453
  init_primitives();
@@ -84494,7 +84500,7 @@ var init_deployments2 = __esm(() => {
84494
84500
  PrefixMessagesRole2 = {
84495
84501
  System: "system"
84496
84502
  };
84497
- Role3 = {
84503
+ Role2 = {
84498
84504
  Developer: "developer"
84499
84505
  };
84500
84506
  DeploymentsMessages5Role = {
@@ -85115,7 +85121,7 @@ var init_deployments2 = __esm(() => {
85115
85121
  SystemMessage$.inboundSchema = SystemMessage$inboundSchema2;
85116
85122
  SystemMessage$.outboundSchema = SystemMessage$outboundSchema2;
85117
85123
  })(SystemMessage$2 ||= {});
85118
- Role$inboundSchema2 = nativeEnumType(Role3);
85124
+ Role$inboundSchema2 = nativeEnumType(Role2);
85119
85125
  Role$outboundSchema2 = Role$inboundSchema2;
85120
85126
  ((Role$) => {
85121
85127
  Role$.inboundSchema = Role$inboundSchema2;
@@ -96635,7 +96641,7 @@ Updates a tool in the workspace.`,
96635
96641
  function createMCPServer(deps) {
96636
96642
  const server = new McpServer({
96637
96643
  name: "Orq",
96638
- version: "3.13.0-rc.41"
96644
+ version: "3.13.0-rc.42"
96639
96645
  });
96640
96646
  const client = new OrqCore({
96641
96647
  apiKey: deps.apiKey,
@@ -98109,7 +98115,7 @@ var routes = rn({
98109
98115
  var app = Ve(routes, {
98110
98116
  name: "mcp",
98111
98117
  versionInfo: {
98112
- currentVersion: "3.13.0-rc.41"
98118
+ currentVersion: "3.13.0-rc.42"
98113
98119
  }
98114
98120
  });
98115
98121
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -98117,5 +98123,5 @@ export {
98117
98123
  app
98118
98124
  };
98119
98125
 
98120
- //# debugId=97CE23F76F601C2864756E2164756E21
98126
+ //# debugId=1F0996BF0FF50A6E64756E2164756E21
98121
98127
  //# sourceMappingURL=mcp-server.js.map