diff --git a/docs/agents/multi-agents.md b/docs/agents/multi-agents.md index 15ad7fd96..83b7e65ae 100644 --- a/docs/agents/multi-agents.md +++ b/docs/agents/multi-agents.md @@ -275,7 +275,7 @@ ADK includes specialized agents derived from `BaseAgent` that don't perform task ``` * **[`LoopAgent`](workflow-agents/loop-agents.md):** Executes its `sub_agents` sequentially in a loop. - * **Termination:** The loop stops if the optional `max_iterations` is reached, or if any sub-agent returns an [`Event`](../events/index.md) with `escalate=True` in it's Event Actions. + * **Termination:** The loop stops if the optional `max_iterations` is reached, or if any sub-agent returns an [`Event`](../events/index.md) with `escalate=True` in its Event Actions. * **Context & State:** Passes the *same* `InvocationContext` in each iteration, allowing state changes (e.g., counters, flags) to persist across loops. === "Python" @@ -855,7 +855,7 @@ By combining ADK's composition primitives, you can implement various established ### Sequential Pipeline Pattern * **Structure:** A [`SequentialAgent`](workflow-agents/sequential-agents.md) contains `sub_agents` executed in a fixed order. -* **Goal:** Implement a multi-step process where the output of one step feeds into the next. +* **Goal:** Implement a multistep process where the output of one-step feeds into the next. * **ADK Primitives Used:** * **Workflow:** `SequentialAgent` defines the order. * **Communication:** Primarily uses **Shared Session State**. Earlier agents write results (often via `output_key`), later agents read those results from `context.state`. diff --git a/docs/deploy/cloud-run.md b/docs/deploy/cloud-run.md index 6af9d7d31..922b026b8 100644 --- a/docs/deploy/cloud-run.md +++ b/docs/deploy/cloud-run.md @@ -85,7 +85,7 @@ echo "<>" | gcloud secrets create GOOGLE_API_KEY - ``` ### Permissions to read -You should give appropiate permissision for you service account to read this secret. +You should give appropriate permission for you service account to read this secret. ```bash gcloud secrets add-iam-policy-binding GOOGLE_API_KEY --member="serviceAccount:1234567890-compute@developer.gserviceaccount.com" --role="roles/secretmanager.secretAccessor" --project=my-project ``` diff --git a/docs/deploy/gke.md b/docs/deploy/gke.md index 758ffb80e..d4d414d5f 100644 --- a/docs/deploy/gke.md +++ b/docs/deploy/gke.md @@ -598,7 +598,7 @@ sessions.db Build the container image abd deploy the application again. -### Insufficent Permission to Stream Logs `ERROR: (gcloud.builds.submit)` +### Insufficient Permission to Stream Logs `ERROR: (gcloud.builds.submit)` This error can occur when you don't have sufficient permissions to stream build logs, or your VPC-SC security policy restricts access to the default logs bucket. diff --git a/docs/runtime/resume.md b/docs/runtime/resume.md index 4229d9036..022bf1810 100644 --- a/docs/runtime/resume.md +++ b/docs/runtime/resume.md @@ -19,7 +19,7 @@ information, see ## Add resumable configuration -Enable the Resume function for an agent workflow by applying a Resumabiltiy +Enable the Resume function for an agent workflow by applying a Resumability configuration to the App object of your ADK workflow, as shown in the following code example: diff --git a/examples/python/tutorial/agent_team/adk-tutorial/step_1/agent.py b/examples/python/tutorial/agent_team/adk-tutorial/step_1/agent.py index cbe6a5374..60602b24d 100644 --- a/examples/python/tutorial/agent_team/adk-tutorial/step_1/agent.py +++ b/examples/python/tutorial/agent_team/adk-tutorial/step_1/agent.py @@ -14,7 +14,7 @@ # @title Import necessary libraries from google.adk.agents import Agent -from google.adk.models.lite_llm import LiteLlm # For multi-model support +from google.adk.models.lite_llm import LiteLlm # For multimodel support from google.adk.sessions import InMemorySessionService from google.adk.runners import Runner from google.genai import types # For creating message Content/Parts diff --git a/examples/python/tutorial/agent_team/adk-tutorial/step_3/agent.py b/examples/python/tutorial/agent_team/adk-tutorial/step_3/agent.py index 71f696576..62514277e 100644 --- a/examples/python/tutorial/agent_team/adk-tutorial/step_3/agent.py +++ b/examples/python/tutorial/agent_team/adk-tutorial/step_3/agent.py @@ -14,7 +14,7 @@ # @title Import necessary libraries from google.adk.agents import Agent -from google.adk.models.lite_llm import LiteLlm # For multi-model support +from google.adk.models.lite_llm import LiteLlm # For multimodel support from google.adk.sessions import InMemorySessionService from google.adk.runners import Runner from google.genai import types # For creating message Content/Parts