@softactivate/adk 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +3 -0
- package/dist/cjs/a2a/a2a_event.js +317 -0
- package/dist/cjs/a2a/a2a_remote_agent.js +179 -0
- package/dist/cjs/a2a/a2a_remote_agent_run_processor.js +205 -0
- package/dist/cjs/a2a/a2a_remote_agent_utils.js +165 -0
- package/dist/cjs/a2a/agent_card.js +380 -0
- package/dist/cjs/a2a/agent_executor.js +221 -0
- package/dist/cjs/a2a/agent_to_a2a.js +115 -0
- package/dist/cjs/a2a/event_converter_utils.js +201 -0
- package/dist/cjs/a2a/event_processor_utils.js +180 -0
- package/dist/cjs/a2a/executor_context.js +53 -0
- package/dist/cjs/a2a/metadata_converter_utils.js +126 -0
- package/dist/cjs/a2a/part_converter_utils.js +223 -0
- package/dist/cjs/agents/active_streaming_tool.js +44 -0
- package/dist/cjs/agents/base_agent.js +294 -0
- package/dist/cjs/agents/context.js +180 -0
- package/dist/cjs/agents/functions.js +525 -0
- package/dist/cjs/agents/instructions.js +110 -0
- package/dist/cjs/agents/invocation_context.js +110 -0
- package/dist/cjs/agents/live_request_queue.js +136 -0
- package/dist/cjs/agents/llm_agent.js +722 -0
- package/dist/cjs/agents/loop_agent.js +84 -0
- package/dist/cjs/agents/parallel_agent.js +95 -0
- package/dist/cjs/agents/processors/agent_transfer_llm_request_processor.js +132 -0
- package/dist/cjs/agents/processors/base_llm_processor.js +44 -0
- package/dist/cjs/agents/processors/basic_llm_request_processor.js +68 -0
- package/dist/cjs/agents/processors/code_execution_request_processor.js +391 -0
- package/dist/cjs/agents/processors/content_processor_utils.js +338 -0
- package/dist/cjs/agents/processors/content_request_processor.js +87 -0
- package/dist/cjs/agents/processors/context_compactor_request_processor.js +70 -0
- package/dist/cjs/agents/processors/identity_llm_request_processor.js +54 -0
- package/dist/cjs/agents/processors/instructions_llm_request_processor.js +85 -0
- package/dist/cjs/agents/processors/request_confirmation_llm_request_processor.js +165 -0
- package/dist/cjs/agents/processors/tool_filter_request_processor.js +73 -0
- package/dist/cjs/agents/readonly_context.js +83 -0
- package/dist/cjs/agents/routed_agent.js +97 -0
- package/dist/cjs/agents/run_config.js +71 -0
- package/dist/cjs/agents/sequential_agent.js +106 -0
- package/dist/cjs/agents/transcription_entry.js +27 -0
- package/dist/cjs/artifacts/base_artifact_service.js +27 -0
- package/dist/cjs/artifacts/file_artifact_service.js +522 -0
- package/dist/cjs/artifacts/gcs_artifact_service.js +227 -0
- package/dist/cjs/artifacts/in_memory_artifact_service.js +181 -0
- package/dist/cjs/artifacts/registry.js +55 -0
- package/dist/cjs/auth/auth_credential.js +46 -0
- package/dist/cjs/auth/auth_handler.js +159 -0
- package/dist/cjs/auth/auth_preprocessor.js +178 -0
- package/dist/cjs/auth/auth_provider_registry.js +61 -0
- package/dist/cjs/auth/auth_schemes.js +62 -0
- package/dist/cjs/auth/auth_tool.js +27 -0
- package/dist/cjs/auth/base_auth_provider.js +27 -0
- package/dist/cjs/auth/credential_service/base_credential_service.js +27 -0
- package/dist/cjs/auth/credential_service/in_memory_credential_service.js +63 -0
- package/dist/cjs/auth/credential_service/session_state_credential_service.js +51 -0
- package/dist/cjs/auth/exchanger/base_credential_exchanger.js +40 -0
- package/dist/cjs/auth/exchanger/credential_exchanger_registry.js +59 -0
- package/dist/cjs/auth/oauth2/oauth2_credential_exchanger.js +198 -0
- package/dist/cjs/auth/oauth2/oauth2_credential_refresher.js +109 -0
- package/dist/cjs/auth/oauth2/oauth2_discovery.js +186 -0
- package/dist/cjs/auth/oauth2/oauth2_utils.js +119 -0
- package/dist/cjs/auth/refresher/base_credential_refresher.js +44 -0
- package/dist/cjs/auth/refresher/credential_refresher_registry.js +68 -0
- package/dist/cjs/code_executors/base_code_executor.js +92 -0
- package/dist/cjs/code_executors/built_in_code_executor.js +74 -0
- package/dist/cjs/code_executors/code_execution_utils.js +161 -0
- package/dist/cjs/code_executors/code_executor_context.js +198 -0
- package/dist/cjs/code_executors/unsafe_local_code_executor.js +241 -0
- package/dist/cjs/common.js +362 -0
- package/dist/cjs/context/base_context_compactor.js +27 -0
- package/dist/cjs/context/summarizers/base_summarizer.js +27 -0
- package/dist/cjs/context/summarizers/llm_summarizer.js +93 -0
- package/dist/cjs/context/token_based_context_compactor.js +135 -0
- package/dist/cjs/context/truncating_context_compactor.js +58 -0
- package/dist/cjs/events/compacted_event.js +53 -0
- package/dist/cjs/events/event.js +146 -0
- package/dist/cjs/events/event_actions.js +83 -0
- package/dist/cjs/events/structured_events.js +105 -0
- package/dist/cjs/examples/base_example_provider.js +56 -0
- package/dist/cjs/examples/example.js +27 -0
- package/dist/cjs/examples/example_util.js +107 -0
- package/dist/cjs/features/feature_registry.js +141 -0
- package/dist/cjs/index.js +94 -0
- package/dist/cjs/index_web.js +33 -0
- package/dist/cjs/memory/base_memory_service.js +27 -0
- package/dist/cjs/memory/in_memory_memory_service.js +99 -0
- package/dist/cjs/memory/memory_entry.js +27 -0
- package/dist/cjs/models/apigee_llm.js +182 -0
- package/dist/cjs/models/base_llm.js +102 -0
- package/dist/cjs/models/base_llm_connection.js +27 -0
- package/dist/cjs/models/gemini_llm_connection.js +133 -0
- package/dist/cjs/models/google_llm.js +291 -0
- package/dist/cjs/models/llm_request.js +82 -0
- package/dist/cjs/models/llm_response.js +73 -0
- package/dist/cjs/models/registry.js +123 -0
- package/dist/cjs/models/routed_llm.js +99 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/plugins/base_plugin.js +295 -0
- package/dist/cjs/plugins/logging_plugin.js +259 -0
- package/dist/cjs/plugins/plugin_manager.js +310 -0
- package/dist/cjs/plugins/security_plugin.js +156 -0
- package/dist/cjs/runner/in_memory_runner.js +58 -0
- package/dist/cjs/runner/runner.js +380 -0
- package/dist/cjs/sessions/base_session_service.js +121 -0
- package/dist/cjs/sessions/database_session_service.js +367 -0
- package/dist/cjs/sessions/db/operations.js +109 -0
- package/dist/cjs/sessions/db/schema.js +204 -0
- package/dist/cjs/sessions/in_memory_session_service.js +210 -0
- package/dist/cjs/sessions/registry.js +49 -0
- package/dist/cjs/sessions/session.js +48 -0
- package/dist/cjs/sessions/state.js +101 -0
- package/dist/cjs/skills/loader.js +283 -0
- package/dist/cjs/skills/prompt.js +58 -0
- package/dist/cjs/skills/skill.js +78 -0
- package/dist/cjs/telemetry/google_cloud.js +83 -0
- package/dist/cjs/telemetry/setup.js +105 -0
- package/dist/cjs/telemetry/tracing.js +253 -0
- package/dist/cjs/tools/agent_tool.js +219 -0
- package/dist/cjs/tools/base_tool.js +122 -0
- package/dist/cjs/tools/base_toolset.js +86 -0
- package/dist/cjs/tools/exit_loop_tool.js +63 -0
- package/dist/cjs/tools/forwarding_artifact_service.js +87 -0
- package/dist/cjs/tools/function_tool.js +109 -0
- package/dist/cjs/tools/google_maps_grounding_tool.js +80 -0
- package/dist/cjs/tools/google_search_tool.js +80 -0
- package/dist/cjs/tools/load_artifacts_tool.js +188 -0
- package/dist/cjs/tools/load_memory_tool.js +107 -0
- package/dist/cjs/tools/long_running_tool.js +63 -0
- package/dist/cjs/tools/mcp/mcp_session_manager.js +77 -0
- package/dist/cjs/tools/mcp/mcp_tool.js +68 -0
- package/dist/cjs/tools/mcp/mcp_toolset.js +80 -0
- package/dist/cjs/tools/preload_memory_tool.js +109 -0
- package/dist/cjs/tools/skill/list_skills_tool.js +76 -0
- package/dist/cjs/tools/skill/load_skill_resource_tool.js +225 -0
- package/dist/cjs/tools/skill/load_skill_tool.js +108 -0
- package/dist/cjs/tools/skill/run_skill_inline_script_tool.js +146 -0
- package/dist/cjs/tools/skill/run_skill_script_tool.js +224 -0
- package/dist/cjs/tools/skill/skill_toolset.js +163 -0
- package/dist/cjs/tools/tool_confirmation.js +49 -0
- package/dist/cjs/tools/url_context_tool.js +73 -0
- package/dist/cjs/tools/vertex_ai_search_tool.js +127 -0
- package/dist/cjs/tools/vertex_rag_retrieval_tool.js +64 -0
- package/dist/cjs/utils/client_labels.js +56 -0
- package/dist/cjs/utils/env_aware_utils.js +92 -0
- package/dist/cjs/utils/experimental.js +74 -0
- package/dist/cjs/utils/failover_utils.js +93 -0
- package/dist/cjs/utils/file_extension_utils.js +77 -0
- package/dist/cjs/utils/file_utils.js +94 -0
- package/dist/cjs/utils/gemini_schema_util.js +152 -0
- package/dist/cjs/utils/logger.js +173 -0
- package/dist/cjs/utils/model_name.js +90 -0
- package/dist/cjs/utils/object_notation_utils.js +78 -0
- package/dist/cjs/utils/simple_zod_to_json.js +150 -0
- package/dist/cjs/utils/streaming_utils.js +330 -0
- package/dist/cjs/utils/variant_utils.js +49 -0
- package/dist/cjs/version.js +39 -0
- package/dist/esm/a2a/a2a_event.js +271 -0
- package/dist/esm/a2a/a2a_remote_agent.js +155 -0
- package/dist/esm/a2a/a2a_remote_agent_run_processor.js +184 -0
- package/dist/esm/a2a/a2a_remote_agent_utils.js +133 -0
- package/dist/esm/a2a/agent_card.js +342 -0
- package/dist/esm/a2a/agent_executor.js +204 -0
- package/dist/esm/a2a/agent_to_a2a.js +82 -0
- package/dist/esm/a2a/event_converter_utils.js +189 -0
- package/dist/esm/a2a/event_processor_utils.js +161 -0
- package/dist/esm/a2a/executor_context.js +25 -0
- package/dist/esm/a2a/metadata_converter_utils.js +93 -0
- package/dist/esm/a2a/part_converter_utils.js +188 -0
- package/dist/esm/agents/active_streaming_tool.js +16 -0
- package/dist/esm/agents/base_agent.js +268 -0
- package/dist/esm/agents/context.js +152 -0
- package/dist/esm/agents/functions.js +489 -0
- package/dist/esm/agents/instructions.js +82 -0
- package/dist/esm/agents/invocation_context.js +81 -0
- package/dist/esm/agents/live_request_queue.js +108 -0
- package/dist/esm/agents/llm_agent.js +708 -0
- package/dist/esm/agents/loop_agent.js +55 -0
- package/dist/esm/agents/parallel_agent.js +66 -0
- package/dist/esm/agents/processors/agent_transfer_llm_request_processor.js +103 -0
- package/dist/esm/agents/processors/base_llm_processor.js +15 -0
- package/dist/esm/agents/processors/basic_llm_request_processor.js +39 -0
- package/dist/esm/agents/processors/code_execution_request_processor.js +368 -0
- package/dist/esm/agents/processors/content_processor_utils.js +319 -0
- package/dist/esm/agents/processors/content_request_processor.js +61 -0
- package/dist/esm/agents/processors/context_compactor_request_processor.js +42 -0
- package/dist/esm/agents/processors/identity_llm_request_processor.js +25 -0
- package/dist/esm/agents/processors/instructions_llm_request_processor.js +56 -0
- package/dist/esm/agents/processors/request_confirmation_llm_request_processor.js +142 -0
- package/dist/esm/agents/processors/tool_filter_request_processor.js +44 -0
- package/dist/esm/agents/readonly_context.js +55 -0
- package/dist/esm/agents/routed_agent.js +70 -0
- package/dist/esm/agents/run_config.js +42 -0
- package/dist/esm/agents/sequential_agent.js +77 -0
- package/dist/esm/agents/transcription_entry.js +7 -0
- package/dist/esm/artifacts/base_artifact_service.js +7 -0
- package/dist/esm/artifacts/file_artifact_service.js +480 -0
- package/dist/esm/artifacts/gcs_artifact_service.js +199 -0
- package/dist/esm/artifacts/in_memory_artifact_service.js +152 -0
- package/dist/esm/artifacts/registry.js +30 -0
- package/dist/esm/auth/auth_credential.js +18 -0
- package/dist/esm/auth/auth_handler.js +131 -0
- package/dist/esm/auth/auth_preprocessor.js +155 -0
- package/dist/esm/auth/auth_provider_registry.js +33 -0
- package/dist/esm/auth/auth_schemes.js +33 -0
- package/dist/esm/auth/auth_tool.js +7 -0
- package/dist/esm/auth/base_auth_provider.js +7 -0
- package/dist/esm/auth/credential_service/base_credential_service.js +7 -0
- package/dist/esm/auth/credential_service/in_memory_credential_service.js +35 -0
- package/dist/esm/auth/credential_service/session_state_credential_service.js +23 -0
- package/dist/esm/auth/exchanger/base_credential_exchanger.js +12 -0
- package/dist/esm/auth/exchanger/credential_exchanger_registry.js +31 -0
- package/dist/esm/auth/oauth2/oauth2_credential_exchanger.js +177 -0
- package/dist/esm/auth/oauth2/oauth2_credential_refresher.js +85 -0
- package/dist/esm/auth/oauth2/oauth2_discovery.js +156 -0
- package/dist/esm/auth/oauth2/oauth2_utils.js +87 -0
- package/dist/esm/auth/refresher/base_credential_refresher.js +16 -0
- package/dist/esm/auth/refresher/credential_refresher_registry.js +40 -0
- package/dist/esm/code_executors/base_code_executor.js +63 -0
- package/dist/esm/code_executors/built_in_code_executor.js +45 -0
- package/dist/esm/code_executors/code_execution_utils.js +127 -0
- package/dist/esm/code_executors/code_executor_context.js +170 -0
- package/dist/esm/code_executors/unsafe_local_code_executor.js +205 -0
- package/dist/esm/common.js +245 -0
- package/dist/esm/context/base_context_compactor.js +7 -0
- package/dist/esm/context/summarizers/base_summarizer.js +7 -0
- package/dist/esm/context/summarizers/llm_summarizer.js +67 -0
- package/dist/esm/context/token_based_context_compactor.js +107 -0
- package/dist/esm/context/truncating_context_compactor.js +30 -0
- package/dist/esm/events/compacted_event.js +24 -0
- package/dist/esm/events/event.js +110 -0
- package/dist/esm/events/event_actions.js +54 -0
- package/dist/esm/events/structured_events.js +76 -0
- package/dist/esm/examples/base_example_provider.js +27 -0
- package/dist/esm/examples/example.js +7 -0
- package/dist/esm/examples/example_util.js +80 -0
- package/dist/esm/features/feature_registry.js +107 -0
- package/dist/esm/index.js +50 -0
- package/dist/esm/index_web.js +8 -0
- package/dist/esm/memory/base_memory_service.js +7 -0
- package/dist/esm/memory/in_memory_memory_service.js +71 -0
- package/dist/esm/memory/memory_entry.js +7 -0
- package/dist/esm/models/apigee_llm.js +154 -0
- package/dist/esm/models/base_llm.js +73 -0
- package/dist/esm/models/base_llm_connection.js +7 -0
- package/dist/esm/models/gemini_llm_connection.js +105 -0
- package/dist/esm/models/google_llm.js +265 -0
- package/dist/esm/models/llm_request.js +52 -0
- package/dist/esm/models/llm_response.js +45 -0
- package/dist/esm/models/registry.js +95 -0
- package/dist/esm/models/routed_llm.js +73 -0
- package/dist/esm/plugins/base_plugin.js +268 -0
- package/dist/esm/plugins/logging_plugin.js +235 -0
- package/dist/esm/plugins/plugin_manager.js +282 -0
- package/dist/esm/plugins/security_plugin.js +124 -0
- package/dist/esm/runner/in_memory_runner.js +30 -0
- package/dist/esm/runner/runner.js +360 -0
- package/dist/esm/sessions/base_session_service.js +91 -0
- package/dist/esm/sessions/database_session_service.js +355 -0
- package/dist/esm/sessions/db/operations.js +96 -0
- package/dist/esm/sessions/db/schema.js +174 -0
- package/dist/esm/sessions/in_memory_session_service.js +184 -0
- package/dist/esm/sessions/registry.js +27 -0
- package/dist/esm/sessions/session.js +20 -0
- package/dist/esm/sessions/state.js +73 -0
- package/dist/esm/skills/loader.js +244 -0
- package/dist/esm/skills/prompt.js +30 -0
- package/dist/esm/skills/skill.js +49 -0
- package/dist/esm/telemetry/google_cloud.js +54 -0
- package/dist/esm/telemetry/setup.js +83 -0
- package/dist/esm/telemetry/tracing.js +219 -0
- package/dist/esm/tools/agent_tool.js +190 -0
- package/dist/esm/tools/base_tool.js +93 -0
- package/dist/esm/tools/base_toolset.js +57 -0
- package/dist/esm/tools/exit_loop_tool.js +34 -0
- package/dist/esm/tools/forwarding_artifact_service.js +59 -0
- package/dist/esm/tools/function_tool.js +80 -0
- package/dist/esm/tools/google_maps_grounding_tool.js +54 -0
- package/dist/esm/tools/google_search_tool.js +51 -0
- package/dist/esm/tools/load_artifacts_tool.js +161 -0
- package/dist/esm/tools/load_memory_tool.js +80 -0
- package/dist/esm/tools/long_running_tool.js +37 -0
- package/dist/esm/tools/mcp/mcp_session_manager.js +53 -0
- package/dist/esm/tools/mcp/mcp_tool.js +40 -0
- package/dist/esm/tools/mcp/mcp_toolset.js +52 -0
- package/dist/esm/tools/preload_memory_tool.js +82 -0
- package/dist/esm/tools/skill/list_skills_tool.js +50 -0
- package/dist/esm/tools/skill/load_skill_resource_tool.js +191 -0
- package/dist/esm/tools/skill/load_skill_tool.js +82 -0
- package/dist/esm/tools/skill/run_skill_inline_script_tool.js +120 -0
- package/dist/esm/tools/skill/run_skill_script_tool.js +192 -0
- package/dist/esm/tools/skill/skill_toolset.js +137 -0
- package/dist/esm/tools/tool_confirmation.js +21 -0
- package/dist/esm/tools/url_context_tool.js +44 -0
- package/dist/esm/tools/vertex_ai_search_tool.js +103 -0
- package/dist/esm/tools/vertex_rag_retrieval_tool.js +36 -0
- package/dist/esm/utils/client_labels.js +28 -0
- package/dist/esm/utils/env_aware_utils.js +59 -0
- package/dist/esm/utils/experimental.js +46 -0
- package/dist/esm/utils/failover_utils.js +65 -0
- package/dist/esm/utils/file_extension_utils.js +51 -0
- package/dist/esm/utils/file_utils.js +56 -0
- package/dist/esm/utils/gemini_schema_util.js +124 -0
- package/dist/esm/utils/logger.js +130 -0
- package/dist/esm/utils/model_name.js +58 -0
- package/dist/esm/utils/object_notation_utils.js +49 -0
- package/dist/esm/utils/simple_zod_to_json.js +123 -0
- package/dist/esm/utils/streaming_utils.js +304 -0
- package/dist/esm/utils/variant_utils.js +20 -0
- package/dist/esm/version.js +11 -0
- package/dist/types/a2a/a2a_event.d.ts +139 -0
- package/dist/types/a2a/a2a_remote_agent.d.ts +67 -0
- package/dist/types/a2a/a2a_remote_agent_run_processor.d.ts +31 -0
- package/dist/types/a2a/a2a_remote_agent_utils.d.ts +38 -0
- package/dist/types/a2a/agent_card.d.ts +23 -0
- package/dist/types/a2a/agent_executor.d.ts +52 -0
- package/dist/types/a2a/agent_to_a2a.d.ts +45 -0
- package/dist/types/a2a/event_converter_utils.d.ts +20 -0
- package/dist/types/a2a/event_processor_utils.d.ts +24 -0
- package/dist/types/a2a/executor_context.d.ts +33 -0
- package/dist/types/a2a/metadata_converter_utils.d.ts +63 -0
- package/dist/types/a2a/part_converter_utils.d.ts +48 -0
- package/dist/types/agents/active_streaming_tool.d.ts +29 -0
- package/dist/types/agents/base_agent.d.ts +194 -0
- package/dist/types/agents/context.d.ts +99 -0
- package/dist/types/agents/functions.d.ts +112 -0
- package/dist/types/agents/instructions.d.ts +32 -0
- package/dist/types/agents/invocation_context.d.ts +162 -0
- package/dist/types/agents/live_request_queue.d.ts +67 -0
- package/dist/types/agents/llm_agent.d.ts +351 -0
- package/dist/types/agents/loop_agent.d.ts +47 -0
- package/dist/types/agents/parallel_agent.d.ts +37 -0
- package/dist/types/agents/processors/agent_transfer_llm_request_processor.d.ts +18 -0
- package/dist/types/agents/processors/base_llm_processor.d.ts +27 -0
- package/dist/types/agents/processors/basic_llm_request_processor.d.ts +13 -0
- package/dist/types/agents/processors/code_execution_request_processor.d.ts +34 -0
- package/dist/types/agents/processors/content_processor_utils.d.ts +36 -0
- package/dist/types/agents/processors/content_request_processor.d.ts +13 -0
- package/dist/types/agents/processors/context_compactor_request_processor.d.ts +22 -0
- package/dist/types/agents/processors/identity_llm_request_processor.d.ts +13 -0
- package/dist/types/agents/processors/instructions_llm_request_processor.d.ts +16 -0
- package/dist/types/agents/processors/request_confirmation_llm_request_processor.d.ts +13 -0
- package/dist/types/agents/processors/tool_filter_request_processor.d.ts +14 -0
- package/dist/types/agents/readonly_context.d.ts +39 -0
- package/dist/types/agents/routed_agent.d.ts +59 -0
- package/dist/types/agents/run_config.d.ts +94 -0
- package/dist/types/agents/sequential_agent.d.ts +42 -0
- package/dist/types/agents/transcription_entry.d.ts +17 -0
- package/dist/types/artifacts/base_artifact_service.d.ts +158 -0
- package/dist/types/artifacts/file_artifact_service.d.ts +47 -0
- package/dist/types/artifacts/gcs_artifact_service.d.ts +18 -0
- package/dist/types/artifacts/in_memory_artifact_service.d.ts +21 -0
- package/dist/types/artifacts/registry.d.ts +7 -0
- package/dist/types/auth/auth_credential.d.ts +244 -0
- package/dist/types/auth/auth_handler.d.ts +28 -0
- package/dist/types/auth/auth_preprocessor.d.ts +12 -0
- package/dist/types/auth/auth_provider_registry.d.ts +27 -0
- package/dist/types/auth/auth_schemes.d.ts +39 -0
- package/dist/types/auth/auth_tool.d.ts +51 -0
- package/dist/types/auth/base_auth_provider.d.ts +20 -0
- package/dist/types/auth/credential_service/base_credential_service.d.ts +27 -0
- package/dist/types/auth/credential_service/in_memory_credential_service.d.ts +19 -0
- package/dist/types/auth/credential_service/session_state_credential_service.d.ts +20 -0
- package/dist/types/auth/exchanger/base_credential_exchanger.d.ts +39 -0
- package/dist/types/auth/exchanger/credential_exchanger_registry.d.ts +28 -0
- package/dist/types/auth/oauth2/oauth2_credential_exchanger.d.ts +26 -0
- package/dist/types/auth/oauth2/oauth2_credential_refresher.d.ts +29 -0
- package/dist/types/auth/oauth2/oauth2_discovery.d.ts +38 -0
- package/dist/types/auth/oauth2/oauth2_utils.d.ts +56 -0
- package/dist/types/auth/refresher/base_credential_refresher.d.ts +38 -0
- package/dist/types/auth/refresher/credential_refresher_registry.d.ts +27 -0
- package/dist/types/code_executors/base_code_executor.d.ts +74 -0
- package/dist/types/code_executors/built_in_code_executor.d.ts +32 -0
- package/dist/types/code_executors/code_execution_utils.d.ts +127 -0
- package/dist/types/code_executors/code_executor_context.d.ts +85 -0
- package/dist/types/code_executors/unsafe_local_code_executor.d.ts +48 -0
- package/dist/types/common.d.ts +137 -0
- package/dist/types/context/base_context_compactor.d.ts +24 -0
- package/dist/types/context/summarizers/base_summarizer.d.ts +19 -0
- package/dist/types/context/summarizers/llm_summarizer.d.ts +23 -0
- package/dist/types/context/token_based_context_compactor.d.ts +33 -0
- package/dist/types/context/truncating_context_compactor.d.ts +24 -0
- package/dist/types/events/compacted_event.d.ts +33 -0
- package/dist/types/events/event.d.ts +102 -0
- package/dist/types/events/event_actions.d.ts +74 -0
- package/dist/types/events/structured_events.d.ts +106 -0
- package/dist/types/examples/base_example_provider.d.ts +36 -0
- package/dist/types/examples/example.d.ts +19 -0
- package/dist/types/examples/example_util.d.ts +13 -0
- package/dist/types/features/feature_registry.d.ts +66 -0
- package/dist/types/index.d.ts +28 -0
- package/dist/types/index_web.d.ts +6 -0
- package/dist/types/memory/base_memory_service.d.ts +53 -0
- package/dist/types/memory/in_memory_memory_service.d.ts +18 -0
- package/dist/types/memory/memory_entry.d.ts +30 -0
- package/dist/types/models/apigee_llm.d.ts +59 -0
- package/dist/types/models/base_llm.d.ts +66 -0
- package/dist/types/models/base_llm_connection.d.ts +51 -0
- package/dist/types/models/gemini_llm_connection.d.ts +54 -0
- package/dist/types/models/google_llm.d.ts +90 -0
- package/dist/types/models/llm_request.d.ts +53 -0
- package/dist/types/models/llm_response.d.ts +83 -0
- package/dist/types/models/registry.d.ts +49 -0
- package/dist/types/models/routed_llm.d.ts +38 -0
- package/dist/types/plugins/base_plugin.d.ts +368 -0
- package/dist/types/plugins/logging_plugin.d.ts +103 -0
- package/dist/types/plugins/plugin_manager.d.ts +175 -0
- package/dist/types/plugins/security_plugin.d.ts +60 -0
- package/dist/types/runner/in_memory_runner.d.ts +15 -0
- package/dist/types/runner/runner.d.ts +117 -0
- package/dist/types/sessions/base_session_service.d.ts +149 -0
- package/dist/types/sessions/database_session_service.d.ts +32 -0
- package/dist/types/sessions/db/operations.d.ts +28 -0
- package/dist/types/sessions/db/schema.d.ts +45 -0
- package/dist/types/sessions/in_memory_session_service.d.ts +30 -0
- package/dist/types/sessions/registry.d.ts +7 -0
- package/dist/types/sessions/session.d.ts +46 -0
- package/dist/types/sessions/state.d.ts +57 -0
- package/dist/types/skills/loader.d.ts +38 -0
- package/dist/types/skills/prompt.d.ts +13 -0
- package/dist/types/skills/skill.d.ts +48 -0
- package/dist/types/telemetry/google_cloud.d.ts +9 -0
- package/dist/types/telemetry/setup.d.ts +48 -0
- package/dist/types/telemetry/tracing.d.ts +112 -0
- package/dist/types/tools/agent_tool.d.ts +73 -0
- package/dist/types/tools/base_tool.d.ts +98 -0
- package/dist/types/tools/base_toolset.d.ts +74 -0
- package/dist/types/tools/exit_loop_tool.d.ts +24 -0
- package/dist/types/tools/forwarding_artifact_service.d.ts +23 -0
- package/dist/types/tools/function_tool.d.ts +62 -0
- package/dist/types/tools/google_maps_grounding_tool.d.ts +22 -0
- package/dist/types/tools/google_search_tool.d.ts +17 -0
- package/dist/types/tools/load_artifacts_tool.d.ts +21 -0
- package/dist/types/tools/load_memory_tool.d.ts +22 -0
- package/dist/types/tools/long_running_tool.d.ts +18 -0
- package/dist/types/tools/mcp/mcp_session_manager.d.ts +64 -0
- package/dist/types/tools/mcp/mcp_tool.d.ts +36 -0
- package/dist/types/tools/mcp/mcp_toolset.d.ts +44 -0
- package/dist/types/tools/preload_memory_tool.d.ts +23 -0
- package/dist/types/tools/skill/list_skills_tool.d.ts +14 -0
- package/dist/types/tools/skill/load_skill_resource_tool.d.ts +15 -0
- package/dist/types/tools/skill/load_skill_tool.d.ts +14 -0
- package/dist/types/tools/skill/run_skill_inline_script_tool.d.ts +14 -0
- package/dist/types/tools/skill/run_skill_script_tool.d.ts +17 -0
- package/dist/types/tools/skill/skill_toolset.d.ts +28 -0
- package/dist/types/tools/tool_confirmation.d.ts +25 -0
- package/dist/types/tools/url_context_tool.d.ts +17 -0
- package/dist/types/tools/vertex_ai_search_tool.d.ts +55 -0
- package/dist/types/tools/vertex_rag_retrieval_tool.d.ts +42 -0
- package/dist/types/utils/client_labels.d.ts +9 -0
- package/dist/types/utils/env_aware_utils.d.ts +38 -0
- package/dist/types/utils/experimental.d.ts +11 -0
- package/dist/types/utils/failover_utils.d.ts +17 -0
- package/dist/types/utils/file_extension_utils.d.ts +21 -0
- package/dist/types/utils/file_utils.d.ts +11 -0
- package/dist/types/utils/gemini_schema_util.d.ts +15 -0
- package/dist/types/utils/logger.d.ts +38 -0
- package/dist/types/utils/model_name.d.ts +38 -0
- package/dist/types/utils/object_notation_utils.d.ts +21 -0
- package/dist/types/utils/simple_zod_to_json.d.ts +13 -0
- package/dist/types/utils/streaming_utils.d.ts +40 -0
- package/dist/types/utils/variant_utils.d.ts +24 -0
- package/dist/types/version.d.ts +6 -0
- package/dist/web/a2a/a2a_event.js +271 -0
- package/dist/web/a2a/a2a_remote_agent.js +186 -0
- package/dist/web/a2a/a2a_remote_agent_run_processor.js +184 -0
- package/dist/web/a2a/a2a_remote_agent_utils.js +133 -0
- package/dist/web/a2a/agent_card.js +342 -0
- package/dist/web/a2a/agent_executor.js +218 -0
- package/dist/web/a2a/agent_to_a2a.js +82 -0
- package/dist/web/a2a/event_converter_utils.js +203 -0
- package/dist/web/a2a/event_processor_utils.js +170 -0
- package/dist/web/a2a/executor_context.js +25 -0
- package/dist/web/a2a/metadata_converter_utils.js +110 -0
- package/dist/web/a2a/part_converter_utils.js +188 -0
- package/dist/web/agents/active_streaming_tool.js +16 -0
- package/dist/web/agents/base_agent.js +354 -0
- package/dist/web/agents/context.js +152 -0
- package/dist/web/agents/functions.js +520 -0
- package/dist/web/agents/instructions.js +82 -0
- package/dist/web/agents/invocation_context.js +81 -0
- package/dist/web/agents/live_request_queue.js +126 -0
- package/dist/web/agents/llm_agent.js +907 -0
- package/dist/web/agents/loop_agent.js +88 -0
- package/dist/web/agents/parallel_agent.js +101 -0
- package/dist/web/agents/processors/agent_transfer_llm_request_processor.js +102 -0
- package/dist/web/agents/processors/base_llm_processor.js +15 -0
- package/dist/web/agents/processors/basic_llm_request_processor.js +73 -0
- package/dist/web/agents/processors/code_execution_request_processor.js +370 -0
- package/dist/web/agents/processors/content_processor_utils.js +318 -0
- package/dist/web/agents/processors/content_request_processor.js +79 -0
- package/dist/web/agents/processors/context_compactor_request_processor.js +60 -0
- package/dist/web/agents/processors/identity_llm_request_processor.js +43 -0
- package/dist/web/agents/processors/instructions_llm_request_processor.js +74 -0
- package/dist/web/agents/processors/request_confirmation_llm_request_processor.js +160 -0
- package/dist/web/agents/processors/tool_filter_request_processor.js +62 -0
- package/dist/web/agents/readonly_context.js +55 -0
- package/dist/web/agents/routed_agent.js +138 -0
- package/dist/web/agents/run_config.js +57 -0
- package/dist/web/agents/sequential_agent.js +122 -0
- package/dist/web/agents/transcription_entry.js +7 -0
- package/dist/web/artifacts/base_artifact_service.js +7 -0
- package/dist/web/artifacts/file_artifact_service.js +535 -0
- package/dist/web/artifacts/gcs_artifact_service.js +213 -0
- package/dist/web/artifacts/in_memory_artifact_service.js +152 -0
- package/dist/web/artifacts/registry.js +30 -0
- package/dist/web/auth/auth_credential.js +18 -0
- package/dist/web/auth/auth_handler.js +148 -0
- package/dist/web/auth/auth_preprocessor.js +173 -0
- package/dist/web/auth/auth_provider_registry.js +33 -0
- package/dist/web/auth/auth_schemes.js +33 -0
- package/dist/web/auth/auth_tool.js +7 -0
- package/dist/web/auth/base_auth_provider.js +7 -0
- package/dist/web/auth/credential_service/base_credential_service.js +7 -0
- package/dist/web/auth/credential_service/in_memory_credential_service.js +35 -0
- package/dist/web/auth/credential_service/session_state_credential_service.js +23 -0
- package/dist/web/auth/exchanger/base_credential_exchanger.js +12 -0
- package/dist/web/auth/exchanger/credential_exchanger_registry.js +31 -0
- package/dist/web/auth/oauth2/oauth2_credential_exchanger.js +188 -0
- package/dist/web/auth/oauth2/oauth2_credential_refresher.js +102 -0
- package/dist/web/auth/oauth2/oauth2_discovery.js +156 -0
- package/dist/web/auth/oauth2/oauth2_utils.js +87 -0
- package/dist/web/auth/refresher/base_credential_refresher.js +16 -0
- package/dist/web/auth/refresher/credential_refresher_registry.js +40 -0
- package/dist/web/code_executors/base_code_executor.js +63 -0
- package/dist/web/code_executors/built_in_code_executor.js +45 -0
- package/dist/web/code_executors/code_execution_utils.js +124 -0
- package/dist/web/code_executors/code_executor_context.js +170 -0
- package/dist/web/code_executors/unsafe_local_code_executor.js +203 -0
- package/dist/web/common.js +245 -0
- package/dist/web/context/base_context_compactor.js +7 -0
- package/dist/web/context/summarizers/base_summarizer.js +7 -0
- package/dist/web/context/summarizers/llm_summarizer.js +76 -0
- package/dist/web/context/token_based_context_compactor.js +107 -0
- package/dist/web/context/truncating_context_compactor.js +30 -0
- package/dist/web/events/compacted_event.js +42 -0
- package/dist/web/events/event.js +128 -0
- package/dist/web/events/event_actions.js +69 -0
- package/dist/web/events/structured_events.js +76 -0
- package/dist/web/examples/base_example_provider.js +27 -0
- package/dist/web/examples/example.js +7 -0
- package/dist/web/examples/example_util.js +79 -0
- package/dist/web/features/feature_registry.js +107 -0
- package/dist/web/index.js +50 -0
- package/dist/web/index_web.js +8 -0
- package/dist/web/memory/base_memory_service.js +7 -0
- package/dist/web/memory/in_memory_memory_service.js +71 -0
- package/dist/web/memory/memory_entry.js +7 -0
- package/dist/web/models/apigee_llm.js +221 -0
- package/dist/web/models/base_llm.js +73 -0
- package/dist/web/models/base_llm_connection.js +7 -0
- package/dist/web/models/gemini_llm_connection.js +123 -0
- package/dist/web/models/google_llm.js +321 -0
- package/dist/web/models/llm_request.js +52 -0
- package/dist/web/models/llm_response.js +45 -0
- package/dist/web/models/registry.js +95 -0
- package/dist/web/models/routed_llm.js +122 -0
- package/dist/web/plugins/base_plugin.js +268 -0
- package/dist/web/plugins/logging_plugin.js +235 -0
- package/dist/web/plugins/plugin_manager.js +282 -0
- package/dist/web/plugins/security_plugin.js +124 -0
- package/dist/web/runner/in_memory_runner.js +30 -0
- package/dist/web/runner/runner.js +426 -0
- package/dist/web/sessions/base_session_service.js +91 -0
- package/dist/web/sessions/database_session_service.js +373 -0
- package/dist/web/sessions/db/operations.js +96 -0
- package/dist/web/sessions/db/schema.js +174 -0
- package/dist/web/sessions/in_memory_session_service.js +184 -0
- package/dist/web/sessions/registry.js +27 -0
- package/dist/web/sessions/session.js +20 -0
- package/dist/web/sessions/state.js +89 -0
- package/dist/web/skills/loader.js +262 -0
- package/dist/web/skills/prompt.js +30 -0
- package/dist/web/skills/skill.js +67 -0
- package/dist/web/telemetry/google_cloud.js +54 -0
- package/dist/web/telemetry/setup.js +83 -0
- package/dist/web/telemetry/tracing.js +234 -0
- package/dist/web/tools/agent_tool.js +233 -0
- package/dist/web/tools/base_tool.js +93 -0
- package/dist/web/tools/base_toolset.js +57 -0
- package/dist/web/tools/exit_loop_tool.js +34 -0
- package/dist/web/tools/forwarding_artifact_service.js +59 -0
- package/dist/web/tools/function_tool.js +80 -0
- package/dist/web/tools/google_maps_grounding_tool.js +54 -0
- package/dist/web/tools/google_search_tool.js +51 -0
- package/dist/web/tools/load_artifacts_tool.js +152 -0
- package/dist/web/tools/load_memory_tool.js +79 -0
- package/dist/web/tools/long_running_tool.js +54 -0
- package/dist/web/tools/mcp/mcp_session_manager.js +53 -0
- package/dist/web/tools/mcp/mcp_tool.js +40 -0
- package/dist/web/tools/mcp/mcp_toolset.js +70 -0
- package/dist/web/tools/preload_memory_tool.js +77 -0
- package/dist/web/tools/skill/list_skills_tool.js +50 -0
- package/dist/web/tools/skill/load_skill_resource_tool.js +191 -0
- package/dist/web/tools/skill/load_skill_tool.js +82 -0
- package/dist/web/tools/skill/run_skill_inline_script_tool.js +120 -0
- package/dist/web/tools/skill/run_skill_script_tool.js +190 -0
- package/dist/web/tools/skill/skill_toolset.js +123 -0
- package/dist/web/tools/tool_confirmation.js +21 -0
- package/dist/web/tools/url_context_tool.js +44 -0
- package/dist/web/tools/vertex_ai_search_tool.js +103 -0
- package/dist/web/tools/vertex_rag_retrieval_tool.js +36 -0
- package/dist/web/utils/client_labels.js +28 -0
- package/dist/web/utils/env_aware_utils.js +59 -0
- package/dist/web/utils/experimental.js +46 -0
- package/dist/web/utils/failover_utils.js +96 -0
- package/dist/web/utils/file_extension_utils.js +51 -0
- package/dist/web/utils/file_utils.js +74 -0
- package/dist/web/utils/gemini_schema_util.js +155 -0
- package/dist/web/utils/logger.js +130 -0
- package/dist/web/utils/model_name.js +58 -0
- package/dist/web/utils/object_notation_utils.js +49 -0
- package/dist/web/utils/simple_zod_to_json.js +123 -0
- package/dist/web/utils/streaming_utils.js +322 -0
- package/dist/web/utils/variant_utils.js +20 -0
- package/dist/web/version.js +11 -0
- package/package.json +84 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2026 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
var __create = Object.create;
|
|
9
|
+
var __defProp = Object.defineProperty;
|
|
10
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
11
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
12
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
13
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14
|
+
var __export = (target, all) => {
|
|
15
|
+
for (var name in all)
|
|
16
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
17
|
+
};
|
|
18
|
+
var __copyProps = (to, from, except, desc) => {
|
|
19
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
20
|
+
for (let key of __getOwnPropNames(from))
|
|
21
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
22
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
23
|
+
}
|
|
24
|
+
return to;
|
|
25
|
+
};
|
|
26
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
27
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
28
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
29
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
30
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
31
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
32
|
+
mod
|
|
33
|
+
));
|
|
34
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
|
+
var unsafe_local_code_executor_exports = {};
|
|
36
|
+
__export(unsafe_local_code_executor_exports, {
|
|
37
|
+
UnsafeLocalCodeExecutor: () => UnsafeLocalCodeExecutor
|
|
38
|
+
});
|
|
39
|
+
module.exports = __toCommonJS(unsafe_local_code_executor_exports);
|
|
40
|
+
var import_child_process = require("child_process");
|
|
41
|
+
var fs = __toESM(require("node:fs/promises"), 1);
|
|
42
|
+
var os = __toESM(require("node:os"), 1);
|
|
43
|
+
var path = __toESM(require("node:path"), 1);
|
|
44
|
+
var import_file_extension_utils = require("../utils/file_extension_utils.js");
|
|
45
|
+
var import_file_utils = require("../utils/file_utils.js");
|
|
46
|
+
var import_logger = require("../utils/logger.js");
|
|
47
|
+
var import_base_code_executor = require("./base_code_executor.js");
|
|
48
|
+
var import_code_execution_utils = require("./code_execution_utils.js");
|
|
49
|
+
/**
|
|
50
|
+
* @license
|
|
51
|
+
* Copyright 2026 Google LLC
|
|
52
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
53
|
+
*/
|
|
54
|
+
const IS_WINDOWS = os.platform() === "win32";
|
|
55
|
+
async function createTempScriptFile(code, language, shellCommandPath) {
|
|
56
|
+
const tempDir = path.join(
|
|
57
|
+
os.tmpdir(),
|
|
58
|
+
"adk_js_unsafe_code_executor",
|
|
59
|
+
Date.now().toString() + "_" + Math.random().toString(36).slice(2)
|
|
60
|
+
);
|
|
61
|
+
await fs.mkdir(tempDir, { recursive: true });
|
|
62
|
+
const ext = getExtensionForLanguage(language, shellCommandPath) || ".js";
|
|
63
|
+
const filePath = path.join(tempDir, `script${ext}`);
|
|
64
|
+
await fs.writeFile(filePath, code);
|
|
65
|
+
return { filePath, tempDir };
|
|
66
|
+
}
|
|
67
|
+
function getExtensionForLanguage(language, shellCommandPath) {
|
|
68
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.JAVASCRIPT) {
|
|
69
|
+
return ".js";
|
|
70
|
+
}
|
|
71
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.PYTHON) {
|
|
72
|
+
return ".py";
|
|
73
|
+
}
|
|
74
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.POWERSHELL) {
|
|
75
|
+
return ".ps1";
|
|
76
|
+
}
|
|
77
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.WINDOWS_CMD) {
|
|
78
|
+
return ".bat";
|
|
79
|
+
}
|
|
80
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.SHELL) {
|
|
81
|
+
if (IS_WINDOWS) {
|
|
82
|
+
if (shellCommandPath && shellCommandPath.toLowerCase().includes("cmd")) {
|
|
83
|
+
return ".bat";
|
|
84
|
+
}
|
|
85
|
+
return ".ps1";
|
|
86
|
+
}
|
|
87
|
+
return ".sh";
|
|
88
|
+
}
|
|
89
|
+
return void 0;
|
|
90
|
+
}
|
|
91
|
+
class UnsafeLocalCodeExecutor extends import_base_code_executor.BaseCodeExecutor {
|
|
92
|
+
constructor(options = {}) {
|
|
93
|
+
var _a, _b, _c, _d;
|
|
94
|
+
super();
|
|
95
|
+
this.timeoutSeconds = (_a = options.timeoutSeconds) != null ? _a : 30;
|
|
96
|
+
this.nodeCommandPath = (_b = options.commandPath) != null ? _b : process.execPath;
|
|
97
|
+
this.pythonCommandPath = (_c = options.pythonCommandPath) != null ? _c : IS_WINDOWS ? "python" : "python3";
|
|
98
|
+
this.shellCommandPath = (_d = options.shellCommandPath) != null ? _d : IS_WINDOWS ? "powershell" : "bash";
|
|
99
|
+
this.stateful = false;
|
|
100
|
+
this.optimizeDataFile = false;
|
|
101
|
+
}
|
|
102
|
+
async executeCode(params) {
|
|
103
|
+
var _a;
|
|
104
|
+
const { code, language } = params.codeExecutionInput;
|
|
105
|
+
if (![
|
|
106
|
+
import_code_execution_utils.CodeExecutionLanguage.JAVASCRIPT,
|
|
107
|
+
import_code_execution_utils.CodeExecutionLanguage.PYTHON,
|
|
108
|
+
import_code_execution_utils.CodeExecutionLanguage.SHELL,
|
|
109
|
+
import_code_execution_utils.CodeExecutionLanguage.WINDOWS_CMD,
|
|
110
|
+
import_code_execution_utils.CodeExecutionLanguage.POWERSHELL
|
|
111
|
+
].includes(language)) {
|
|
112
|
+
return {
|
|
113
|
+
stdout: "",
|
|
114
|
+
stderr: `Unsupported language: ${language}`,
|
|
115
|
+
outputFiles: []
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
import_logger.logger.warn(
|
|
119
|
+
"\n====================================================================================\n\u26A0\uFE0F DANGER: UnsafeLocalCodeExecutor is executing code locally on this host machine!\nThis component provides NO sandboxing or container isolation. Arbitrary shell/script\ncommands generated by AI or untrusted sources could lead to serious security risks.\n====================================================================================\n"
|
|
120
|
+
);
|
|
121
|
+
let tempDir;
|
|
122
|
+
try {
|
|
123
|
+
const res = await createTempScriptFile(
|
|
124
|
+
code,
|
|
125
|
+
language,
|
|
126
|
+
this.shellCommandPath
|
|
127
|
+
);
|
|
128
|
+
const filePath = res.filePath;
|
|
129
|
+
tempDir = res.tempDir;
|
|
130
|
+
if (params.codeExecutionInput.inputFiles) {
|
|
131
|
+
await (0, import_file_utils.materializeFiles)(params.codeExecutionInput.inputFiles, tempDir);
|
|
132
|
+
}
|
|
133
|
+
let command = this.nodeCommandPath;
|
|
134
|
+
let args = [filePath];
|
|
135
|
+
if (language === import_code_execution_utils.CodeExecutionLanguage.PYTHON) {
|
|
136
|
+
command = this.pythonCommandPath;
|
|
137
|
+
} else if (language === import_code_execution_utils.CodeExecutionLanguage.SHELL) {
|
|
138
|
+
command = this.shellCommandPath;
|
|
139
|
+
if (this.shellCommandPath.toLowerCase().includes("powershell")) {
|
|
140
|
+
args = ["-NoLogo", "-ExecutionPolicy", "Bypass", "-File", filePath];
|
|
141
|
+
} else if (this.shellCommandPath.toLowerCase().includes("cmd")) {
|
|
142
|
+
args = ["/c", filePath];
|
|
143
|
+
}
|
|
144
|
+
} else if (language === import_code_execution_utils.CodeExecutionLanguage.POWERSHELL) {
|
|
145
|
+
command = IS_WINDOWS ? "powershell" : "pwsh";
|
|
146
|
+
args = ["-NoLogo", "-ExecutionPolicy", "Bypass", "-File", filePath];
|
|
147
|
+
} else if (language === import_code_execution_utils.CodeExecutionLanguage.WINDOWS_CMD) {
|
|
148
|
+
command = "cmd.exe";
|
|
149
|
+
args = ["/c", filePath];
|
|
150
|
+
}
|
|
151
|
+
if (params.codeExecutionInput.args) {
|
|
152
|
+
if (Array.isArray(params.codeExecutionInput.args)) {
|
|
153
|
+
args.push(...params.codeExecutionInput.args);
|
|
154
|
+
} else {
|
|
155
|
+
for (const [k, v] of Object.entries(params.codeExecutionInput.args)) {
|
|
156
|
+
args.push(`--${k}`, String(v));
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
const executionResult = await new Promise((resolve) => {
|
|
161
|
+
const child = (0, import_child_process.spawn)(command, args, {
|
|
162
|
+
timeout: this.timeoutSeconds * 1e3,
|
|
163
|
+
killSignal: "SIGKILL",
|
|
164
|
+
cwd: tempDir
|
|
165
|
+
});
|
|
166
|
+
let stdout = "";
|
|
167
|
+
let stderr = "";
|
|
168
|
+
if (child.stdout) {
|
|
169
|
+
child.stdout.on("data", (data) => {
|
|
170
|
+
stdout += data.toString();
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
if (child.stderr) {
|
|
174
|
+
child.stderr.on("data", (data) => {
|
|
175
|
+
stderr += data.toString();
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
child.on("error", (err) => {
|
|
179
|
+
stderr += `Process error: ${err.message}
|
|
180
|
+
`;
|
|
181
|
+
});
|
|
182
|
+
child.on("close", (exitCode, signal) => {
|
|
183
|
+
if (signal === "SIGKILL" || signal === "SIGTERM") {
|
|
184
|
+
stderr += `
|
|
185
|
+
Code execution timed out after ${this.timeoutSeconds} seconds.`;
|
|
186
|
+
} else if (exitCode !== 0 && exitCode !== null) {
|
|
187
|
+
if (!stderr) {
|
|
188
|
+
stderr = `Exit code ${exitCode}`;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
resolve({ stdout, stderr, exitCode });
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
const outputFiles = [];
|
|
195
|
+
try {
|
|
196
|
+
const allFiles = await fs.readdir(tempDir, { recursive: true });
|
|
197
|
+
for (const relativeFilePath of allFiles) {
|
|
198
|
+
const fullPath = path.join(tempDir, relativeFilePath);
|
|
199
|
+
const stat = await fs.lstat(fullPath);
|
|
200
|
+
if (!stat.isFile()) {
|
|
201
|
+
continue;
|
|
202
|
+
}
|
|
203
|
+
if (relativeFilePath === path.basename(filePath)) {
|
|
204
|
+
continue;
|
|
205
|
+
}
|
|
206
|
+
const isInputFile = (_a = params.codeExecutionInput.inputFiles) == null ? void 0 : _a.some(
|
|
207
|
+
(f) => f.name === relativeFilePath
|
|
208
|
+
);
|
|
209
|
+
if (isInputFile) {
|
|
210
|
+
continue;
|
|
211
|
+
}
|
|
212
|
+
const fileContent = await fs.readFile(fullPath);
|
|
213
|
+
const { mimeType, encoding } = (0, import_file_extension_utils.getMimeTypeAndEncoding)(
|
|
214
|
+
path.extname(relativeFilePath)
|
|
215
|
+
);
|
|
216
|
+
outputFiles.push({
|
|
217
|
+
name: relativeFilePath,
|
|
218
|
+
content: fileContent.toString(encoding),
|
|
219
|
+
contentEncoding: encoding,
|
|
220
|
+
mimeType
|
|
221
|
+
});
|
|
222
|
+
}
|
|
223
|
+
} catch (e) {
|
|
224
|
+
import_logger.logger.error(`Error scanning output files: ${e}`);
|
|
225
|
+
}
|
|
226
|
+
return {
|
|
227
|
+
stdout: executionResult.stdout,
|
|
228
|
+
stderr: executionResult.stderr,
|
|
229
|
+
outputFiles
|
|
230
|
+
};
|
|
231
|
+
} finally {
|
|
232
|
+
if (tempDir) {
|
|
233
|
+
await fs.rm(tempDir, { recursive: true, force: true });
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
239
|
+
0 && (module.exports = {
|
|
240
|
+
UnsafeLocalCodeExecutor
|
|
241
|
+
});
|
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2026 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
var __defProp = Object.defineProperty;
|
|
9
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
11
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
|
+
var __export = (target, all) => {
|
|
13
|
+
for (var name in all)
|
|
14
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
15
|
+
};
|
|
16
|
+
var __copyProps = (to, from, except, desc) => {
|
|
17
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
18
|
+
for (let key of __getOwnPropNames(from))
|
|
19
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
20
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
21
|
+
}
|
|
22
|
+
return to;
|
|
23
|
+
};
|
|
24
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
25
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
26
|
+
var common_exports = {};
|
|
27
|
+
__export(common_exports, {
|
|
28
|
+
ActiveStreamingTool: () => import_active_streaming_tool.ActiveStreamingTool,
|
|
29
|
+
Agent: () => import_llm_agent.LlmAgent,
|
|
30
|
+
AgentTool: () => import_agent_tool.AgentTool,
|
|
31
|
+
AgentTransferLlmRequestProcessor: () => import_agent_transfer_llm_request_processor.AgentTransferLlmRequestProcessor,
|
|
32
|
+
ApigeeLlm: () => import_apigee_llm.ApigeeLlm,
|
|
33
|
+
AuthCredentialTypes: () => import_auth_credential.AuthCredentialTypes,
|
|
34
|
+
AuthHandler: () => import_auth_handler.AuthHandler,
|
|
35
|
+
AuthProviderRegistry: () => import_auth_provider_registry.AuthProviderRegistry,
|
|
36
|
+
BaseAgent: () => import_base_agent.BaseAgent,
|
|
37
|
+
BaseCodeExecutor: () => import_base_code_executor.BaseCodeExecutor,
|
|
38
|
+
BaseExampleProvider: () => import_base_example_provider.BaseExampleProvider,
|
|
39
|
+
BaseLlm: () => import_base_llm.BaseLlm,
|
|
40
|
+
BaseLlmRequestProcessor: () => import_base_llm_processor.BaseLlmRequestProcessor,
|
|
41
|
+
BaseLlmResponseProcessor: () => import_base_llm_processor.BaseLlmResponseProcessor,
|
|
42
|
+
BasePlugin: () => import_base_plugin.BasePlugin,
|
|
43
|
+
BaseSessionService: () => import_base_session_service.BaseSessionService,
|
|
44
|
+
BaseTool: () => import_base_tool.BaseTool,
|
|
45
|
+
BaseToolset: () => import_base_toolset.BaseToolset,
|
|
46
|
+
BuiltInCodeExecutor: () => import_built_in_code_executor.BuiltInCodeExecutor,
|
|
47
|
+
CONTENT_REQUEST_PROCESSOR: () => import_content_request_processor.CONTENT_REQUEST_PROCESSOR,
|
|
48
|
+
CodeExecutionLanguage: () => import_code_execution_utils.CodeExecutionLanguage,
|
|
49
|
+
ContentRequestProcessor: () => import_content_request_processor.ContentRequestProcessor,
|
|
50
|
+
Context: () => import_context.Context,
|
|
51
|
+
ContextCompactionTrigger: () => import_base_plugin.ContextCompactionTrigger,
|
|
52
|
+
ContextCompactorRequestProcessor: () => import_context_compactor_request_processor.ContextCompactorRequestProcessor,
|
|
53
|
+
CredentialExchangeError: () => import_base_credential_exchanger.CredentialExchangeError,
|
|
54
|
+
CredentialRefresherRegistry: () => import_credential_refresher_registry.CredentialRefresherRegistry,
|
|
55
|
+
EXIT_LOOP: () => import_exit_loop_tool.EXIT_LOOP,
|
|
56
|
+
EventType: () => import_structured_events.EventType,
|
|
57
|
+
ExitLoopTool: () => import_exit_loop_tool.ExitLoopTool,
|
|
58
|
+
FileContentEncoding: () => import_code_execution_utils.FileContentEncoding,
|
|
59
|
+
FunctionTool: () => import_function_tool.FunctionTool,
|
|
60
|
+
GOOGLE_MAPS_GROUNDING: () => import_google_maps_grounding_tool.GOOGLE_MAPS_GROUNDING,
|
|
61
|
+
GOOGLE_SEARCH: () => import_google_search_tool.GOOGLE_SEARCH,
|
|
62
|
+
Gemini: () => import_google_llm.Gemini,
|
|
63
|
+
GoogleLLMVariant: () => import_variant_utils.GoogleLLMVariant,
|
|
64
|
+
GoogleMapsGroundingTool: () => import_google_maps_grounding_tool.GoogleMapsGroundingTool,
|
|
65
|
+
GoogleSearchTool: () => import_google_search_tool.GoogleSearchTool,
|
|
66
|
+
InMemoryArtifactService: () => import_in_memory_artifact_service.InMemoryArtifactService,
|
|
67
|
+
InMemoryCredentialService: () => import_in_memory_credential_service.InMemoryCredentialService,
|
|
68
|
+
InMemoryMemoryService: () => import_in_memory_memory_service.InMemoryMemoryService,
|
|
69
|
+
InMemoryPolicyEngine: () => import_security_plugin.InMemoryPolicyEngine,
|
|
70
|
+
InMemoryRunner: () => import_in_memory_runner.InMemoryRunner,
|
|
71
|
+
InMemorySessionService: () => import_in_memory_session_service.InMemorySessionService,
|
|
72
|
+
InvocationContext: () => import_invocation_context.InvocationContext,
|
|
73
|
+
LLMRegistry: () => import_registry.LLMRegistry,
|
|
74
|
+
LOAD_ARTIFACTS: () => import_load_artifacts_tool.LOAD_ARTIFACTS,
|
|
75
|
+
LOAD_MEMORY: () => import_load_memory_tool.LOAD_MEMORY,
|
|
76
|
+
ListSkillsTool: () => import_list_skills_tool.ListSkillsTool,
|
|
77
|
+
LiveRequestQueue: () => import_live_request_queue.LiveRequestQueue,
|
|
78
|
+
LlmAgent: () => import_llm_agent.LlmAgent,
|
|
79
|
+
LlmSummarizer: () => import_llm_summarizer.LlmSummarizer,
|
|
80
|
+
LoadArtifactsTool: () => import_load_artifacts_tool.LoadArtifactsTool,
|
|
81
|
+
LoadMemoryTool: () => import_load_memory_tool.LoadMemoryTool,
|
|
82
|
+
LoadSkillResourceTool: () => import_load_skill_resource_tool.LoadSkillResourceTool,
|
|
83
|
+
LoadSkillTool: () => import_load_skill_tool.LoadSkillTool,
|
|
84
|
+
LogLevel: () => import_logger.LogLevel,
|
|
85
|
+
LoggingPlugin: () => import_logging_plugin.LoggingPlugin,
|
|
86
|
+
LongRunningFunctionTool: () => import_long_running_tool.LongRunningFunctionTool,
|
|
87
|
+
LoopAgent: () => import_loop_agent.LoopAgent,
|
|
88
|
+
OAuth2CredentialExchanger: () => import_oauth2_credential_exchanger.OAuth2CredentialExchanger,
|
|
89
|
+
OAuth2DiscoveryManager: () => import_oauth2_discovery.OAuth2DiscoveryManager,
|
|
90
|
+
OAuthGrantType: () => import_auth_schemes.OAuthGrantType,
|
|
91
|
+
PRELOAD_MEMORY: () => import_preload_memory_tool.PRELOAD_MEMORY,
|
|
92
|
+
ParallelAgent: () => import_parallel_agent.ParallelAgent,
|
|
93
|
+
PluginManager: () => import_plugin_manager.PluginManager,
|
|
94
|
+
PolicyOutcome: () => import_security_plugin.PolicyOutcome,
|
|
95
|
+
PreloadMemoryTool: () => import_preload_memory_tool.PreloadMemoryTool,
|
|
96
|
+
REQUEST_CONFIRMATION_FUNCTION_CALL_NAME: () => import_security_plugin.REQUEST_CONFIRMATION_FUNCTION_CALL_NAME,
|
|
97
|
+
ReadonlyContext: () => import_readonly_context.ReadonlyContext,
|
|
98
|
+
RoutedAgent: () => import_routed_agent.RoutedAgent,
|
|
99
|
+
RoutedLlm: () => import_routed_llm.RoutedLlm,
|
|
100
|
+
Runner: () => import_runner.Runner,
|
|
101
|
+
SecurityPlugin: () => import_security_plugin.SecurityPlugin,
|
|
102
|
+
SequentialAgent: () => import_sequential_agent.SequentialAgent,
|
|
103
|
+
SessionStateCredentialService: () => import_session_state_credential_service.SessionStateCredentialService,
|
|
104
|
+
SkillToolset: () => import_skill_toolset.SkillToolset,
|
|
105
|
+
State: () => import_state.State,
|
|
106
|
+
StreamingMode: () => import_run_config.StreamingMode,
|
|
107
|
+
TokenBasedContextCompactor: () => import_token_based_context_compactor.TokenBasedContextCompactor,
|
|
108
|
+
ToolConfirmation: () => import_tool_confirmation.ToolConfirmation,
|
|
109
|
+
TruncatingContextCompactor: () => import_truncating_context_compactor.TruncatingContextCompactor,
|
|
110
|
+
URL_CONTEXT: () => import_url_context_tool.URL_CONTEXT,
|
|
111
|
+
UrlContextTool: () => import_url_context_tool.UrlContextTool,
|
|
112
|
+
VertexAiSearchTool: () => import_vertex_ai_search_tool.VertexAiSearchTool,
|
|
113
|
+
VertexRagRetrievalTool: () => import_vertex_rag_retrieval_tool.VertexRagRetrievalTool,
|
|
114
|
+
createEvent: () => import_event.createEvent,
|
|
115
|
+
createEventActions: () => import_event_actions.createEventActions,
|
|
116
|
+
createSession: () => import_session.createSession,
|
|
117
|
+
functionsExportedForTestingOnly: () => import_functions.functionsExportedForTestingOnly,
|
|
118
|
+
geminiInitParams: () => import_google_llm.geminiInitParams,
|
|
119
|
+
getAskUserConfirmationFunctionCalls: () => import_security_plugin.getAskUserConfirmationFunctionCalls,
|
|
120
|
+
getFunctionCalls: () => import_event.getFunctionCalls,
|
|
121
|
+
getFunctionResponses: () => import_event.getFunctionResponses,
|
|
122
|
+
getLogger: () => import_logger.getLogger,
|
|
123
|
+
hasTrailingCodeExecutionResult: () => import_event.hasTrailingCodeExecutionResult,
|
|
124
|
+
isAgentTool: () => import_agent_tool.isAgentTool,
|
|
125
|
+
isBaseAgent: () => import_base_agent.isBaseAgent,
|
|
126
|
+
isBaseExampleProvider: () => import_base_example_provider.isBaseExampleProvider,
|
|
127
|
+
isBaseLlm: () => import_base_llm.isBaseLlm,
|
|
128
|
+
isBaseTool: () => import_base_tool.isBaseTool,
|
|
129
|
+
isBaseToolset: () => import_base_toolset.isBaseToolset,
|
|
130
|
+
isCompactedEvent: () => import_compacted_event.isCompactedEvent,
|
|
131
|
+
isFinalResponse: () => import_event.isFinalResponse,
|
|
132
|
+
isFunctionTool: () => import_function_tool.isFunctionTool,
|
|
133
|
+
isGemini2OrAbove: () => import_model_name.isGemini2OrAbove,
|
|
134
|
+
isLlmAgent: () => import_llm_agent.isLlmAgent,
|
|
135
|
+
isLoopAgent: () => import_loop_agent.isLoopAgent,
|
|
136
|
+
isParallelAgent: () => import_parallel_agent.isParallelAgent,
|
|
137
|
+
isRoutedAgent: () => import_routed_agent.isRoutedAgent,
|
|
138
|
+
isRunner: () => import_runner.isRunner,
|
|
139
|
+
isSequentialAgent: () => import_sequential_agent.isSequentialAgent,
|
|
140
|
+
setLogLevel: () => import_logger.setLogLevel,
|
|
141
|
+
setLogger: () => import_logger.setLogger,
|
|
142
|
+
stringifyContent: () => import_event.stringifyContent,
|
|
143
|
+
toStructuredEvents: () => import_structured_events.toStructuredEvents,
|
|
144
|
+
version: () => import_version.version,
|
|
145
|
+
zodObjectToSchema: () => import_simple_zod_to_json.zodObjectToSchema
|
|
146
|
+
});
|
|
147
|
+
module.exports = __toCommonJS(common_exports);
|
|
148
|
+
var import_active_streaming_tool = require("./agents/active_streaming_tool.js");
|
|
149
|
+
var import_base_agent = require("./agents/base_agent.js");
|
|
150
|
+
var import_context = require("./agents/context.js");
|
|
151
|
+
var import_functions = require("./agents/functions.js");
|
|
152
|
+
var import_invocation_context = require("./agents/invocation_context.js");
|
|
153
|
+
var import_live_request_queue = require("./agents/live_request_queue.js");
|
|
154
|
+
var import_llm_agent = require("./agents/llm_agent.js");
|
|
155
|
+
var import_loop_agent = require("./agents/loop_agent.js");
|
|
156
|
+
var import_parallel_agent = require("./agents/parallel_agent.js");
|
|
157
|
+
var import_agent_transfer_llm_request_processor = require("./agents/processors/agent_transfer_llm_request_processor.js");
|
|
158
|
+
var import_base_llm_processor = require("./agents/processors/base_llm_processor.js");
|
|
159
|
+
var import_content_request_processor = require("./agents/processors/content_request_processor.js");
|
|
160
|
+
var import_context_compactor_request_processor = require("./agents/processors/context_compactor_request_processor.js");
|
|
161
|
+
var import_readonly_context = require("./agents/readonly_context.js");
|
|
162
|
+
var import_routed_agent = require("./agents/routed_agent.js");
|
|
163
|
+
var import_run_config = require("./agents/run_config.js");
|
|
164
|
+
var import_sequential_agent = require("./agents/sequential_agent.js");
|
|
165
|
+
var import_in_memory_artifact_service = require("./artifacts/in_memory_artifact_service.js");
|
|
166
|
+
var import_auth_credential = require("./auth/auth_credential.js");
|
|
167
|
+
var import_auth_handler = require("./auth/auth_handler.js");
|
|
168
|
+
var import_auth_provider_registry = require("./auth/auth_provider_registry.js");
|
|
169
|
+
var import_auth_schemes = require("./auth/auth_schemes.js");
|
|
170
|
+
var import_in_memory_credential_service = require("./auth/credential_service/in_memory_credential_service.js");
|
|
171
|
+
var import_session_state_credential_service = require("./auth/credential_service/session_state_credential_service.js");
|
|
172
|
+
var import_base_credential_exchanger = require("./auth/exchanger/base_credential_exchanger.js");
|
|
173
|
+
var import_oauth2_credential_exchanger = require("./auth/oauth2/oauth2_credential_exchanger.js");
|
|
174
|
+
var import_oauth2_discovery = require("./auth/oauth2/oauth2_discovery.js");
|
|
175
|
+
var import_credential_refresher_registry = require("./auth/refresher/credential_refresher_registry.js");
|
|
176
|
+
var import_base_code_executor = require("./code_executors/base_code_executor.js");
|
|
177
|
+
var import_built_in_code_executor = require("./code_executors/built_in_code_executor.js");
|
|
178
|
+
var import_code_execution_utils = require("./code_executors/code_execution_utils.js");
|
|
179
|
+
var import_llm_summarizer = require("./context/summarizers/llm_summarizer.js");
|
|
180
|
+
var import_token_based_context_compactor = require("./context/token_based_context_compactor.js");
|
|
181
|
+
var import_truncating_context_compactor = require("./context/truncating_context_compactor.js");
|
|
182
|
+
var import_compacted_event = require("./events/compacted_event.js");
|
|
183
|
+
var import_event = require("./events/event.js");
|
|
184
|
+
var import_event_actions = require("./events/event_actions.js");
|
|
185
|
+
var import_structured_events = require("./events/structured_events.js");
|
|
186
|
+
var import_base_example_provider = require("./examples/base_example_provider.js");
|
|
187
|
+
var import_in_memory_memory_service = require("./memory/in_memory_memory_service.js");
|
|
188
|
+
var import_apigee_llm = require("./models/apigee_llm.js");
|
|
189
|
+
var import_base_llm = require("./models/base_llm.js");
|
|
190
|
+
var import_google_llm = require("./models/google_llm.js");
|
|
191
|
+
var import_registry = require("./models/registry.js");
|
|
192
|
+
var import_routed_llm = require("./models/routed_llm.js");
|
|
193
|
+
var import_base_plugin = require("./plugins/base_plugin.js");
|
|
194
|
+
var import_logging_plugin = require("./plugins/logging_plugin.js");
|
|
195
|
+
var import_plugin_manager = require("./plugins/plugin_manager.js");
|
|
196
|
+
var import_security_plugin = require("./plugins/security_plugin.js");
|
|
197
|
+
var import_in_memory_runner = require("./runner/in_memory_runner.js");
|
|
198
|
+
var import_runner = require("./runner/runner.js");
|
|
199
|
+
var import_base_session_service = require("./sessions/base_session_service.js");
|
|
200
|
+
var import_in_memory_session_service = require("./sessions/in_memory_session_service.js");
|
|
201
|
+
var import_session = require("./sessions/session.js");
|
|
202
|
+
var import_state = require("./sessions/state.js");
|
|
203
|
+
var import_agent_tool = require("./tools/agent_tool.js");
|
|
204
|
+
var import_base_tool = require("./tools/base_tool.js");
|
|
205
|
+
var import_base_toolset = require("./tools/base_toolset.js");
|
|
206
|
+
var import_exit_loop_tool = require("./tools/exit_loop_tool.js");
|
|
207
|
+
var import_function_tool = require("./tools/function_tool.js");
|
|
208
|
+
var import_google_maps_grounding_tool = require("./tools/google_maps_grounding_tool.js");
|
|
209
|
+
var import_google_search_tool = require("./tools/google_search_tool.js");
|
|
210
|
+
var import_load_artifacts_tool = require("./tools/load_artifacts_tool.js");
|
|
211
|
+
var import_load_memory_tool = require("./tools/load_memory_tool.js");
|
|
212
|
+
var import_long_running_tool = require("./tools/long_running_tool.js");
|
|
213
|
+
var import_preload_memory_tool = require("./tools/preload_memory_tool.js");
|
|
214
|
+
var import_tool_confirmation = require("./tools/tool_confirmation.js");
|
|
215
|
+
var import_url_context_tool = require("./tools/url_context_tool.js");
|
|
216
|
+
var import_vertex_ai_search_tool = require("./tools/vertex_ai_search_tool.js");
|
|
217
|
+
var import_vertex_rag_retrieval_tool = require("./tools/vertex_rag_retrieval_tool.js");
|
|
218
|
+
var import_logger = require("./utils/logger.js");
|
|
219
|
+
var import_model_name = require("./utils/model_name.js");
|
|
220
|
+
var import_simple_zod_to_json = require("./utils/simple_zod_to_json.js");
|
|
221
|
+
var import_variant_utils = require("./utils/variant_utils.js");
|
|
222
|
+
var import_version = require("./version.js");
|
|
223
|
+
var import_list_skills_tool = require("./tools/skill/list_skills_tool.js");
|
|
224
|
+
var import_load_skill_resource_tool = require("./tools/skill/load_skill_resource_tool.js");
|
|
225
|
+
var import_load_skill_tool = require("./tools/skill/load_skill_tool.js");
|
|
226
|
+
var import_skill_toolset = require("./tools/skill/skill_toolset.js");
|
|
227
|
+
__reExport(common_exports, require("./artifacts/base_artifact_service.js"), module.exports);
|
|
228
|
+
__reExport(common_exports, require("./features/feature_registry.js"), module.exports);
|
|
229
|
+
__reExport(common_exports, require("./memory/base_memory_service.js"), module.exports);
|
|
230
|
+
__reExport(common_exports, require("./sessions/base_session_service.js"), module.exports);
|
|
231
|
+
__reExport(common_exports, require("./tools/base_tool.js"), module.exports);
|
|
232
|
+
/**
|
|
233
|
+
* @license
|
|
234
|
+
* Copyright 2025 Google LLC
|
|
235
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
236
|
+
*/
|
|
237
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
238
|
+
0 && (module.exports = {
|
|
239
|
+
ActiveStreamingTool,
|
|
240
|
+
Agent,
|
|
241
|
+
AgentTool,
|
|
242
|
+
AgentTransferLlmRequestProcessor,
|
|
243
|
+
ApigeeLlm,
|
|
244
|
+
AuthCredentialTypes,
|
|
245
|
+
AuthHandler,
|
|
246
|
+
AuthProviderRegistry,
|
|
247
|
+
BaseAgent,
|
|
248
|
+
BaseCodeExecutor,
|
|
249
|
+
BaseExampleProvider,
|
|
250
|
+
BaseLlm,
|
|
251
|
+
BaseLlmRequestProcessor,
|
|
252
|
+
BaseLlmResponseProcessor,
|
|
253
|
+
BasePlugin,
|
|
254
|
+
BaseSessionService,
|
|
255
|
+
BaseTool,
|
|
256
|
+
BaseToolset,
|
|
257
|
+
BuiltInCodeExecutor,
|
|
258
|
+
CONTENT_REQUEST_PROCESSOR,
|
|
259
|
+
CodeExecutionLanguage,
|
|
260
|
+
ContentRequestProcessor,
|
|
261
|
+
Context,
|
|
262
|
+
ContextCompactionTrigger,
|
|
263
|
+
ContextCompactorRequestProcessor,
|
|
264
|
+
CredentialExchangeError,
|
|
265
|
+
CredentialRefresherRegistry,
|
|
266
|
+
EXIT_LOOP,
|
|
267
|
+
EventType,
|
|
268
|
+
ExitLoopTool,
|
|
269
|
+
FileContentEncoding,
|
|
270
|
+
FunctionTool,
|
|
271
|
+
GOOGLE_MAPS_GROUNDING,
|
|
272
|
+
GOOGLE_SEARCH,
|
|
273
|
+
Gemini,
|
|
274
|
+
GoogleLLMVariant,
|
|
275
|
+
GoogleMapsGroundingTool,
|
|
276
|
+
GoogleSearchTool,
|
|
277
|
+
InMemoryArtifactService,
|
|
278
|
+
InMemoryCredentialService,
|
|
279
|
+
InMemoryMemoryService,
|
|
280
|
+
InMemoryPolicyEngine,
|
|
281
|
+
InMemoryRunner,
|
|
282
|
+
InMemorySessionService,
|
|
283
|
+
InvocationContext,
|
|
284
|
+
LLMRegistry,
|
|
285
|
+
LOAD_ARTIFACTS,
|
|
286
|
+
LOAD_MEMORY,
|
|
287
|
+
ListSkillsTool,
|
|
288
|
+
LiveRequestQueue,
|
|
289
|
+
LlmAgent,
|
|
290
|
+
LlmSummarizer,
|
|
291
|
+
LoadArtifactsTool,
|
|
292
|
+
LoadMemoryTool,
|
|
293
|
+
LoadSkillResourceTool,
|
|
294
|
+
LoadSkillTool,
|
|
295
|
+
LogLevel,
|
|
296
|
+
LoggingPlugin,
|
|
297
|
+
LongRunningFunctionTool,
|
|
298
|
+
LoopAgent,
|
|
299
|
+
OAuth2CredentialExchanger,
|
|
300
|
+
OAuth2DiscoveryManager,
|
|
301
|
+
OAuthGrantType,
|
|
302
|
+
PRELOAD_MEMORY,
|
|
303
|
+
ParallelAgent,
|
|
304
|
+
PluginManager,
|
|
305
|
+
PolicyOutcome,
|
|
306
|
+
PreloadMemoryTool,
|
|
307
|
+
REQUEST_CONFIRMATION_FUNCTION_CALL_NAME,
|
|
308
|
+
ReadonlyContext,
|
|
309
|
+
RoutedAgent,
|
|
310
|
+
RoutedLlm,
|
|
311
|
+
Runner,
|
|
312
|
+
SecurityPlugin,
|
|
313
|
+
SequentialAgent,
|
|
314
|
+
SessionStateCredentialService,
|
|
315
|
+
SkillToolset,
|
|
316
|
+
State,
|
|
317
|
+
StreamingMode,
|
|
318
|
+
TokenBasedContextCompactor,
|
|
319
|
+
ToolConfirmation,
|
|
320
|
+
TruncatingContextCompactor,
|
|
321
|
+
URL_CONTEXT,
|
|
322
|
+
UrlContextTool,
|
|
323
|
+
VertexAiSearchTool,
|
|
324
|
+
VertexRagRetrievalTool,
|
|
325
|
+
createEvent,
|
|
326
|
+
createEventActions,
|
|
327
|
+
createSession,
|
|
328
|
+
functionsExportedForTestingOnly,
|
|
329
|
+
geminiInitParams,
|
|
330
|
+
getAskUserConfirmationFunctionCalls,
|
|
331
|
+
getFunctionCalls,
|
|
332
|
+
getFunctionResponses,
|
|
333
|
+
getLogger,
|
|
334
|
+
hasTrailingCodeExecutionResult,
|
|
335
|
+
isAgentTool,
|
|
336
|
+
isBaseAgent,
|
|
337
|
+
isBaseExampleProvider,
|
|
338
|
+
isBaseLlm,
|
|
339
|
+
isBaseTool,
|
|
340
|
+
isBaseToolset,
|
|
341
|
+
isCompactedEvent,
|
|
342
|
+
isFinalResponse,
|
|
343
|
+
isFunctionTool,
|
|
344
|
+
isGemini2OrAbove,
|
|
345
|
+
isLlmAgent,
|
|
346
|
+
isLoopAgent,
|
|
347
|
+
isParallelAgent,
|
|
348
|
+
isRoutedAgent,
|
|
349
|
+
isRunner,
|
|
350
|
+
isSequentialAgent,
|
|
351
|
+
setLogLevel,
|
|
352
|
+
setLogger,
|
|
353
|
+
stringifyContent,
|
|
354
|
+
toStructuredEvents,
|
|
355
|
+
version,
|
|
356
|
+
zodObjectToSchema,
|
|
357
|
+
...require("./artifacts/base_artifact_service.js"),
|
|
358
|
+
...require("./features/feature_registry.js"),
|
|
359
|
+
...require("./memory/base_memory_service.js"),
|
|
360
|
+
...require("./sessions/base_session_service.js"),
|
|
361
|
+
...require("./tools/base_tool.js")
|
|
362
|
+
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2026 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
var __defProp = Object.defineProperty;
|
|
9
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
11
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
var base_context_compactor_exports = {};
|
|
22
|
+
module.exports = __toCommonJS(base_context_compactor_exports);
|
|
23
|
+
/**
|
|
24
|
+
* @license
|
|
25
|
+
* Copyright 2026 Google LLC
|
|
26
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
27
|
+
*/
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2026 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
var __defProp = Object.defineProperty;
|
|
9
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
11
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
var base_summarizer_exports = {};
|
|
22
|
+
module.exports = __toCommonJS(base_summarizer_exports);
|
|
23
|
+
/**
|
|
24
|
+
* @license
|
|
25
|
+
* Copyright 2026 Google LLC
|
|
26
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
27
|
+
*/
|