@datalayer/agent-runtimes 1.0.5 → 1.0.6

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 (111) hide show
  1. package/README.md +157 -10
  2. package/lib/AgentNode.d.ts +3 -0
  3. package/lib/AgentNode.js +676 -0
  4. package/lib/agent-node/themeStore.d.ts +3 -0
  5. package/lib/agent-node/themeStore.js +156 -0
  6. package/lib/agent-node-main.d.ts +1 -0
  7. package/lib/agent-node-main.js +14 -0
  8. package/lib/chat/Chat.js +16 -10
  9. package/lib/chat/ChatFloating.js +1 -1
  10. package/lib/chat/ChatSidebar.js +81 -49
  11. package/lib/chat/base/ChatBase.js +388 -74
  12. package/lib/chat/display/FloatingBrandButton.js +8 -1
  13. package/lib/chat/header/ChatHeader.d.ts +3 -1
  14. package/lib/chat/header/ChatHeader.js +15 -12
  15. package/lib/chat/header/ChatHeaderBase.d.ts +29 -9
  16. package/lib/chat/header/ChatHeaderBase.js +26 -3
  17. package/lib/chat/indicators/SandboxStatusIndicator.js +82 -47
  18. package/lib/chat/messages/ChatMessageList.js +46 -1
  19. package/lib/chat/messages/ChatMessages.js +6 -2
  20. package/lib/chat/prompt/InputFooter.d.ts +3 -1
  21. package/lib/chat/prompt/InputFooter.js +8 -5
  22. package/lib/chat/prompt/InputPrompt.d.ts +3 -1
  23. package/lib/chat/prompt/InputPrompt.js +2 -2
  24. package/lib/chat/prompt/InputPromptFooter.d.ts +3 -1
  25. package/lib/chat/prompt/InputPromptFooter.js +3 -3
  26. package/lib/client/AgentsMixin.js +14 -0
  27. package/lib/config/AgentConfiguration.d.ts +22 -0
  28. package/lib/config/AgentConfiguration.js +319 -64
  29. package/lib/examples/AgUiSharedStateExample.js +2 -1
  30. package/lib/examples/AgentCheckpointsExample.js +3 -3
  31. package/lib/examples/AgentCodemodeExample.d.ts +3 -3
  32. package/lib/examples/AgentCodemodeExample.js +24 -12
  33. package/lib/examples/AgentEvalsExample.js +330 -40
  34. package/lib/examples/AgentGuardrailsExample.js +16 -5
  35. package/lib/examples/AgentHooksExample.js +27 -9
  36. package/lib/examples/AgentInferenceProviderExample.d.ts +3 -0
  37. package/lib/examples/AgentInferenceProviderExample.js +329 -0
  38. package/lib/examples/AgentMCPExample.js +6 -5
  39. package/lib/examples/AgentMemoryExample.d.ts +1 -2
  40. package/lib/examples/AgentMemoryExample.js +71 -22
  41. package/lib/examples/AgentMonitoringExample.js +5 -5
  42. package/lib/examples/AgentNotificationsExample.d.ts +1 -2
  43. package/lib/examples/AgentNotificationsExample.js +71 -22
  44. package/lib/examples/AgentOtelExample.js +31 -40
  45. package/lib/examples/AgentOutputsExample.d.ts +1 -1
  46. package/lib/examples/AgentOutputsExample.js +67 -16
  47. package/lib/examples/AgentParametersExample.js +10 -8
  48. package/lib/examples/AgentSandboxExample.d.ts +1 -1
  49. package/lib/examples/AgentSandboxExample.js +7 -6
  50. package/lib/examples/AgentSkillsExample.js +6 -6
  51. package/lib/examples/AgentSubagentsExample.d.ts +1 -1
  52. package/lib/examples/AgentSubagentsExample.js +6 -6
  53. package/lib/examples/AgentToolApprovalsExample.js +27 -11
  54. package/lib/examples/AgentTriggersExample.js +5 -5
  55. package/lib/examples/{AgentSpecsExample.d.ts → AgentspecsExample.d.ts} +2 -2
  56. package/lib/examples/AgentspecsExample.js +1096 -0
  57. package/lib/examples/ChatCustomExample.js +6 -5
  58. package/lib/examples/ChatExample.js +6 -5
  59. package/lib/examples/Lexical2Example.js +1 -1
  60. package/lib/examples/LexicalAgentExample.js +1 -1
  61. package/lib/examples/NotebookAgentExample.js +3 -3
  62. package/lib/examples/components/ExampleWrapper.d.ts +6 -7
  63. package/lib/examples/components/ExampleWrapper.js +27 -10
  64. package/lib/examples/example-selector.js +2 -1
  65. package/lib/examples/index.d.ts +2 -1
  66. package/lib/examples/index.js +2 -1
  67. package/lib/examples/lexical/initial-content.json +6 -6
  68. package/lib/examples/main.js +56 -16
  69. package/lib/examples/utils/agentId.d.ts +1 -1
  70. package/lib/examples/utils/agentId.js +1 -1
  71. package/lib/examples/utils/useExampleAgentRuntimesUrl.d.ts +5 -0
  72. package/lib/examples/utils/useExampleAgentRuntimesUrl.js +19 -0
  73. package/lib/hooks/useAIAgentsWebSocket.js +35 -0
  74. package/lib/hooks/useAgentRuntimes.d.ts +32 -3
  75. package/lib/hooks/useAgentRuntimes.js +114 -19
  76. package/lib/index.d.ts +1 -1
  77. package/lib/specs/agents/agents.d.ts +20 -13
  78. package/lib/specs/agents/agents.js +1267 -581
  79. package/lib/specs/benchmarks.d.ts +20 -0
  80. package/lib/specs/benchmarks.js +205 -0
  81. package/lib/specs/envvars.d.ts +0 -1
  82. package/lib/specs/envvars.js +0 -11
  83. package/lib/specs/evals.d.ts +10 -9
  84. package/lib/specs/evals.js +128 -88
  85. package/lib/specs/index.d.ts +0 -1
  86. package/lib/specs/index.js +0 -1
  87. package/lib/specs/models.d.ts +0 -2
  88. package/lib/specs/models.js +0 -15
  89. package/lib/specs/skills.d.ts +0 -1
  90. package/lib/specs/skills.js +0 -18
  91. package/lib/stores/agentRuntimeStore.d.ts +5 -1
  92. package/lib/stores/agentRuntimeStore.js +22 -8
  93. package/lib/stores/conversationStore.js +2 -2
  94. package/lib/types/agents-lifecycle.d.ts +18 -0
  95. package/lib/types/agents.d.ts +6 -0
  96. package/lib/types/agentspecs.d.ts +4 -0
  97. package/lib/types/benchmarks.d.ts +43 -0
  98. package/lib/types/benchmarks.js +5 -0
  99. package/lib/types/chat.d.ts +16 -0
  100. package/lib/types/evals.d.ts +26 -17
  101. package/lib/types/index.d.ts +1 -0
  102. package/lib/types/index.js +1 -0
  103. package/package.json +9 -5
  104. package/scripts/codegen/__pycache__/generate_agents.cpython-313.pyc +0 -0
  105. package/scripts/codegen/__pycache__/generate_benchmarks.cpython-313.pyc +0 -0
  106. package/scripts/codegen/__pycache__/generate_evals.cpython-313.pyc +0 -0
  107. package/scripts/codegen/generate_agents.py +89 -43
  108. package/scripts/codegen/generate_benchmarks.py +441 -0
  109. package/scripts/codegen/generate_evals.py +94 -16
  110. package/scripts/codegen/generate_events.py +0 -1
  111. package/lib/examples/AgentSpecsExample.js +0 -694
