Skip to content

Commit df624b6

Browse files
Update CustomizeSolution.md
1 parent 55ee693 commit df624b6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

documentation/CustomizeSolution.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Every agent is equipped with a set of tools (functions) that it can call to perf
4242
Example (for a `BakerAgent`):
4343
```python
4444
from autogen_core.components.tools import FunctionTool, Tool
45+
from typing import List
4546

4647
async def bake_cookies(cookie_type: str, quantity: int) -> str:
4748
return f"Baked {quantity} {cookie_type} cookies."
@@ -119,7 +120,7 @@ Update the `initialize_runtime_and_context` function in `utils.py` to include th
119120
runtime,
120121
baker_agent_id.type,
121122
lambda: BakerAgent(
122-
aoi_model_client,
123+
aoai_model_client,
123124
session_id,
124125
user_id,
125126
cosmos_memory,
@@ -614,4 +615,4 @@ This application orchestrates a group of AI agents to accomplish user-defined ta
614615

615616
Understanding the flow of data through the endpoints, agents, and persistent storage is key to grasping the logic of the application. Each component plays a specific role in ensuring tasks are planned, executed, and adjusted based on feedback, providing a robust and interactive system.
616617

617-
For instructions to setup a local development environment for the solution, please see [local deployment guide](./LocalDeployment.md).
618+
For instructions to setup a local development environment for the solution, please see [local deployment guide](./LocalDeployment.md).

0 commit comments

Comments
 (0)