google-adk 0.0.1__py3-none-any.whl → 0.0.3__py3-none-any.whl
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.
- google/adk/._version.py +0 -0
- google/adk/__init__.py +20 -0
- google/adk/agents/__init__.py +32 -0
- google/adk/agents/active_streaming_tool.py +38 -0
- google/adk/agents/base_agent.py +345 -0
- google/adk/agents/callback_context.py +112 -0
- google/adk/agents/invocation_context.py +181 -0
- google/adk/agents/langgraph_agent.py +140 -0
- google/adk/agents/live_request_queue.py +64 -0
- google/adk/agents/llm_agent.py +376 -0
- google/adk/agents/loop_agent.py +62 -0
- google/adk/agents/parallel_agent.py +96 -0
- google/adk/agents/readonly_context.py +46 -0
- google/adk/agents/remote_agent.py +50 -0
- google/adk/agents/run_config.py +87 -0
- google/adk/agents/sequential_agent.py +45 -0
- google/adk/agents/transcription_entry.py +34 -0
- google/adk/artifacts/__init__.py +23 -0
- google/adk/artifacts/base_artifact_service.py +128 -0
- google/adk/artifacts/gcs_artifact_service.py +195 -0
- google/adk/artifacts/in_memory_artifact_service.py +133 -0
- google/adk/auth/__init__.py +22 -0
- google/adk/auth/auth_credential.py +220 -0
- google/adk/auth/auth_handler.py +268 -0
- google/adk/auth/auth_preprocessor.py +116 -0
- google/adk/auth/auth_schemes.py +67 -0
- google/adk/auth/auth_tool.py +55 -0
- google/adk/cli/__init__.py +15 -0
- google/adk/cli/__main__.py +18 -0
- google/adk/cli/agent_graph.py +148 -0
- google/adk/cli/browser/adk_favicon.svg +17 -0
- google/adk/cli/browser/assets/audio-processor.js +51 -0
- google/adk/cli/browser/assets/config/runtime-config.json +3 -0
- google/adk/cli/browser/index.html +33 -0
- google/adk/cli/browser/main-SY2WYYGV.js +75 -0
- google/adk/cli/browser/polyfills-FFHMD2TL.js +18 -0
- google/adk/cli/browser/styles-4VDSPQ37.css +17 -0
- google/adk/cli/cli.py +181 -0
- google/adk/cli/cli_deploy.py +181 -0
- google/adk/cli/cli_eval.py +282 -0
- google/adk/cli/cli_tools_click.py +524 -0
- google/adk/cli/fast_api.py +784 -0
- google/adk/cli/utils/__init__.py +49 -0
- google/adk/cli/utils/envs.py +57 -0
- google/adk/cli/utils/evals.py +93 -0
- google/adk/cli/utils/logs.py +72 -0
- google/adk/code_executors/__init__.py +49 -0
- google/adk/code_executors/base_code_executor.py +97 -0
- google/adk/code_executors/code_execution_utils.py +256 -0
- google/adk/code_executors/code_executor_context.py +202 -0
- google/adk/code_executors/container_code_executor.py +196 -0
- google/adk/code_executors/unsafe_local_code_executor.py +71 -0
- google/adk/code_executors/vertex_ai_code_executor.py +234 -0
- google/adk/docs/Makefile +20 -0
- google/adk/docs/build/doctrees/google-adk.doctree +0 -0
- google/adk/docs/build/html/_sources/google-adk.rst.txt +98 -0
- google/adk/docs/build/html/_sources/index.rst.txt +7 -0
- google/adk/docs/build/html/_static/autodoc_pydantic.css +27 -0
- google/adk/docs/build/html/_static/basic.css +925 -0
- google/adk/docs/build/html/_static/debug.css +85 -0
- google/adk/docs/build/html/_static/doctools.js +156 -0
- google/adk/docs/build/html/_static/documentation_options.js +29 -0
- google/adk/docs/build/html/_static/file.png +0 -0
- google/adk/docs/build/html/_static/language_data.js +199 -0
- google/adk/docs/build/html/_static/minus.png +0 -0
- google/adk/docs/build/html/_static/plus.png +0 -0
- google/adk/docs/build/html/_static/pygments.css +274 -0
- google/adk/docs/build/html/_static/scripts/furo-extensions.js +16 -0
- google/adk/docs/build/html/_static/scripts/furo.js +19 -0
- google/adk/docs/build/html/_static/scripts/furo.js.LICENSE.txt +7 -0
- google/adk/docs/build/html/_static/scripts/furo.js.map +1 -0
- google/adk/docs/build/html/_static/searchtools.js +620 -0
- google/adk/docs/build/html/_static/skeleton.css +312 -0
- google/adk/docs/build/html/_static/sphinx_highlight.js +170 -0
- google/adk/docs/build/html/_static/styles/furo-extensions.css +18 -0
- google/adk/docs/build/html/_static/styles/furo-extensions.css.map +1 -0
- google/adk/docs/build/html/_static/styles/furo.css +18 -0
- google/adk/docs/build/html/_static/styles/furo.css.map +1 -0
- google/adk/docs/build/html/genindex.html +861 -0
- google/adk/docs/build/html/google-adk.html +5461 -0
- google/adk/docs/build/html/index.html +567 -0
- google/adk/docs/build/html/objects.inv +0 -0
- google/adk/docs/build/html/py-modindex.html +373 -0
- google/adk/docs/build/html/search.html +333 -0
- google/adk/docs/build/html/searchindex.js +17 -0
- google/adk/docs/source/conf.py +133 -0
- google/adk/docs/source/google-adk.rst +98 -0
- google/adk/docs/source/index.rst +7 -0
- google/adk/evaluation/__init__.py +31 -0
- google/adk/evaluation/agent_evaluator.py +329 -0
- google/adk/evaluation/evaluation_constants.py +24 -0
- google/adk/evaluation/evaluation_generator.py +270 -0
- google/adk/evaluation/response_evaluator.py +135 -0
- google/adk/evaluation/trajectory_evaluator.py +184 -0
- google/adk/events/__init__.py +21 -0
- google/adk/events/event.py +130 -0
- google/adk/events/event_actions.py +55 -0
- google/adk/examples/__init__.py +28 -0
- google/adk/examples/base_example_provider.py +35 -0
- google/adk/examples/example.py +27 -0
- google/adk/examples/example_util.py +123 -0
- google/adk/examples/vertex_ai_example_store.py +104 -0
- google/adk/flows/__init__.py +14 -0
- google/adk/flows/llm_flows/__init__.py +20 -0
- google/adk/flows/llm_flows/_base_llm_processor.py +52 -0
- google/adk/flows/llm_flows/_code_execution.py +458 -0
- google/adk/flows/llm_flows/_nl_planning.py +129 -0
- google/adk/flows/llm_flows/agent_transfer.py +132 -0
- google/adk/flows/llm_flows/audio_transcriber.py +109 -0
- google/adk/flows/llm_flows/auto_flow.py +49 -0
- google/adk/flows/llm_flows/base_llm_flow.py +559 -0
- google/adk/flows/llm_flows/basic.py +72 -0
- google/adk/flows/llm_flows/contents.py +370 -0
- google/adk/flows/llm_flows/functions.py +486 -0
- google/adk/flows/llm_flows/identity.py +47 -0
- google/adk/flows/llm_flows/instructions.py +137 -0
- google/adk/flows/llm_flows/single_flow.py +57 -0
- google/adk/memory/__init__.py +35 -0
- google/adk/memory/base_memory_service.py +74 -0
- google/adk/memory/in_memory_memory_service.py +62 -0
- google/adk/memory/vertex_ai_rag_memory_service.py +177 -0
- google/adk/models/__init__.py +31 -0
- google/adk/models/anthropic_llm.py +243 -0
- google/adk/models/base_llm.py +87 -0
- google/adk/models/base_llm_connection.py +76 -0
- google/adk/models/gemini_llm_connection.py +200 -0
- google/adk/models/google_llm.py +331 -0
- google/adk/models/lite_llm.py +673 -0
- google/adk/models/llm_request.py +98 -0
- google/adk/models/llm_response.py +111 -0
- google/adk/models/registry.py +102 -0
- google/adk/planners/__init__.py +23 -0
- google/adk/planners/base_planner.py +66 -0
- google/adk/planners/built_in_planner.py +75 -0
- google/adk/planners/plan_re_act_planner.py +208 -0
- google/adk/runners.py +456 -0
- google/adk/sessions/__init__.py +41 -0
- google/adk/sessions/base_session_service.py +133 -0
- google/adk/sessions/database_session_service.py +522 -0
- google/adk/sessions/in_memory_session_service.py +206 -0
- google/adk/sessions/session.py +54 -0
- google/adk/sessions/state.py +71 -0
- google/adk/sessions/vertex_ai_session_service.py +356 -0
- google/adk/telemetry.py +189 -0
- google/adk/tests/__init__.py +14 -0
- google/adk/tests/integration/.env.example +10 -0
- google/adk/tests/integration/__init__.py +18 -0
- google/adk/tests/integration/conftest.py +119 -0
- google/adk/tests/integration/fixture/__init__.py +14 -0
- google/adk/tests/integration/fixture/agent_with_config/__init__.py +15 -0
- google/adk/tests/integration/fixture/agent_with_config/agent.py +88 -0
- google/adk/tests/integration/fixture/callback_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/callback_agent/agent.py +105 -0
- google/adk/tests/integration/fixture/context_update_test/OWNERS +1 -0
- google/adk/tests/integration/fixture/context_update_test/__init__.py +15 -0
- google/adk/tests/integration/fixture/context_update_test/agent.py +43 -0
- google/adk/tests/integration/fixture/context_update_test/successful_test.session.json +582 -0
- google/adk/tests/integration/fixture/context_variable_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/context_variable_agent/agent.py +115 -0
- google/adk/tests/integration/fixture/customer_support_ma/__init__.py +15 -0
- google/adk/tests/integration/fixture/customer_support_ma/agent.py +172 -0
- google/adk/tests/integration/fixture/ecommerce_customer_service_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/ecommerce_customer_service_agent/agent.py +338 -0
- google/adk/tests/integration/fixture/ecommerce_customer_service_agent/order_query.test.json +69 -0
- google/adk/tests/integration/fixture/ecommerce_customer_service_agent/test_config.json +6 -0
- google/adk/tests/integration/fixture/flow_complex_spark/__init__.py +15 -0
- google/adk/tests/integration/fixture/flow_complex_spark/agent.py +182 -0
- google/adk/tests/integration/fixture/flow_complex_spark/sample.session.json +190 -0
- google/adk/tests/integration/fixture/hello_world_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/hello_world_agent/agent.py +95 -0
- google/adk/tests/integration/fixture/hello_world_agent/roll_die.test.json +24 -0
- google/adk/tests/integration/fixture/hello_world_agent/test_config.json +6 -0
- google/adk/tests/integration/fixture/home_automation_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/home_automation_agent/agent.py +304 -0
- google/adk/tests/integration/fixture/home_automation_agent/simple_test.test.json +5 -0
- google/adk/tests/integration/fixture/home_automation_agent/simple_test2.test.json +5 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_config.json +5 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/dependent_tool_calls.test.json +18 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/memorizing_past_events/eval_data.test.json +17 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/memorizing_past_events/test_config.json +6 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/simple_multi_turn_conversation.test.json +18 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/simple_test.test.json +17 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/simple_test2.test.json +5 -0
- google/adk/tests/integration/fixture/home_automation_agent/test_files/test_config.json +5 -0
- google/adk/tests/integration/fixture/tool_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/tool_agent/agent.py +218 -0
- google/adk/tests/integration/fixture/tool_agent/files/Agent_test_plan.pdf +0 -0
- google/adk/tests/integration/fixture/trip_planner_agent/__init__.py +15 -0
- google/adk/tests/integration/fixture/trip_planner_agent/agent.py +110 -0
- google/adk/tests/integration/fixture/trip_planner_agent/initial.session.json +13 -0
- google/adk/tests/integration/fixture/trip_planner_agent/test_config.json +5 -0
- google/adk/tests/integration/fixture/trip_planner_agent/test_files/initial.session.json +13 -0
- google/adk/tests/integration/fixture/trip_planner_agent/test_files/test_config.json +5 -0
- google/adk/tests/integration/fixture/trip_planner_agent/test_files/trip_inquiry_sub_agent.test.json +7 -0
- google/adk/tests/integration/fixture/trip_planner_agent/trip_inquiry.test.json +19 -0
- google/adk/tests/integration/models/__init__.py +14 -0
- google/adk/tests/integration/models/test_google_llm.py +65 -0
- google/adk/tests/integration/test_callback.py +70 -0
- google/adk/tests/integration/test_context_variable.py +67 -0
- google/adk/tests/integration/test_evalute_agent_in_fixture.py +76 -0
- google/adk/tests/integration/test_multi_agent.py +28 -0
- google/adk/tests/integration/test_multi_turn.py +42 -0
- google/adk/tests/integration/test_single_agent.py +23 -0
- google/adk/tests/integration/test_sub_agent.py +26 -0
- google/adk/tests/integration/test_system_instruction.py +177 -0
- google/adk/tests/integration/test_tools.py +287 -0
- google/adk/tests/integration/test_with_test_file.py +34 -0
- google/adk/tests/integration/tools/__init__.py +14 -0
- google/adk/tests/integration/utils/__init__.py +16 -0
- google/adk/tests/integration/utils/asserts.py +75 -0
- google/adk/tests/integration/utils/test_runner.py +97 -0
- google/adk/tests/unittests/__init__.py +14 -0
- google/adk/tests/unittests/agents/__init__.py +14 -0
- google/adk/tests/unittests/agents/test_base_agent.py +407 -0
- google/adk/tests/unittests/agents/test_langgraph_agent.py +191 -0
- google/adk/tests/unittests/agents/test_llm_agent_callbacks.py +138 -0
- google/adk/tests/unittests/agents/test_llm_agent_fields.py +231 -0
- google/adk/tests/unittests/agents/test_loop_agent.py +136 -0
- google/adk/tests/unittests/agents/test_parallel_agent.py +92 -0
- google/adk/tests/unittests/agents/test_sequential_agent.py +114 -0
- google/adk/tests/unittests/artifacts/__init__.py +14 -0
- google/adk/tests/unittests/artifacts/test_artifact_service.py +276 -0
- google/adk/tests/unittests/auth/test_auth_handler.py +575 -0
- google/adk/tests/unittests/conftest.py +73 -0
- google/adk/tests/unittests/fast_api/__init__.py +14 -0
- google/adk/tests/unittests/fast_api/test_fast_api.py +269 -0
- google/adk/tests/unittests/flows/__init__.py +14 -0
- google/adk/tests/unittests/flows/llm_flows/__init__.py +14 -0
- google/adk/tests/unittests/flows/llm_flows/_test_examples.py +142 -0
- google/adk/tests/unittests/flows/llm_flows/test_agent_transfer.py +311 -0
- google/adk/tests/unittests/flows/llm_flows/test_functions_long_running.py +244 -0
- google/adk/tests/unittests/flows/llm_flows/test_functions_request_euc.py +346 -0
- google/adk/tests/unittests/flows/llm_flows/test_functions_sequential.py +93 -0
- google/adk/tests/unittests/flows/llm_flows/test_functions_simple.py +258 -0
- google/adk/tests/unittests/flows/llm_flows/test_identity.py +66 -0
- google/adk/tests/unittests/flows/llm_flows/test_instructions.py +164 -0
- google/adk/tests/unittests/flows/llm_flows/test_model_callbacks.py +142 -0
- google/adk/tests/unittests/flows/llm_flows/test_other_configs.py +46 -0
- google/adk/tests/unittests/flows/llm_flows/test_tool_callbacks.py +269 -0
- google/adk/tests/unittests/models/__init__.py +14 -0
- google/adk/tests/unittests/models/test_google_llm.py +224 -0
- google/adk/tests/unittests/models/test_litellm.py +804 -0
- google/adk/tests/unittests/models/test_models.py +60 -0
- google/adk/tests/unittests/sessions/__init__.py +14 -0
- google/adk/tests/unittests/sessions/test_session_service.py +227 -0
- google/adk/tests/unittests/sessions/test_vertex_ai_session_service.py +246 -0
- google/adk/tests/unittests/streaming/__init__.py +14 -0
- google/adk/tests/unittests/streaming/test_streaming.py +50 -0
- google/adk/tests/unittests/tools/__init__.py +14 -0
- google/adk/tests/unittests/tools/apihub_tool/clients/test_apihub_client.py +499 -0
- google/adk/tests/unittests/tools/apihub_tool/test_apihub_toolset.py +204 -0
- google/adk/tests/unittests/tools/application_integration_tool/clients/test_connections_client.py +600 -0
- google/adk/tests/unittests/tools/application_integration_tool/clients/test_integration_client.py +630 -0
- google/adk/tests/unittests/tools/application_integration_tool/test_application_integration_toolset.py +345 -0
- google/adk/tests/unittests/tools/google_api_tool/__init__.py +13 -0
- google/adk/tests/unittests/tools/google_api_tool/test_googleapi_to_openapi_converter.py +657 -0
- google/adk/tests/unittests/tools/openapi_tool/auth/credential_exchangers/test_auto_auth_credential_exchanger.py +145 -0
- google/adk/tests/unittests/tools/openapi_tool/auth/credential_exchangers/test_base_auth_credential_exchanger.py +68 -0
- google/adk/tests/unittests/tools/openapi_tool/auth/credential_exchangers/test_oauth2_exchanger.py +153 -0
- google/adk/tests/unittests/tools/openapi_tool/auth/credential_exchangers/test_service_account_exchanger.py +196 -0
- google/adk/tests/unittests/tools/openapi_tool/auth/test_auth_helper.py +573 -0
- google/adk/tests/unittests/tools/openapi_tool/common/test_common.py +436 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test.yaml +1367 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test_openapi_spec_parser.py +628 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test_openapi_toolset.py +139 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test_operation_parser.py +406 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test_rest_api_tool.py +966 -0
- google/adk/tests/unittests/tools/openapi_tool/openapi_spec_parser/test_tool_auth_handler.py +201 -0
- google/adk/tests/unittests/tools/retrieval/__init__.py +14 -0
- google/adk/tests/unittests/tools/retrieval/test_vertex_ai_rag_retrieval.py +147 -0
- google/adk/tests/unittests/tools/test_agent_tool.py +167 -0
- google/adk/tests/unittests/tools/test_base_tool.py +141 -0
- google/adk/tests/unittests/tools/test_build_function_declaration.py +277 -0
- google/adk/tests/unittests/utils.py +304 -0
- google/adk/tools/__init__.py +51 -0
- google/adk/tools/_automatic_function_calling_util.py +346 -0
- google/adk/tools/agent_tool.py +176 -0
- google/adk/tools/apihub_tool/__init__.py +19 -0
- google/adk/tools/apihub_tool/apihub_toolset.py +209 -0
- google/adk/tools/apihub_tool/clients/__init__.py +13 -0
- google/adk/tools/apihub_tool/clients/apihub_client.py +332 -0
- google/adk/tools/apihub_tool/clients/secret_client.py +115 -0
- google/adk/tools/application_integration_tool/__init__.py +19 -0
- google/adk/tools/application_integration_tool/application_integration_toolset.py +230 -0
- google/adk/tools/application_integration_tool/clients/connections_client.py +903 -0
- google/adk/tools/application_integration_tool/clients/integration_client.py +253 -0
- google/adk/tools/base_tool.py +144 -0
- google/adk/tools/built_in_code_execution_tool.py +59 -0
- google/adk/tools/crewai_tool.py +72 -0
- google/adk/tools/example_tool.py +62 -0
- google/adk/tools/exit_loop_tool.py +23 -0
- google/adk/tools/function_parameter_parse_util.py +307 -0
- google/adk/tools/function_tool.py +87 -0
- google/adk/tools/get_user_choice_tool.py +28 -0
- google/adk/tools/google_api_tool/__init__.py +14 -0
- google/adk/tools/google_api_tool/google_api_tool.py +59 -0
- google/adk/tools/google_api_tool/google_api_tool_set.py +107 -0
- google/adk/tools/google_api_tool/google_api_tool_sets.py +55 -0
- google/adk/tools/google_api_tool/googleapi_to_openapi_converter.py +521 -0
- google/adk/tools/google_search_tool.py +68 -0
- google/adk/tools/langchain_tool.py +86 -0
- google/adk/tools/load_artifacts_tool.py +113 -0
- google/adk/tools/load_memory_tool.py +58 -0
- google/adk/tools/load_web_page.py +41 -0
- google/adk/tools/long_running_tool.py +39 -0
- google/adk/tools/mcp_tool/__init__.py +42 -0
- google/adk/tools/mcp_tool/conversion_utils.py +161 -0
- google/adk/tools/mcp_tool/mcp_tool.py +113 -0
- google/adk/tools/mcp_tool/mcp_toolset.py +272 -0
- google/adk/tools/openapi_tool/__init__.py +21 -0
- google/adk/tools/openapi_tool/auth/__init__.py +19 -0
- google/adk/tools/openapi_tool/auth/auth_helpers.py +498 -0
- google/adk/tools/openapi_tool/auth/credential_exchangers/__init__.py +25 -0
- google/adk/tools/openapi_tool/auth/credential_exchangers/auto_auth_credential_exchanger.py +105 -0
- google/adk/tools/openapi_tool/auth/credential_exchangers/base_credential_exchanger.py +55 -0
- google/adk/tools/openapi_tool/auth/credential_exchangers/oauth2_exchanger.py +117 -0
- google/adk/tools/openapi_tool/auth/credential_exchangers/service_account_exchanger.py +97 -0
- google/adk/tools/openapi_tool/common/__init__.py +19 -0
- google/adk/tools/openapi_tool/common/common.py +300 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/__init__.py +32 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/openapi_spec_parser.py +231 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py +144 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py +260 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/rest_api_tool.py +496 -0
- google/adk/tools/openapi_tool/openapi_spec_parser/tool_auth_handler.py +268 -0
- google/adk/tools/preload_memory_tool.py +72 -0
- google/adk/tools/retrieval/__init__.py +36 -0
- google/adk/tools/retrieval/base_retrieval_tool.py +37 -0
- google/adk/tools/retrieval/files_retrieval.py +33 -0
- google/adk/tools/retrieval/llama_index_retrieval.py +41 -0
- google/adk/tools/retrieval/vertex_ai_rag_retrieval.py +107 -0
- google/adk/tools/tool_context.py +90 -0
- google/adk/tools/toolbox_tool.py +46 -0
- google/adk/tools/transfer_to_agent_tool.py +21 -0
- google/adk/tools/vertex_ai_search_tool.py +96 -0
- google/adk/version.py +16 -0
- google_adk-0.0.3.dist-info/METADATA +73 -0
- google_adk-0.0.3.dist-info/RECORD +340 -0
- {google_adk-0.0.1.dist-info → google_adk-0.0.3.dist-info}/WHEEL +1 -2
- google_adk-0.0.3.dist-info/entry_points.txt +3 -0
- agent_kit/__init__.py +0 -0
- google_adk-0.0.1.dist-info/LICENSE.txt +0 -170
- google_adk-0.0.1.dist-info/METADATA +0 -15
- google_adk-0.0.1.dist-info/RECORD +0 -6
- google_adk-0.0.1.dist-info/top_level.txt +0 -1
@@ -0,0 +1,861 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<!--
|
3
|
+
Copyright 2025 Google LLC
|
4
|
+
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
you may not use this file except in compliance with the License.
|
7
|
+
You may obtain a copy of the License at
|
8
|
+
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
See the License for the specific language governing permissions and
|
15
|
+
limitations under the License.
|
16
|
+
-->
|
17
|
+
|
18
|
+
<html class="no-js" lang="en" data-content_root="./">
|
19
|
+
<head><meta charset="utf-8"/>
|
20
|
+
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
21
|
+
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="#" /><link rel="search" title="Search" href="search.html" />
|
22
|
+
|
23
|
+
<!-- Generated with Sphinx 7.4.7 and Furo 2024.08.06 --><title>Index - Agent Development Kit documentation</title>
|
24
|
+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=8f2a1f02" />
|
25
|
+
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
|
26
|
+
<link rel="stylesheet" type="text/css" href="_static/autodoc_pydantic.css" />
|
27
|
+
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
|
28
|
+
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
<style>
|
34
|
+
body {
|
35
|
+
--color-code-background: #f8f8f8;
|
36
|
+
--color-code-foreground: black;
|
37
|
+
--font-stack: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
38
|
+
--font-stack--monospace: Roboto Mono, "Helvetica Neue Mono", monospace;
|
39
|
+
--font-stack--headings: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
40
|
+
--color-brand-primary: black;
|
41
|
+
--color-brand-content: black;
|
42
|
+
|
43
|
+
}
|
44
|
+
@media not print {
|
45
|
+
body[data-theme="dark"] {
|
46
|
+
--color-code-background: #202020;
|
47
|
+
--color-code-foreground: #d0d0d0;
|
48
|
+
--font-stack: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
49
|
+
--font-stack--monospace: Roboto Mono, "Helvetica Neue Mono", monospace;
|
50
|
+
--font-stack--headings: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
51
|
+
--color-brand-primary: white;
|
52
|
+
--color-brand-content: white;
|
53
|
+
|
54
|
+
}
|
55
|
+
@media (prefers-color-scheme: dark) {
|
56
|
+
body:not([data-theme="light"]) {
|
57
|
+
--color-code-background: #202020;
|
58
|
+
--color-code-foreground: #d0d0d0;
|
59
|
+
--font-stack: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
60
|
+
--font-stack--monospace: Roboto Mono, "Helvetica Neue Mono", monospace;
|
61
|
+
--font-stack--headings: "Google Sans Text", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
62
|
+
--color-brand-primary: white;
|
63
|
+
--color-brand-content: white;
|
64
|
+
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
</style></head>
|
69
|
+
<body>
|
70
|
+
|
71
|
+
<script>
|
72
|
+
document.body.dataset.theme = localStorage.getItem("theme") || "auto";
|
73
|
+
</script>
|
74
|
+
|
75
|
+
|
76
|
+
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
|
77
|
+
<symbol id="svg-toc" viewBox="0 0 24 24">
|
78
|
+
<title>Contents</title>
|
79
|
+
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024">
|
80
|
+
<path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z"/>
|
81
|
+
</svg>
|
82
|
+
</symbol>
|
83
|
+
<symbol id="svg-menu" viewBox="0 0 24 24">
|
84
|
+
<title>Menu</title>
|
85
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
86
|
+
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-menu">
|
87
|
+
<line x1="3" y1="12" x2="21" y2="12"></line>
|
88
|
+
<line x1="3" y1="6" x2="21" y2="6"></line>
|
89
|
+
<line x1="3" y1="18" x2="21" y2="18"></line>
|
90
|
+
</svg>
|
91
|
+
</symbol>
|
92
|
+
<symbol id="svg-arrow-right" viewBox="0 0 24 24">
|
93
|
+
<title>Expand</title>
|
94
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
95
|
+
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-chevron-right">
|
96
|
+
<polyline points="9 18 15 12 9 6"></polyline>
|
97
|
+
</svg>
|
98
|
+
</symbol>
|
99
|
+
<symbol id="svg-sun" viewBox="0 0 24 24">
|
100
|
+
<title>Light mode</title>
|
101
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
102
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun">
|
103
|
+
<circle cx="12" cy="12" r="5"></circle>
|
104
|
+
<line x1="12" y1="1" x2="12" y2="3"></line>
|
105
|
+
<line x1="12" y1="21" x2="12" y2="23"></line>
|
106
|
+
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
107
|
+
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
108
|
+
<line x1="1" y1="12" x2="3" y2="12"></line>
|
109
|
+
<line x1="21" y1="12" x2="23" y2="12"></line>
|
110
|
+
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
111
|
+
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
112
|
+
</svg>
|
113
|
+
</symbol>
|
114
|
+
<symbol id="svg-moon" viewBox="0 0 24 24">
|
115
|
+
<title>Dark mode</title>
|
116
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
117
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon">
|
118
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
119
|
+
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
|
120
|
+
</svg>
|
121
|
+
</symbol>
|
122
|
+
<symbol id="svg-sun-with-moon" viewBox="0 0 24 24">
|
123
|
+
<title>Auto light/dark, in light mode</title>
|
124
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
125
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
|
126
|
+
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
|
127
|
+
<path style="opacity: 50%" d="M 5.411 14.504 C 5.471 14.504 5.532 14.504 5.591 14.504 C 3.639 16.319 4.383 19.569 6.931 20.352 C 7.693 20.586 8.512 20.551 9.25 20.252 C 8.023 23.207 4.056 23.725 2.11 21.184 C 0.166 18.642 1.702 14.949 4.874 14.536 C 5.051 14.512 5.231 14.5 5.411 14.5 L 5.411 14.504 Z"/>
|
128
|
+
<line x1="14.5" y1="3.25" x2="14.5" y2="1.25"/>
|
129
|
+
<line x1="14.5" y1="15.85" x2="14.5" y2="17.85"/>
|
130
|
+
<line x1="10.044" y1="5.094" x2="8.63" y2="3.68"/>
|
131
|
+
<line x1="19" y1="14.05" x2="20.414" y2="15.464"/>
|
132
|
+
<line x1="8.2" y1="9.55" x2="6.2" y2="9.55"/>
|
133
|
+
<line x1="20.8" y1="9.55" x2="22.8" y2="9.55"/>
|
134
|
+
<line x1="10.044" y1="14.006" x2="8.63" y2="15.42"/>
|
135
|
+
<line x1="19" y1="5.05" x2="20.414" y2="3.636"/>
|
136
|
+
<circle cx="14.5" cy="9.55" r="3.6"/>
|
137
|
+
</svg>
|
138
|
+
</symbol>
|
139
|
+
<symbol id="svg-moon-with-sun" viewBox="0 0 24 24">
|
140
|
+
<title>Auto light/dark, in dark mode</title>
|
141
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
142
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
|
143
|
+
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
|
144
|
+
<path d="M 8.282 7.007 C 8.385 7.007 8.494 7.007 8.595 7.007 C 5.18 10.184 6.481 15.869 10.942 17.24 C 12.275 17.648 13.706 17.589 15 17.066 C 12.851 22.236 5.91 23.143 2.505 18.696 C -0.897 14.249 1.791 7.786 7.342 7.063 C 7.652 7.021 7.965 7 8.282 7 L 8.282 7.007 Z"/>
|
145
|
+
<line style="opacity: 50%" x1="18" y1="3.705" x2="18" y2="2.5"/>
|
146
|
+
<line style="opacity: 50%" x1="18" y1="11.295" x2="18" y2="12.5"/>
|
147
|
+
<line style="opacity: 50%" x1="15.316" y1="4.816" x2="14.464" y2="3.964"/>
|
148
|
+
<line style="opacity: 50%" x1="20.711" y1="10.212" x2="21.563" y2="11.063"/>
|
149
|
+
<line style="opacity: 50%" x1="14.205" y1="7.5" x2="13.001" y2="7.5"/>
|
150
|
+
<line style="opacity: 50%" x1="21.795" y1="7.5" x2="23" y2="7.5"/>
|
151
|
+
<line style="opacity: 50%" x1="15.316" y1="10.184" x2="14.464" y2="11.036"/>
|
152
|
+
<line style="opacity: 50%" x1="20.711" y1="4.789" x2="21.563" y2="3.937"/>
|
153
|
+
<circle style="opacity: 50%" cx="18" cy="7.5" r="2.169"/>
|
154
|
+
</svg>
|
155
|
+
</symbol>
|
156
|
+
<symbol id="svg-pencil" viewBox="0 0 24 24">
|
157
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
158
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-pencil-code">
|
159
|
+
<path d="M4 20h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" />
|
160
|
+
<path d="M13.5 6.5l4 4" />
|
161
|
+
<path d="M20 21l2 -2l-2 -2" />
|
162
|
+
<path d="M17 17l-2 2l2 2" />
|
163
|
+
</svg>
|
164
|
+
</symbol>
|
165
|
+
<symbol id="svg-eye" viewBox="0 0 24 24">
|
166
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
167
|
+
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-eye-code">
|
168
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
169
|
+
<path d="M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" />
|
170
|
+
<path
|
171
|
+
d="M11.11 17.958c-3.209 -.307 -5.91 -2.293 -8.11 -5.958c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.21 .352 -.427 .688 -.647 1.008" />
|
172
|
+
<path d="M20 21l2 -2l-2 -2" />
|
173
|
+
<path d="M17 17l-2 2l2 2" />
|
174
|
+
</svg>
|
175
|
+
</symbol>
|
176
|
+
</svg>
|
177
|
+
|
178
|
+
<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
|
179
|
+
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc">
|
180
|
+
<label class="overlay sidebar-overlay" for="__navigation">
|
181
|
+
<div class="visually-hidden">Hide navigation sidebar</div>
|
182
|
+
</label>
|
183
|
+
<label class="overlay toc-overlay" for="__toc">
|
184
|
+
<div class="visually-hidden">Hide table of contents sidebar</div>
|
185
|
+
</label>
|
186
|
+
|
187
|
+
<a class="skip-to-content muted-link" href="#furo-main-content">Skip to content</a>
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
<div class="page">
|
192
|
+
<header class="mobile-header">
|
193
|
+
<div class="header-left">
|
194
|
+
<label class="nav-overlay-icon" for="__navigation">
|
195
|
+
<div class="visually-hidden">Toggle site navigation sidebar</div>
|
196
|
+
<i class="icon"><svg><use href="#svg-menu"></use></svg></i>
|
197
|
+
</label>
|
198
|
+
</div>
|
199
|
+
<div class="header-center">
|
200
|
+
<a href="index.html"><div class="brand">Agent Development Kit documentation</div></a>
|
201
|
+
</div>
|
202
|
+
<div class="header-right">
|
203
|
+
<div class="theme-toggle-container theme-toggle-header">
|
204
|
+
<button class="theme-toggle">
|
205
|
+
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
|
206
|
+
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
|
207
|
+
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
|
208
|
+
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
|
209
|
+
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
|
210
|
+
</button>
|
211
|
+
</div>
|
212
|
+
<label class="toc-overlay-icon toc-header-icon no-toc" for="__toc">
|
213
|
+
<div class="visually-hidden">Toggle table of contents sidebar</div>
|
214
|
+
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
215
|
+
</label>
|
216
|
+
</div>
|
217
|
+
</header>
|
218
|
+
<aside class="sidebar-drawer">
|
219
|
+
<div class="sidebar-container">
|
220
|
+
|
221
|
+
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
|
222
|
+
|
223
|
+
|
224
|
+
<span class="sidebar-brand-text">Agent Development Kit documentation</span>
|
225
|
+
|
226
|
+
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
227
|
+
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
|
228
|
+
<input type="hidden" name="check_keywords" value="yes">
|
229
|
+
<input type="hidden" name="area" value="default">
|
230
|
+
</form>
|
231
|
+
<div id="searchbox"></div><div class="sidebar-scroll"><div class="sidebar-tree">
|
232
|
+
<ul>
|
233
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html">Submodules</a></li>
|
234
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-agents-module">google.adk.agents module</a></li>
|
235
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.artifacts">google.adk.artifacts module</a></li>
|
236
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.code_executors">google.adk.code_executors module</a></li>
|
237
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-evaluation-module">google.adk.evaluation module</a></li>
|
238
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.events">google.adk.events module</a></li>
|
239
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.examples">google.adk.examples module</a></li>
|
240
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.memory">google.adk.memory module</a></li>
|
241
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-models-module">google.adk.models module</a></li>
|
242
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-planners-module">google.adk.planners module</a></li>
|
243
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-runners-module">google.adk.runners module</a></li>
|
244
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#module-google.adk.sessions">google.adk.sessions module</a></li>
|
245
|
+
<li class="toctree-l1"><a class="reference internal" href="google-adk.html#google-adk-tools-module">google.adk.tools module</a></li>
|
246
|
+
</ul>
|
247
|
+
|
248
|
+
</div>
|
249
|
+
</div>
|
250
|
+
|
251
|
+
</div>
|
252
|
+
|
253
|
+
</div>
|
254
|
+
</aside>
|
255
|
+
<div class="main">
|
256
|
+
<div class="content">
|
257
|
+
<div class="article-container">
|
258
|
+
<a href="#" class="back-to-top muted-link">
|
259
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
260
|
+
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
|
261
|
+
</svg>
|
262
|
+
<span>Back to top</span>
|
263
|
+
</a>
|
264
|
+
<div class="content-icon-container">
|
265
|
+
<div class="theme-toggle-container theme-toggle-content">
|
266
|
+
<button class="theme-toggle">
|
267
|
+
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
|
268
|
+
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
|
269
|
+
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
|
270
|
+
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
|
271
|
+
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
|
272
|
+
</button>
|
273
|
+
</div>
|
274
|
+
<label class="toc-overlay-icon toc-content-icon no-toc" for="__toc">
|
275
|
+
<div class="visually-hidden">Toggle table of contents sidebar</div>
|
276
|
+
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
|
277
|
+
</label>
|
278
|
+
</div>
|
279
|
+
<article role="main" id="furo-main-content">
|
280
|
+
|
281
|
+
<section class="genindex-section">
|
282
|
+
<h1 id="index">Index</h1>
|
283
|
+
<div class="genindex-jumpbox"><a href="#A"><strong>A</strong></a> | <a href="#B"><strong>B</strong></a> | <a href="#C"><strong>C</strong></a> | <a href="#D"><strong>D</strong></a> | <a href="#E"><strong>E</strong></a> | <a href="#F"><strong>F</strong></a> | <a href="#G"><strong>G</strong></a> | <a href="#H"><strong>H</strong></a> | <a href="#I"><strong>I</strong></a> | <a href="#L"><strong>L</strong></a> | <a href="#M"><strong>M</strong></a> | <a href="#N"><strong>N</strong></a> | <a href="#O"><strong>O</strong></a> | <a href="#R"><strong>R</strong></a> | <a href="#S"><strong>S</strong></a> | <a href="#T"><strong>T</strong></a> | <a href="#U"><strong>U</strong></a> | <a href="#V"><strong>V</strong></a></div>
|
284
|
+
</section>
|
285
|
+
<section id="A" class="genindex-section">
|
286
|
+
<h2>A</h2>
|
287
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
288
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
289
|
+
<li><a href="google-adk.html#google.adk.events.Event.actions">actions (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id0">[1]</a>
|
290
|
+
</li>
|
291
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.add_input_files">add_input_files() (google.adk.code_executors.CodeExecutorContext method)</a>
|
292
|
+
</li>
|
293
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.add_processed_file_names">add_processed_file_names() (google.adk.code_executors.CodeExecutorContext method)</a>
|
294
|
+
</li>
|
295
|
+
<li><a href="google-adk.html#google.adk.memory.BaseMemoryService.add_session_to_memory">add_session_to_memory() (google.adk.memory.BaseMemoryService method)</a>
|
296
|
+
|
297
|
+
<ul>
|
298
|
+
<li><a href="google-adk.html#google.adk.memory.InMemoryMemoryService.add_session_to_memory">(google.adk.memory.InMemoryMemoryService method)</a>
|
299
|
+
</li>
|
300
|
+
<li><a href="google-adk.html#google.adk.memory.VertexAiRagMemoryService.add_session_to_memory">(google.adk.memory.VertexAiRagMemoryService method)</a>
|
301
|
+
</li>
|
302
|
+
</ul></li>
|
303
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.app_name">app_name (google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id19">[1]</a>
|
304
|
+
</li>
|
305
|
+
<li><a href="google-adk.html#google.adk.sessions.State.APP_PREFIX">APP_PREFIX (google.adk.sessions.State attribute)</a>
|
306
|
+
</li>
|
307
|
+
</ul></td>
|
308
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
309
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.app_state">app_state (google.adk.sessions.InMemorySessionService attribute)</a>
|
310
|
+
</li>
|
311
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.append_event">append_event() (google.adk.sessions.BaseSessionService method)</a>
|
312
|
+
|
313
|
+
<ul>
|
314
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.append_event">(google.adk.sessions.DatabaseSessionService method)</a>
|
315
|
+
</li>
|
316
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.append_event">(google.adk.sessions.InMemorySessionService method)</a>
|
317
|
+
</li>
|
318
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.append_event">(google.adk.sessions.VertexAiSessionService method)</a>
|
319
|
+
</li>
|
320
|
+
</ul></li>
|
321
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.artifact_delta">artifact_delta (google.adk.events.EventActions attribute)</a>
|
322
|
+
</li>
|
323
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.artifacts">artifacts (google.adk.artifacts.InMemoryArtifactService attribute)</a>
|
324
|
+
</li>
|
325
|
+
<li><a href="google-adk.html#google.adk.events.Event.author">author (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id9">[1]</a>
|
326
|
+
</li>
|
327
|
+
</ul></td>
|
328
|
+
</tr></table>
|
329
|
+
</section>
|
330
|
+
|
331
|
+
<section id="B" class="genindex-section">
|
332
|
+
<h2>B</h2>
|
333
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
334
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
335
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.base_url">base_url (google.adk.code_executors.ContainerCodeExecutor attribute)</a>
|
336
|
+
</li>
|
337
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService">BaseArtifactService (class in google.adk.artifacts)</a>
|
338
|
+
</li>
|
339
|
+
<li><a href="google-adk.html#google.adk.examples.BaseExampleProvider">BaseExampleProvider (class in google.adk.examples)</a>
|
340
|
+
</li>
|
341
|
+
</ul></td>
|
342
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
343
|
+
<li><a href="google-adk.html#google.adk.memory.BaseMemoryService">BaseMemoryService (class in google.adk.memory)</a>
|
344
|
+
</li>
|
345
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService">BaseSessionService (class in google.adk.sessions)</a>
|
346
|
+
</li>
|
347
|
+
<li><a href="google-adk.html#google.adk.events.Event.branch">branch (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id10">[1]</a>
|
348
|
+
</li>
|
349
|
+
</ul></td>
|
350
|
+
</tr></table>
|
351
|
+
</section>
|
352
|
+
|
353
|
+
<section id="C" class="genindex-section">
|
354
|
+
<h2>C</h2>
|
355
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
356
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
357
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.clear_input_files">clear_input_files() (google.adk.code_executors.CodeExecutorContext method)</a>
|
358
|
+
</li>
|
359
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.close_session">close_session() (google.adk.sessions.BaseSessionService method)</a>
|
360
|
+
</li>
|
361
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.code_block_delimiters">code_block_delimiters (google.adk.code_executors.BaseCodeExecutor attribute)</a>
|
362
|
+
</li>
|
363
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext">CodeExecutorContext (class in google.adk.code_executors)</a>
|
364
|
+
</li>
|
365
|
+
</ul></td>
|
366
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
367
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.create_session">create_session() (google.adk.sessions.BaseSessionService method)</a>
|
368
|
+
|
369
|
+
<ul>
|
370
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.create_session">(google.adk.sessions.DatabaseSessionService method)</a>
|
371
|
+
</li>
|
372
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.create_session">(google.adk.sessions.InMemorySessionService method)</a>
|
373
|
+
</li>
|
374
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.create_session">(google.adk.sessions.VertexAiSessionService method)</a>
|
375
|
+
</li>
|
376
|
+
</ul></li>
|
377
|
+
</ul></td>
|
378
|
+
</tr></table>
|
379
|
+
</section>
|
380
|
+
|
381
|
+
<section id="D" class="genindex-section">
|
382
|
+
<h2>D</h2>
|
383
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
384
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
385
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService">DatabaseSessionService (class in google.adk.sessions)</a>
|
386
|
+
</li>
|
387
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService.delete_artifact">delete_artifact() (google.adk.artifacts.BaseArtifactService method)</a>
|
388
|
+
|
389
|
+
<ul>
|
390
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService.delete_artifact">(google.adk.artifacts.GcsArtifactService method)</a>
|
391
|
+
</li>
|
392
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.delete_artifact">(google.adk.artifacts.InMemoryArtifactService method)</a>
|
393
|
+
</li>
|
394
|
+
</ul></li>
|
395
|
+
</ul></td>
|
396
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
397
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.delete_session">delete_session() (google.adk.sessions.BaseSessionService method)</a>
|
398
|
+
|
399
|
+
<ul>
|
400
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.delete_session">(google.adk.sessions.DatabaseSessionService method)</a>
|
401
|
+
</li>
|
402
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.delete_session">(google.adk.sessions.InMemorySessionService method)</a>
|
403
|
+
</li>
|
404
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.delete_session">(google.adk.sessions.VertexAiSessionService method)</a>
|
405
|
+
</li>
|
406
|
+
</ul></li>
|
407
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.docker_path">docker_path (google.adk.code_executors.ContainerCodeExecutor attribute)</a>
|
408
|
+
</li>
|
409
|
+
</ul></td>
|
410
|
+
</tr></table>
|
411
|
+
</section>
|
412
|
+
|
413
|
+
<section id="E" class="genindex-section">
|
414
|
+
<h2>E</h2>
|
415
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
416
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
417
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.error_retry_attempts">error_retry_attempts (google.adk.code_executors.BaseCodeExecutor attribute)</a>
|
418
|
+
</li>
|
419
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.escalate">escalate (google.adk.events.EventActions attribute)</a>
|
420
|
+
</li>
|
421
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.events">events (google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id20">[1]</a>
|
422
|
+
</li>
|
423
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.execute_code">execute_code() (google.adk.code_executors.BaseCodeExecutor method)</a>
|
424
|
+
|
425
|
+
<ul>
|
426
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.execute_code">(google.adk.code_executors.ContainerCodeExecutor method)</a>
|
427
|
+
</li>
|
428
|
+
<li><a href="google-adk.html#google.adk.code_executors.UnsafeLocalCodeExecutor.execute_code">(google.adk.code_executors.UnsafeLocalCodeExecutor method)</a>
|
429
|
+
</li>
|
430
|
+
<li><a href="google-adk.html#google.adk.code_executors.VertexAiCodeExecutor.execute_code">(google.adk.code_executors.VertexAiCodeExecutor method)</a>
|
431
|
+
</li>
|
432
|
+
</ul></li>
|
433
|
+
</ul></td>
|
434
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
435
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.execution_result_delimiters">execution_result_delimiters (google.adk.code_executors.BaseCodeExecutor attribute)</a>
|
436
|
+
</li>
|
437
|
+
</ul></td>
|
438
|
+
</tr></table>
|
439
|
+
</section>
|
440
|
+
|
441
|
+
<section id="F" class="genindex-section">
|
442
|
+
<h2>F</h2>
|
443
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
444
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
445
|
+
<li><a href="google-adk.html#google.adk.events.Event.from_function_response">from_function_response() (google.adk.events.Event class method)</a>
|
446
|
+
</li>
|
447
|
+
</ul></td>
|
448
|
+
</tr></table>
|
449
|
+
</section>
|
450
|
+
|
451
|
+
<section id="G" class="genindex-section">
|
452
|
+
<h2>G</h2>
|
453
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
454
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
455
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService">GcsArtifactService (class in google.adk.artifacts)</a>
|
456
|
+
</li>
|
457
|
+
<li><a href="google-adk.html#google.adk.sessions.State.get">get() (google.adk.sessions.State method)</a>
|
458
|
+
</li>
|
459
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.get_error_count">get_error_count() (google.adk.code_executors.CodeExecutorContext method)</a>
|
460
|
+
</li>
|
461
|
+
<li><a href="google-adk.html#google.adk.examples.BaseExampleProvider.get_examples">get_examples() (google.adk.examples.BaseExampleProvider method)</a>
|
462
|
+
|
463
|
+
<ul>
|
464
|
+
<li><a href="google-adk.html#google.adk.examples.VertexAiExampleStore.get_examples">(google.adk.examples.VertexAiExampleStore method)</a>
|
465
|
+
</li>
|
466
|
+
</ul></li>
|
467
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.get_execution_id">get_execution_id() (google.adk.code_executors.CodeExecutorContext method)</a>
|
468
|
+
</li>
|
469
|
+
<li><a href="google-adk.html#google.adk.events.Event.get_function_calls">get_function_calls (google.adk.events.Event attribute)</a>
|
470
|
+
</li>
|
471
|
+
<li><a href="google-adk.html#id15">get_function_calls() (google.adk.events.Event method)</a>
|
472
|
+
</li>
|
473
|
+
<li><a href="google-adk.html#google.adk.events.Event.get_function_responses">get_function_responses() (google.adk.events.Event method)</a>
|
474
|
+
</li>
|
475
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.get_input_files">get_input_files() (google.adk.code_executors.CodeExecutorContext method)</a>
|
476
|
+
</li>
|
477
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.get_processed_file_names">get_processed_file_names() (google.adk.code_executors.CodeExecutorContext method)</a>
|
478
|
+
</li>
|
479
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.get_session">get_session() (google.adk.sessions.BaseSessionService method)</a>
|
480
|
+
|
481
|
+
<ul>
|
482
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.get_session">(google.adk.sessions.DatabaseSessionService method)</a>
|
483
|
+
</li>
|
484
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.get_session">(google.adk.sessions.InMemorySessionService method)</a>
|
485
|
+
</li>
|
486
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.get_session">(google.adk.sessions.VertexAiSessionService method)</a>
|
487
|
+
</li>
|
488
|
+
</ul></li>
|
489
|
+
</ul></td>
|
490
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
491
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.get_state_delta">get_state_delta() (google.adk.code_executors.CodeExecutorContext method)</a>
|
492
|
+
</li>
|
493
|
+
<li>
|
494
|
+
google.adk.artifacts
|
495
|
+
|
496
|
+
<ul>
|
497
|
+
<li><a href="google-adk.html#module-google.adk.artifacts">module</a>
|
498
|
+
</li>
|
499
|
+
</ul></li>
|
500
|
+
<li>
|
501
|
+
google.adk.code_executors
|
502
|
+
|
503
|
+
<ul>
|
504
|
+
<li><a href="google-adk.html#module-google.adk.code_executors">module</a>
|
505
|
+
</li>
|
506
|
+
</ul></li>
|
507
|
+
<li>
|
508
|
+
google.adk.events
|
509
|
+
|
510
|
+
<ul>
|
511
|
+
<li><a href="google-adk.html#module-google.adk.events">module</a>
|
512
|
+
</li>
|
513
|
+
</ul></li>
|
514
|
+
<li>
|
515
|
+
google.adk.examples
|
516
|
+
|
517
|
+
<ul>
|
518
|
+
<li><a href="google-adk.html#module-google.adk.examples">module</a>
|
519
|
+
</li>
|
520
|
+
</ul></li>
|
521
|
+
<li>
|
522
|
+
google.adk.memory
|
523
|
+
|
524
|
+
<ul>
|
525
|
+
<li><a href="google-adk.html#module-google.adk.memory">module</a>
|
526
|
+
</li>
|
527
|
+
</ul></li>
|
528
|
+
<li>
|
529
|
+
google.adk.sessions
|
530
|
+
|
531
|
+
<ul>
|
532
|
+
<li><a href="google-adk.html#module-google.adk.sessions">module</a>
|
533
|
+
</li>
|
534
|
+
</ul></li>
|
535
|
+
</ul></td>
|
536
|
+
</tr></table>
|
537
|
+
</section>
|
538
|
+
|
539
|
+
<section id="H" class="genindex-section">
|
540
|
+
<h2>H</h2>
|
541
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
542
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
543
|
+
<li><a href="google-adk.html#google.adk.sessions.State.has_delta">has_delta() (google.adk.sessions.State method)</a>
|
544
|
+
</li>
|
545
|
+
</ul></td>
|
546
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
547
|
+
<li><a href="google-adk.html#google.adk.events.Event.has_trailing_code_exeuction_result">has_trailing_code_exeuction_result() (google.adk.events.Event method)</a>
|
548
|
+
</li>
|
549
|
+
</ul></td>
|
550
|
+
</tr></table>
|
551
|
+
</section>
|
552
|
+
|
553
|
+
<section id="I" class="genindex-section">
|
554
|
+
<h2>I</h2>
|
555
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
556
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
557
|
+
<li><a href="google-adk.html#google.adk.events.Event.id">id (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id11">[1]</a>
|
558
|
+
|
559
|
+
<ul>
|
560
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.id">(google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id21">[1]</a>
|
561
|
+
</li>
|
562
|
+
</ul></li>
|
563
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.image">image (google.adk.code_executors.ContainerCodeExecutor attribute)</a>
|
564
|
+
</li>
|
565
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.increment_error_count">increment_error_count() (google.adk.code_executors.CodeExecutorContext method)</a>
|
566
|
+
</li>
|
567
|
+
<li><a href="google-adk.html#google.adk.memory.InMemoryMemoryService">InMemoryMemoryService (class in google.adk.memory)</a>
|
568
|
+
</li>
|
569
|
+
</ul></td>
|
570
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
571
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService">InMemorySessionService (class in google.adk.sessions)</a>
|
572
|
+
</li>
|
573
|
+
<li><a href="google-adk.html#google.adk.examples.Example.input">input (google.adk.examples.Example attribute)</a>, <a href="google-adk.html#id17">[1]</a>
|
574
|
+
</li>
|
575
|
+
<li><a href="google-adk.html#google.adk.events.Event.invocation_id">invocation_id (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id12">[1]</a>
|
576
|
+
</li>
|
577
|
+
<li><a href="google-adk.html#google.adk.events.Event.is_final_response">is_final_response (google.adk.events.Event attribute)</a>
|
578
|
+
</li>
|
579
|
+
<li><a href="google-adk.html#id16">is_final_response() (google.adk.events.Event method)</a>
|
580
|
+
</li>
|
581
|
+
</ul></td>
|
582
|
+
</tr></table>
|
583
|
+
</section>
|
584
|
+
|
585
|
+
<section id="L" class="genindex-section">
|
586
|
+
<h2>L</h2>
|
587
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
588
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
589
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.last_update_time">last_update_time (google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id22">[1]</a>
|
590
|
+
</li>
|
591
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService.list_artifact_keys">list_artifact_keys() (google.adk.artifacts.BaseArtifactService method)</a>
|
592
|
+
|
593
|
+
<ul>
|
594
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService.list_artifact_keys">(google.adk.artifacts.GcsArtifactService method)</a>
|
595
|
+
</li>
|
596
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.list_artifact_keys">(google.adk.artifacts.InMemoryArtifactService method)</a>
|
597
|
+
</li>
|
598
|
+
</ul></li>
|
599
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.list_events">list_events() (google.adk.sessions.BaseSessionService method)</a>
|
600
|
+
|
601
|
+
<ul>
|
602
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.list_events">(google.adk.sessions.DatabaseSessionService method)</a>
|
603
|
+
</li>
|
604
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.list_events">(google.adk.sessions.InMemorySessionService method)</a>
|
605
|
+
</li>
|
606
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.list_events">(google.adk.sessions.VertexAiSessionService method)</a>
|
607
|
+
</li>
|
608
|
+
</ul></li>
|
609
|
+
<li><a href="google-adk.html#google.adk.sessions.BaseSessionService.list_sessions">list_sessions() (google.adk.sessions.BaseSessionService method)</a>
|
610
|
+
|
611
|
+
<ul>
|
612
|
+
<li><a href="google-adk.html#google.adk.sessions.DatabaseSessionService.list_sessions">(google.adk.sessions.DatabaseSessionService method)</a>
|
613
|
+
</li>
|
614
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.list_sessions">(google.adk.sessions.InMemorySessionService method)</a>
|
615
|
+
</li>
|
616
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService.list_sessions">(google.adk.sessions.VertexAiSessionService method)</a>
|
617
|
+
</li>
|
618
|
+
</ul></li>
|
619
|
+
</ul></td>
|
620
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
621
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService.list_versions">list_versions() (google.adk.artifacts.BaseArtifactService method)</a>
|
622
|
+
|
623
|
+
<ul>
|
624
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService.list_versions">(google.adk.artifacts.GcsArtifactService method)</a>
|
625
|
+
</li>
|
626
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.list_versions">(google.adk.artifacts.InMemoryArtifactService method)</a>
|
627
|
+
</li>
|
628
|
+
</ul></li>
|
629
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService.load_artifact">load_artifact() (google.adk.artifacts.BaseArtifactService method)</a>
|
630
|
+
|
631
|
+
<ul>
|
632
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService.load_artifact">(google.adk.artifacts.GcsArtifactService method)</a>
|
633
|
+
</li>
|
634
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.load_artifact">(google.adk.artifacts.InMemoryArtifactService method)</a>
|
635
|
+
</li>
|
636
|
+
</ul></li>
|
637
|
+
<li><a href="google-adk.html#google.adk.events.Event.long_running_tool_ids">long_running_tool_ids (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id13">[1]</a>
|
638
|
+
</li>
|
639
|
+
</ul></td>
|
640
|
+
</tr></table>
|
641
|
+
</section>
|
642
|
+
|
643
|
+
<section id="M" class="genindex-section">
|
644
|
+
<h2>M</h2>
|
645
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
646
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
647
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.model_post_init">model_post_init() (google.adk.code_executors.ContainerCodeExecutor method)</a>
|
648
|
+
|
649
|
+
<ul>
|
650
|
+
<li><a href="google-adk.html#google.adk.code_executors.VertexAiCodeExecutor.model_post_init">(google.adk.code_executors.VertexAiCodeExecutor method)</a>
|
651
|
+
</li>
|
652
|
+
<li><a href="google-adk.html#google.adk.events.Event.model_post_init">(google.adk.events.Event method)</a>
|
653
|
+
</li>
|
654
|
+
</ul></li>
|
655
|
+
<li>
|
656
|
+
module
|
657
|
+
|
658
|
+
<ul>
|
659
|
+
<li><a href="google-adk.html#module-google.adk.artifacts">google.adk.artifacts</a>
|
660
|
+
</li>
|
661
|
+
<li><a href="google-adk.html#module-google.adk.code_executors">google.adk.code_executors</a>
|
662
|
+
</li>
|
663
|
+
<li><a href="google-adk.html#module-google.adk.events">google.adk.events</a>
|
664
|
+
</li>
|
665
|
+
<li><a href="google-adk.html#module-google.adk.examples">google.adk.examples</a>
|
666
|
+
</li>
|
667
|
+
<li><a href="google-adk.html#module-google.adk.memory">google.adk.memory</a>
|
668
|
+
</li>
|
669
|
+
<li><a href="google-adk.html#module-google.adk.sessions">google.adk.sessions</a>
|
670
|
+
</li>
|
671
|
+
</ul></li>
|
672
|
+
</ul></td>
|
673
|
+
</tr></table>
|
674
|
+
</section>
|
675
|
+
|
676
|
+
<section id="N" class="genindex-section">
|
677
|
+
<h2>N</h2>
|
678
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
679
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
680
|
+
<li><a href="google-adk.html#google.adk.events.Event.new_id">new_id() (google.adk.events.Event static method)</a>
|
681
|
+
</li>
|
682
|
+
</ul></td>
|
683
|
+
</tr></table>
|
684
|
+
</section>
|
685
|
+
|
686
|
+
<section id="O" class="genindex-section">
|
687
|
+
<h2>O</h2>
|
688
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
689
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
690
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.optimize_data_file">optimize_data_file (google.adk.code_executors.BaseCodeExecutor attribute)</a>
|
691
|
+
|
692
|
+
<ul>
|
693
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.optimize_data_file">(google.adk.code_executors.ContainerCodeExecutor attribute)</a>
|
694
|
+
</li>
|
695
|
+
<li><a href="google-adk.html#google.adk.code_executors.UnsafeLocalCodeExecutor.optimize_data_file">(google.adk.code_executors.UnsafeLocalCodeExecutor attribute)</a>
|
696
|
+
</li>
|
697
|
+
</ul></li>
|
698
|
+
</ul></td>
|
699
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
700
|
+
<li><a href="google-adk.html#google.adk.examples.Example.output">output (google.adk.examples.Example attribute)</a>, <a href="google-adk.html#id18">[1]</a>
|
701
|
+
</li>
|
702
|
+
</ul></td>
|
703
|
+
</tr></table>
|
704
|
+
</section>
|
705
|
+
|
706
|
+
<section id="R" class="genindex-section">
|
707
|
+
<h2>R</h2>
|
708
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
709
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
710
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.requested_auth_configs">requested_auth_configs (google.adk.events.EventActions attribute)</a>
|
711
|
+
</li>
|
712
|
+
</ul></td>
|
713
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
714
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.reset_error_count">reset_error_count() (google.adk.code_executors.CodeExecutorContext method)</a>
|
715
|
+
</li>
|
716
|
+
<li><a href="google-adk.html#google.adk.code_executors.VertexAiCodeExecutor.resource_name">resource_name (google.adk.code_executors.VertexAiCodeExecutor attribute)</a>
|
717
|
+
</li>
|
718
|
+
</ul></td>
|
719
|
+
</tr></table>
|
720
|
+
</section>
|
721
|
+
|
722
|
+
<section id="S" class="genindex-section">
|
723
|
+
<h2>S</h2>
|
724
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
725
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
726
|
+
<li><a href="google-adk.html#google.adk.artifacts.BaseArtifactService.save_artifact">save_artifact() (google.adk.artifacts.BaseArtifactService method)</a>
|
727
|
+
|
728
|
+
<ul>
|
729
|
+
<li><a href="google-adk.html#google.adk.artifacts.GcsArtifactService.save_artifact">(google.adk.artifacts.GcsArtifactService method)</a>
|
730
|
+
</li>
|
731
|
+
<li><a href="google-adk.html#google.adk.artifacts.InMemoryArtifactService.save_artifact">(google.adk.artifacts.InMemoryArtifactService method)</a>
|
732
|
+
</li>
|
733
|
+
</ul></li>
|
734
|
+
<li><a href="google-adk.html#google.adk.memory.BaseMemoryService.search_memory">search_memory() (google.adk.memory.BaseMemoryService method)</a>
|
735
|
+
|
736
|
+
<ul>
|
737
|
+
<li><a href="google-adk.html#google.adk.memory.InMemoryMemoryService.search_memory">(google.adk.memory.InMemoryMemoryService method)</a>
|
738
|
+
</li>
|
739
|
+
<li><a href="google-adk.html#google.adk.memory.VertexAiRagMemoryService.search_memory">(google.adk.memory.VertexAiRagMemoryService method)</a>
|
740
|
+
</li>
|
741
|
+
</ul></li>
|
742
|
+
<li><a href="google-adk.html#google.adk.memory.InMemoryMemoryService.session_events">session_events (google.adk.memory.InMemoryMemoryService attribute)</a>
|
743
|
+
</li>
|
744
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.sessions">sessions (google.adk.sessions.InMemorySessionService attribute)</a>
|
745
|
+
</li>
|
746
|
+
</ul></td>
|
747
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
748
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.set_execution_id">set_execution_id() (google.adk.code_executors.CodeExecutorContext method)</a>
|
749
|
+
</li>
|
750
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.skip_summarization">skip_summarization (google.adk.events.EventActions attribute)</a>
|
751
|
+
</li>
|
752
|
+
<li><a href="google-adk.html#google.adk.sessions.State">State (class in google.adk.sessions)</a>
|
753
|
+
</li>
|
754
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.state">state (google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id23">[1]</a>
|
755
|
+
</li>
|
756
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.state_delta">state_delta (google.adk.events.EventActions attribute)</a>
|
757
|
+
</li>
|
758
|
+
<li><a href="google-adk.html#google.adk.code_executors.BaseCodeExecutor.stateful">stateful (google.adk.code_executors.BaseCodeExecutor attribute)</a>
|
759
|
+
|
760
|
+
<ul>
|
761
|
+
<li><a href="google-adk.html#google.adk.code_executors.ContainerCodeExecutor.stateful">(google.adk.code_executors.ContainerCodeExecutor attribute)</a>
|
762
|
+
</li>
|
763
|
+
<li><a href="google-adk.html#google.adk.code_executors.UnsafeLocalCodeExecutor.stateful">(google.adk.code_executors.UnsafeLocalCodeExecutor attribute)</a>
|
764
|
+
</li>
|
765
|
+
</ul></li>
|
766
|
+
</ul></td>
|
767
|
+
</tr></table>
|
768
|
+
</section>
|
769
|
+
|
770
|
+
<section id="T" class="genindex-section">
|
771
|
+
<h2>T</h2>
|
772
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
773
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
774
|
+
<li><a href="google-adk.html#google.adk.sessions.State.TEMP_PREFIX">TEMP_PREFIX (google.adk.sessions.State attribute)</a>
|
775
|
+
</li>
|
776
|
+
<li><a href="google-adk.html#google.adk.events.Event.timestamp">timestamp (google.adk.events.Event attribute)</a>, <a href="google-adk.html#id14">[1]</a>
|
777
|
+
</li>
|
778
|
+
</ul></td>
|
779
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
780
|
+
<li><a href="google-adk.html#google.adk.sessions.State.to_dict">to_dict() (google.adk.sessions.State method)</a>
|
781
|
+
</li>
|
782
|
+
<li><a href="google-adk.html#google.adk.events.EventActions.transfer_to_agent">transfer_to_agent (google.adk.events.EventActions attribute)</a>
|
783
|
+
</li>
|
784
|
+
</ul></td>
|
785
|
+
</tr></table>
|
786
|
+
</section>
|
787
|
+
|
788
|
+
<section id="U" class="genindex-section">
|
789
|
+
<h2>U</h2>
|
790
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
791
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
792
|
+
<li><a href="google-adk.html#google.adk.sessions.State.update">update() (google.adk.sessions.State method)</a>
|
793
|
+
</li>
|
794
|
+
<li><a href="google-adk.html#google.adk.code_executors.CodeExecutorContext.update_code_execution_result">update_code_execution_result() (google.adk.code_executors.CodeExecutorContext method)</a>
|
795
|
+
</li>
|
796
|
+
</ul></td>
|
797
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
798
|
+
<li><a href="google-adk.html#google.adk.sessions.Session.user_id">user_id (google.adk.sessions.Session attribute)</a>, <a href="google-adk.html#id24">[1]</a>
|
799
|
+
</li>
|
800
|
+
<li><a href="google-adk.html#google.adk.sessions.State.USER_PREFIX">USER_PREFIX (google.adk.sessions.State attribute)</a>
|
801
|
+
</li>
|
802
|
+
<li><a href="google-adk.html#google.adk.sessions.InMemorySessionService.user_state">user_state (google.adk.sessions.InMemorySessionService attribute)</a>
|
803
|
+
</li>
|
804
|
+
</ul></td>
|
805
|
+
</tr></table>
|
806
|
+
</section>
|
807
|
+
|
808
|
+
<section id="V" class="genindex-section">
|
809
|
+
<h2>V</h2>
|
810
|
+
<table style="width: 100%" class="indextable genindextable"><tr>
|
811
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
812
|
+
<li><a href="google-adk.html#google.adk.examples.VertexAiExampleStore">VertexAiExampleStore (class in google.adk.examples)</a>
|
813
|
+
</li>
|
814
|
+
</ul></td>
|
815
|
+
<td style="width: 33%; vertical-align: top;"><ul>
|
816
|
+
<li><a href="google-adk.html#google.adk.memory.VertexAiRagMemoryService">VertexAiRagMemoryService (class in google.adk.memory)</a>
|
817
|
+
</li>
|
818
|
+
<li><a href="google-adk.html#google.adk.sessions.VertexAiSessionService">VertexAiSessionService (class in google.adk.sessions)</a>
|
819
|
+
</li>
|
820
|
+
</ul></td>
|
821
|
+
</tr></table>
|
822
|
+
</section>
|
823
|
+
|
824
|
+
|
825
|
+
</article>
|
826
|
+
</div>
|
827
|
+
<footer>
|
828
|
+
|
829
|
+
<div class="related-pages">
|
830
|
+
|
831
|
+
|
832
|
+
</div>
|
833
|
+
<div class="bottom-of-page">
|
834
|
+
<div class="left-details">
|
835
|
+
<div class="copyright">
|
836
|
+
Copyright © 2025, Google
|
837
|
+
</div>
|
838
|
+
Made with <a href="https://www.sphinx-doc.org/">Sphinx</a> and <a class="muted-link" href="https://pradyunsg.me">@pradyunsg</a>'s
|
839
|
+
|
840
|
+
<a href="https://github.com/pradyunsg/furo">Furo</a>
|
841
|
+
|
842
|
+
</div>
|
843
|
+
<div class="right-details">
|
844
|
+
|
845
|
+
</div>
|
846
|
+
</div>
|
847
|
+
|
848
|
+
</footer>
|
849
|
+
</div>
|
850
|
+
<aside class="toc-drawer no-toc">
|
851
|
+
|
852
|
+
|
853
|
+
|
854
|
+
</aside>
|
855
|
+
</div>
|
856
|
+
</div><script src="_static/documentation_options.js?v=5929fcd5"></script>
|
857
|
+
<script src="_static/doctools.js?v=9a2dae69"></script>
|
858
|
+
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
859
|
+
<script src="_static/scripts/furo.js?v=5fa4622c"></script>
|
860
|
+
</body>
|
861
|
+
</html>
|