You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p class="quick-task-prompt">Please bake 12 chocolate chip cookies for tomorrow's event.</p>
164
+
</div>
165
+
</div>
166
+
</div>
167
+
```
168
+
### **Step 5: Update tasks**
169
+
Update `src/frontend/wwwroot/task/task.js`
170
+
171
+
1. **Add `BakerAgent`as a recognized agent typein the frontend JavaScript file**
172
+
```js
173
+
case "BakerAgent":
174
+
agentIcon="manager";
175
+
break;
176
+
```
177
+
### **Step 6: Validate the Integration**
155
178
Deploy the updated system and ensure the new agent is properly included in the planning process. For example, if the user requests to bake cookies, the `PlannerAgent` should:
156
179
157
180
- Identify the `BakerAgent`as the responsible agent.
158
181
- Call `bake_cookies`or`prepare_dough`from the agent's toolset.
159
182
160
-
### **Step 5: Update Documentation**
183
+
### **Step 7: Update Documentation**
161
184
Ensure that the system documentation reflects the addition of the new agent and its capabilities. Update the `README.md`andany related technical documentation to include information about the `BakerAgent`.
162
185
163
-
### **Step 6: Testing**
186
+
### **Step 8: Testing**
164
187
Thoroughly test the agent in both automated and manual scenarios. Verify that:
0 commit comments