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
Binary file
|
@@ -0,0 +1,373 @@
|
|
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="genindex.html" /><link rel="search" title="Search" href="search.html" />
|
22
|
+
|
23
|
+
<!-- Generated with Sphinx 7.4.7 and Furo 2024.08.06 --><title>Python Module 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="domainindex-section">
|
282
|
+
<h1>Python Module Index</h1>
|
283
|
+
<div class="domainindex-jumpbox"><a href="#cap-g"><strong>g</strong></a></div>
|
284
|
+
</section>
|
285
|
+
<table class="domainindex-table">
|
286
|
+
<tr class="pcap">
|
287
|
+
<td></td><td> </td><td></td>
|
288
|
+
</tr>
|
289
|
+
<tr class="cap" id="cap-g">
|
290
|
+
<td></td><td><strong>g</strong></td><td></td>
|
291
|
+
</tr>
|
292
|
+
<tr>
|
293
|
+
<td><img src="_static/minus.png" class="toggler"
|
294
|
+
id="toggle-1" style="display: none" alt="-" /></td>
|
295
|
+
<td>
|
296
|
+
<code class="xref">google</code></td><td>
|
297
|
+
<em></em></td>
|
298
|
+
</tr>
|
299
|
+
<tr class="cg-1">
|
300
|
+
<td></td>
|
301
|
+
<td>   
|
302
|
+
<a href="google-adk.html#module-google.adk.artifacts"><code class="xref">google.adk.artifacts</code></a></td><td>
|
303
|
+
<em></em></td>
|
304
|
+
</tr>
|
305
|
+
<tr class="cg-1">
|
306
|
+
<td></td>
|
307
|
+
<td>   
|
308
|
+
<a href="google-adk.html#module-google.adk.code_executors"><code class="xref">google.adk.code_executors</code></a></td><td>
|
309
|
+
<em></em></td>
|
310
|
+
</tr>
|
311
|
+
<tr class="cg-1">
|
312
|
+
<td></td>
|
313
|
+
<td>   
|
314
|
+
<a href="google-adk.html#module-google.adk.events"><code class="xref">google.adk.events</code></a></td><td>
|
315
|
+
<em></em></td>
|
316
|
+
</tr>
|
317
|
+
<tr class="cg-1">
|
318
|
+
<td></td>
|
319
|
+
<td>   
|
320
|
+
<a href="google-adk.html#module-google.adk.examples"><code class="xref">google.adk.examples</code></a></td><td>
|
321
|
+
<em></em></td>
|
322
|
+
</tr>
|
323
|
+
<tr class="cg-1">
|
324
|
+
<td></td>
|
325
|
+
<td>   
|
326
|
+
<a href="google-adk.html#module-google.adk.memory"><code class="xref">google.adk.memory</code></a></td><td>
|
327
|
+
<em></em></td>
|
328
|
+
</tr>
|
329
|
+
<tr class="cg-1">
|
330
|
+
<td></td>
|
331
|
+
<td>   
|
332
|
+
<a href="google-adk.html#module-google.adk.sessions"><code class="xref">google.adk.sessions</code></a></td><td>
|
333
|
+
<em></em></td>
|
334
|
+
</tr>
|
335
|
+
</table>
|
336
|
+
|
337
|
+
</article>
|
338
|
+
</div>
|
339
|
+
<footer>
|
340
|
+
|
341
|
+
<div class="related-pages">
|
342
|
+
|
343
|
+
|
344
|
+
</div>
|
345
|
+
<div class="bottom-of-page">
|
346
|
+
<div class="left-details">
|
347
|
+
<div class="copyright">
|
348
|
+
Copyright © 2025, Google
|
349
|
+
</div>
|
350
|
+
Made with <a href="https://www.sphinx-doc.org/">Sphinx</a> and <a class="muted-link" href="https://pradyunsg.me">@pradyunsg</a>'s
|
351
|
+
|
352
|
+
<a href="https://github.com/pradyunsg/furo">Furo</a>
|
353
|
+
|
354
|
+
</div>
|
355
|
+
<div class="right-details">
|
356
|
+
|
357
|
+
</div>
|
358
|
+
</div>
|
359
|
+
|
360
|
+
</footer>
|
361
|
+
</div>
|
362
|
+
<aside class="toc-drawer no-toc">
|
363
|
+
|
364
|
+
|
365
|
+
|
366
|
+
</aside>
|
367
|
+
</div>
|
368
|
+
</div><script src="_static/documentation_options.js?v=5929fcd5"></script>
|
369
|
+
<script src="_static/doctools.js?v=9a2dae69"></script>
|
370
|
+
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
|
371
|
+
<script src="_static/scripts/furo.js?v=5fa4622c"></script>
|
372
|
+
</body>
|
373
|
+
</html>
|