@@ -65,6 +65,14 @@ const RUNTIME_STATUS_MAP = {
65
65
  function toAgentRuntimeData(raw) {
66
66
  const status = typeof raw.status === 'string' ? raw.status.toLowerCase() : '';
67
67
  const normalizedStatus = RUNTIME_STATUS_MAP[status] ?? 'running';
68
+ const rawVolumeUids = Array.isArray(raw.volume_uids)
69
+ ? raw.volume_uids
70
+ : raw.volume_uid
71
+ ? [raw.volume_uid]
72
+ : [];
73
+ const volume_uids = rawVolumeUids
74
+ .map((uid) => String(uid || '').trim())
75
+ .filter(Boolean);
68
76
  return {
69
77
  ...raw,
70
78
  status: normalizedStatus,
@@ -73,6 +81,8 @@ function toAgentRuntimeData(raw) {
73
81
  url: raw.ingress,
74
82
  messageCount: 0,
75
83
  agent_spec_id: raw.agent_spec_id || undefined,
84
+ volume_uids,
85
+ volume_uid: raw.volume_uid || volume_uids[0] || undefined,
76
86
  };
77
87
  }
78
88
  // ═══════════════════════════════════════════════════════════════════════════
@@ -93,7 +103,7 @@ function toAgentRuntimeData(raw) {
93
103
  * // Connect mode — attach to an existing runtime
94
104
  * const { isReady, endpoint, connectToRuntime } = useAgents({
95
105
  * autoCreateAgent: true,
96
- * agentConfig: { model: 'bedrock:us.anthropic.claude-3-5-haiku-20241022-v1:0' },
106
+ * agentConfig: { model: 'bedrock:us.anthropic.claude-sonnet-4-5-20250929-v1:0' },
97
107
  * });
98
108
  *
99
109
  * // Lifecycle mode — full lifecycle with agentSpecId
@@ -105,7 +115,8 @@ function toAgentRuntimeData(raw) {
105
115
  * ```
106
116
  */
107
117
  export function useAgentRuntimes(options = {}) {
108
- const { agentSpecId, agentConfig, autoCreateAgent = true, autoStart = false, agentSpec, } = options;
118
+ const { agentSpecId, agentConfig, autoCreateAgent = true, autoStart = false, agentSpec, runtimeCreationTarget = 'backend-services', runtimeCreationBaseUrl, } = options;
119
+ const { configuration } = useCoreStore();
109
120
  // Base store state
110
121
  const runtime = useAgentRuntimeConnection();
111
122
  const baseStatus = useAgentRuntimeStatus();
@@ -128,6 +139,23 @@ export function useAgentRuntimes(options = {}) {
128
139
  agentConfigRef.current = agentConfig;
129
140
  // Whether we're managing a full agent lifecycle (agentSpecId provided)
130
141
  const hasSpec = !!agentSpecId;
142
+ const resolvedRuntimeCreationBaseUrl = useMemo(() => {
143
+ if (runtimeCreationBaseUrl) {
144
+ return runtimeCreationBaseUrl;
145
+ }
146
+ if (runtimeCreationTarget === 'local-agent-runtimes') {
147
+ return (import.meta.env.VITE_DATALAYER_AGENT_RUNTIMES_URL ||
148
+ import.meta.env.VITE_BASE_URL ||
149
+ 'http://localhost:8765');
150
+ }
151
+ return (configuration?.runtimesRunUrl ||
152
+ import.meta.env.VITE_DATALAYER_AGENT_RUNTIMES_URL ||
153
+ 'https://r1.datalayer.run');
154
+ }, [
155
+ configuration?.runtimesRunUrl,
156
+ runtimeCreationBaseUrl,
157
+ runtimeCreationTarget,
158
+ ]);
131
159
  // ─── Auth helpers ─────────────────────────────────────────────────
132
160
  const getAuthHeaders = useCallback(async () => {
133
161
  try {
@@ -135,30 +163,39 @@ export function useAgentRuntimes(options = {}) {
135
163
  const token = iamStore.getState().token || '';
136
164
  const config = coreStore.getState().configuration;
137
165
  const runUrl = config?.aiagentsRunUrl || '';
138
- const runtimesRunUrl = config?.runtimesRunUrl || '';
166
+ const runtimesRunUrl = resolvedRuntimeCreationBaseUrl;
139
167
  return { token, runUrl, runtimesRunUrl };
140
168
  }
141
169
  catch {
142
170
  return { token: '', runUrl: '', runtimesRunUrl: '' };
143
171
  }
144
- }, []);
172
+ }, [resolvedRuntimeCreationBaseUrl]);
145
173
  // ─── Launch Runtime ─────────────────────────────────────────────────
146
174
  const launchRuntime = useCallback(async (runtimeOptions) => {
147
175
  if (hasSpec) {
148
176
  setLifecycleStatus('launching');
149
177
  setLifecycleError(null);
150
178
  try {
151
- const safeName = `${agentSpecId}`
179
+ const preferredRuntimeName = (typeof agentConfig?.name === 'string' && agentConfig.name) ||
180
+ (typeof agentSpec?.name === 'string' && agentSpec.name) ||
181
+ `${agentSpecId}`;
182
+ const safeName = preferredRuntimeName
152
183
  .replace(/\//g, '-')
153
184
  .replace(/[^a-z0-9-]/g, '-')
154
185
  .replace(/-+/g, '-')
155
186
  .replace(/^-|-$/g, '')
156
187
  .slice(0, 63);
157
- const conn = await storeLaunchAgent(runtimeOptions || {
158
- environmentName: 'ai-agents-env',
159
- creditsLimit: 10,
160
- givenName: safeName,
161
- });
188
+ const conn = await storeLaunchAgent(runtimeOptions
189
+ ? {
190
+ ...runtimeOptions,
191
+ runtimesRunUrl: resolvedRuntimeCreationBaseUrl,
192
+ }
193
+ : {
194
+ environmentName: 'ai-agents-env',
195
+ creditsLimit: 10,
196
+ givenName: safeName,
197
+ runtimesRunUrl: resolvedRuntimeCreationBaseUrl,
198
+ });
162
199
  setLifecycleStatus('ready');
163
200
  return conn;
164
201
  }
@@ -173,9 +210,19 @@ export function useAgentRuntimes(options = {}) {
173
210
  if (!runtimeOptions) {
174
211
  throw new Error('Runtime options are required in connect mode');
175
212
  }
176
- return storeLaunchAgent(runtimeOptions);
213
+ return storeLaunchAgent({
214
+ ...runtimeOptions,
215
+ runtimesRunUrl: resolvedRuntimeCreationBaseUrl,
216
+ });
177
217
  }
178
- }, [agentSpecId, hasSpec, storeLaunchAgent]);
218
+ }, [
219
+ agentConfig?.name,
220
+ agentSpec?.name,
221
+ agentSpecId,
222
+ hasSpec,
223
+ resolvedRuntimeCreationBaseUrl,
224
+ storeLaunchAgent,
225
+ ]);
179
226
  // ─── Create Agent ───────────────────────────────────────────────────
180
227
  const createAgent = useCallback(async (config) => {
181
228
  if (creatingRef.current) {
@@ -398,6 +445,8 @@ export function useAgentRuntimes(options = {}) {
398
445
  // Status
399
446
  isReady,
400
447
  error,
448
+ runtimeCreationTarget,
449
+ runtimeCreationBaseUrl: resolvedRuntimeCreationBaseUrl,
401
450
  };
402
451
  }
403
452
  // ═══════════════════════════════════════════════════════════════════════════
@@ -409,16 +458,36 @@ export function useAgentRuntimes(options = {}) {
409
458
  * The backend returns active runtimes from the operator **plus** paused
410
459
  * runtimes synthesised from Solr checkpoint records (with ``status="paused"``).
411
460
  */
412
- export function useAgentRuntimesQuery() {
461
+ export function useAgentRuntimesQuery(scope, queryOptions) {
413
462
  const { configuration } = useCoreStore();
414
463
  const { requestDatalayer } = useDatalayer({ notifyOnError: false });
415
464
  const { user } = useIAMStore();
416
465
  const queryClient = useQueryClient();
417
466
  return useQuery({
418
- queryKey: agentQueryKeys.agentRuntimes.lists(),
467
+ queryKey: [
468
+ ...agentQueryKeys.agentRuntimes.lists(),
469
+ scope?.selectedUserUid || '',
470
+ scope?.selectedOrganizationUid || '',
471
+ scope?.selectedTeamUid || '',
472
+ scope?.selectedAgentUid || '',
473
+ ],
419
474
  queryFn: async () => {
475
+ const params = new URLSearchParams();
476
+ if (scope?.selectedUserUid) {
477
+ params.set('selected_user_uid', scope.selectedUserUid);
478
+ }
479
+ if (scope?.selectedOrganizationUid) {
480
+ params.set('selected_organization_uid', scope.selectedOrganizationUid);
481
+ }
482
+ if (scope?.selectedTeamUid) {
483
+ params.set('selected_team_uid', scope.selectedTeamUid);
484
+ }
485
+ if (scope?.selectedAgentUid) {
486
+ params.set('selected_agent_uid', scope.selectedAgentUid);
487
+ }
488
+ const query = params.toString();
420
489
  const resp = await requestDatalayer({
421
- url: `${configuration.runtimesRunUrl}/api/runtimes/v1/runtimes`,
490
+ url: `${configuration.runtimesRunUrl}/api/runtimes/v1/runtimes${query ? `?${query}` : ''}`,
422
491
  method: 'GET',
423
492
  });
424
493
  if (resp.success && resp.runtimes) {
@@ -433,8 +502,10 @@ export function useAgentRuntimesQuery() {
433
502
  return [];
434
503
  },
435
504
  ...AGENT_QUERY_OPTIONS,
436
- refetchInterval: 10000,
437
- enabled: !!user,
505
+ refetchInterval: queryOptions?.refetchInterval ?? 10000,
506
+ refetchOnMount: true,
507
+ refetchOnWindowFocus: true,
508
+ enabled: (queryOptions?.enabled ?? true) && !!user,
438
509
  });
439
510
  }
440
511
  /**
@@ -474,6 +545,11 @@ export function useCreateAgentRuntime() {
474
545
  const queryClient = useQueryClient();
475
546
  return useMutation({
476
547
  mutationFn: async (data) => {
548
+ const normalizedVolumeUids = Array.isArray(data.volumeUids)
549
+ ? data.volumeUids.map(uid => String(uid || '').trim()).filter(Boolean)
550
+ : data.volumeUid
551
+ ? [String(data.volumeUid).trim()]
552
+ : [];
477
553
  return requestDatalayer({
478
554
  url: `${configuration.runtimesRunUrl}/api/runtimes/v1/runtimes`,
479
555
  method: 'POST',
@@ -486,6 +562,15 @@ export function useCreateAgentRuntime() {
486
562
  enable_codemode: data.enableCodemode ?? false,
487
563
  agent_spec_id: data.agentSpecId || undefined,
488
564
  agent_spec: data.agentSpec || undefined,
565
+ user_account_handle: data.userAccountHandle || undefined,
566
+ billable_account_uid: data.billableAccountUid || undefined,
567
+ billable_account_type: data.billableAccountType || undefined,
568
+ billable_account_handle: data.billableAccountHandle || undefined,
569
+ billable_source_organization_uid: data.billableSourceOrganizationUid || undefined,
570
+ billable_source_organization_handle: data.billableSourceOrganizationHandle || undefined,
571
+ mount_home_folder: data.mountHomeFolder ?? false,
572
+ volume_uids: normalizedVolumeUids.length > 0 ? normalizedVolumeUids : undefined,
573
+ volume_uid: normalizedVolumeUids[0] || data.volumeUid || undefined,
489
574
  },
490
575
  });
491
576
  },
@@ -515,6 +600,12 @@ export function useDeleteAgentRuntime() {
515
600
  });
516
601
  },
517
602
  onSuccess: (_data, podName) => {
603
+ queryClient.setQueriesData({ queryKey: agentQueryKeys.agentRuntimes.lists() }, (current) => {
604
+ if (!Array.isArray(current)) {
605
+ return current;
606
+ }
607
+ return current.filter(runtime => runtime.pod_name !== podName);
608
+ });
518
609
  queryClient.cancelQueries({
519
610
  queryKey: agentQueryKeys.agentRuntimes.detail(podName),
520
611
  });
@@ -524,6 +615,10 @@ export function useDeleteAgentRuntime() {
524
615
  queryClient.invalidateQueries({
525
616
  queryKey: agentQueryKeys.agentRuntimes.lists(),
526
617
  });
618
+ queryClient.refetchQueries({
619
+ queryKey: agentQueryKeys.agentRuntimes.lists(),
620
+ type: 'active',
621
+ });
527
622
  },
528
623
  });
529
624
  }
@@ -607,8 +702,8 @@ export const useAgentLifecycleStore = create()(persist((set, get) => ({
607
702
  /**
608
703
  * Consolidated runtime list and mutations.
609
704
  */
610
- export function useAgentsRuntimes() {
611
- const runtimesQuery = useAgentRuntimesQuery();
705
+ export function useAgentsRuntimes(scope, queryOptions) {
706
+ const runtimesQuery = useAgentRuntimesQuery(scope, queryOptions);
612
707
  const createRuntimeMutation = useCreateAgentRuntime();
613
708
  const deleteRuntimeMutation = useDeleteAgentRuntime();
614
709
  const refreshRuntimes = useRefreshAgentRuntimes();
package/lib/index.d.ts CHANGED
@@ -6,4 +6,4 @@ export * from './stores';
6
6
  export * from './identity';
7
7
  export * from './config';
8
8
  export * from './specs';
9
- export type { AgentRuntimeData, AgentSpec, ChatCommonProps, TeamSpec, GuardrailSpec, EvalSpec, TriggerSpec, OutputSpec, NotificationChannelSpec, MCPServer, SkillSpec, SkillInfo, SkillStatus, EnvvarSpec, ToolCallStartContext, ToolCallCompleteContext, } from './types';
9
+ export type { AgentRuntimeData, AgentSpec, BenchmarkSpec, ChatCommonProps, TeamSpec, GuardrailSpec, EvalSpec, TriggerSpec, OutputSpec, NotificationChannelSpec, MCPServer, SkillSpec, SkillInfo, SkillStatus, EnvvarSpec, ToolCallStartContext, ToolCallCompleteContext, } from './types';
@@ -14,21 +14,28 @@ export declare const CLASSIFY_ROUTE_EMAILS_AGENT_SPEC_0_0_1: AgentSpec;
14
14
  export declare const COMPREHENSIVE_SALES_ANALYTICS_AGENT_SPEC_0_0_1: AgentSpec;
15
15
  export declare const CRAWLER_AGENT_SPEC_0_0_1: AgentSpec;
16
16
  export declare const DATA_ACQUISITION_AGENT_SPEC_0_0_1: AgentSpec;
17
- export declare const DATALAYER_AGENT_SPEC_0_0_1: AgentSpec;
18
- export declare const DEMO_FULL_AGENT_SPEC_0_0_1: AgentSpec;
19
- export declare const DEMO_GUARDRAILS_AGENT_SPEC_0_0_1: AgentSpec;
20
- export declare const DEMO_HOOKS_AGENT_SPEC_0_0_1: AgentSpec;
21
- export declare const DEMO_MCP_AGENT_SPEC_0_0_1: AgentSpec;
22
- export declare const DEMO_MONITORING_AGENT_SPEC_0_0_1: AgentSpec;
23
- export declare const DEMO_ONE_TRIGGER_APPROVAL_AGENT_SPEC_0_0_1: AgentSpec;
24
- export declare const DEMO_ONE_TRIGGER_AGENT_SPEC_0_0_1: AgentSpec;
25
17
  export declare const DEMO_OUTPUTS_AGENT_SPEC_0_0_1: AgentSpec;
26
- export declare const DEMO_PARAMETERS_AGENT_SPEC_0_0_1: AgentSpec;
27
- export declare const DEMO_SIMPLE_AGENT_SPEC_0_0_1: AgentSpec;
28
- export declare const DEMO_SUBAGENTS_AGENT_SPEC_0_0_1: AgentSpec;
29
- export declare const DEMO_TAVILY_CODEMODE_AGENT_SPEC_0_0_1: AgentSpec;
30
- export declare const DEMO_TAVILY_NO_CODEMODE_AGENT_SPEC_0_0_1: AgentSpec;
31
18
  export declare const END_OF_MONTH_SALES_PERFORMANCE_AGENT_SPEC_0_0_1: AgentSpec;
19
+ export declare const EVAL_EXPERIMENT_RUNNER_AGENT_SPEC_0_0_1: AgentSpec;
20
+ export declare const EXAMPLE_CODEMODE_AGENT_SPEC_0_0_1: AgentSpec;
21
+ export declare const EXAMPLE_EVALS_AGENT_SPEC_0_0_1: AgentSpec;
22
+ export declare const EXAMPLE_FULL_AGENT_SPEC_0_0_1: AgentSpec;
23
+ export declare const EXAMPLE_GUARDRAILS_AGENT_SPEC_0_0_1: AgentSpec;
24
+ export declare const EXAMPLE_HOOKS_AGENT_SPEC_0_0_1: AgentSpec;
25
+ export declare const EXAMPLE_INFERENCE_AGENT_SPEC_0_0_1: AgentSpec;
26
+ export declare const EXAMPLE_MCP_AGENT_SPEC_0_0_1: AgentSpec;
27
+ export declare const EXAMPLE_MEMORY_AGENT_SPEC_0_0_1: AgentSpec;
28
+ export declare const EXAMPLE_MONITORING_AGENT_SPEC_0_0_1: AgentSpec;
29
+ export declare const EXAMPLE_NO_CODEMODE_AGENT_SPEC_0_0_1: AgentSpec;
30
+ export declare const EXAMPLE_NOTIFICATIONS_AGENT_SPEC_0_0_1: AgentSpec;
31
+ export declare const EXAMPLE_ONE_TRIGGER_APPROVAL_AGENT_SPEC_0_0_1: AgentSpec;
32
+ export declare const EXAMPLE_ONE_TRIGGER_AGENT_SPEC_0_0_1: AgentSpec;
33
+ export declare const EXAMPLE_OTEL_AGENT_SPEC_0_0_1: AgentSpec;
34
+ export declare const EXAMPLE_PARAMETERS_AGENT_SPEC_0_0_1: AgentSpec;
35
+ export declare const EXAMPLE_SIMPLE_AGENT_SPEC_0_0_1: AgentSpec;
36
+ export declare const EXAMPLE_SKILLS_AGENT_SPEC_0_0_1: AgentSpec;
37
+ export declare const EXAMPLE_SUBAGENTS_AGENT_SPEC_0_0_1: AgentSpec;
38
+ export declare const EXAMPLE_TOOL_APPROVALS_AGENT_SPEC_0_0_1: AgentSpec;
32
39
  export declare const EXTRACT_DATA_FROM_FILES_AGENT_SPEC_0_0_1: AgentSpec;
33
40
  export declare const FINANCIAL_VIZ_AGENT_SPEC_0_0_1: AgentSpec;
34
41
  export declare const FINANCIAL_AGENT_SPEC_0_0_1: AgentSpec;