mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
Merge https://github.com/google/adk-python/pull/2864 **Reason for this change:** Multiple typos were found in comments, docstrings, and code throughout the codebase, which could lead to confusion and reduce code readability. **Changes made:** Fixed the following typos across 8 files: 1. contributing/samples/adk_answering_agent/utils.py:130: "extention" → "extension" 2. llms-full.txt:15171: "fuction" → "function" 3. src/google/adk/a2a/converters/part_converter.py: - Line 96: "Conver" → "Convert", "reponse" → "response" - Line 99: "suervice" → "service" - Line 100: "accordinlgy" → "accordingly" - Line 191: "Conver" → "Convert", "reponse" → "response" - Line 195: "accordinlgy" → "accordingly" 4. src/google/adk/agents/base_agent.py:568: "custome" → "custom" 5. src/google/adk/evaluation/agent_evaluator.py:572: "Retruns" → "Returns" 6. src/google/adk/flows/llm_flows/basic.py:55: "outoput_schema" → "output_schema" 7. src/google/adk/flows/llm_flows/contents.py:136: "fuction_response" → "function_response" 8. src/google/adk/models/google_llm.py:138: "gemini_llm_connecton.py" → "gemini_llm_connection.py" **Impact:** This change will: - Improve code documentation clarity and professionalism - Make comments, docstrings, and code more readable and accurate - Help prevent confusion for developers reading the code - Ensure consistency in terminology throughout the codebase This is a non-breaking change that only affects comments, documentation strings, and improves code clarity. COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2864 from ammmr:chore-fix-typos 3cea9fcf6f21edb006b63e9258d2b82930dd961d PiperOrigin-RevId: 805227784
Contributing Resources
This folder host resources for ADK contributors, for example, testing samples etc.
Samples
Samples folder host samples to test different features. The samples are usually minimal and simplistic to test one or a few scenarios.
Note: This is different from the google/adk-samples repo, which hosts more complex e2e samples for customers to use or modify directly.
ADK project and architecture overview
The adk_project_overview_and_architecture.md describes the ADK project overview and its technical architecture from high-level.
This is helpful for contributors to understand the project and design philosophy. It can also be feed into LLMs for vibe-coding.