We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df624b6 commit f7ec2c8Copy full SHA for f7ec2c8
documentation/CustomizeSolution.md
@@ -129,14 +129,14 @@ Update the `initialize_runtime_and_context` function in `utils.py` to include th
129
),
130
)
131
```
132
-6. **Add to HumanAgent**:
+6. **Add to agent_ids**:
133
```python
134
- await HumanAgent.register(
+ agent_ids = {
135
BAgentType.baker_agent: baker_agent_id,
136
137
-7. **Add to GroupChatManager**:
+7. **Add to retrieve_all_agent_tools**:
138
139
- await GroupChatManager.register(
+ def retrieve_all_agent_tools() -> List[Dict[str, Any]]:
140
baker_tools: List[Tool] = get_baker_tools()
141
142
8. **Append baker_tools to functions**:
0 commit comments