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
Copy file name to clipboardExpand all lines: documentation/CustomizeSolution.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
# Table of Contents
2
+
3
+
-[Table of Contents](#table-of-contents)
4
+
-[Accelerating your own Multi-Agent - Custom Automation Engine MVP](#accelerating-your-own-multi-agent---custom-automation-engine-mvp)
5
+
-[Technical Overview](#technical-overview)
6
+
-[Adding a New Agent to the Multi-Agent System](#adding-a-new-agent-to-the-multi-agent-system)
7
+
-[API Reference](#api-reference)
8
+
-[Models and Datatypes](#models-and-datatypes)
9
+
-[Application Flow](#application-flow)
10
+
-[Agents Overview](#agents-overview)
11
+
-[Persistent Storage with Cosmos DB](#persistent-storage-with-cosmos-db)
12
+
-[Utilities](#utilities)
13
+
-[Summary](#summary)
14
+
15
+
1
16
# Accelerating your own Multi-Agent - Custom Automation Engine MVP
2
17
3
18
As the name suggests, this project is designed to accelerate development of Multi-Agent solutions in your environment. The example solution presented shows how such a solution would be implemented and provides example agent definitions along with stubs for possible tools those agents could use to accomplish tasks. You will want to implement real functions in your own environment, to be used by agents customized around your own use cases. Users can choose the LLM that is optimized for responsible use. The default LLM is GPT-4o which inherits the existing responsible AI mechanisms and filters from the LLM provider. We encourage developers to review [OpenAI’s Usage policies](https://openai.com/policies/usage-policies/) and [Azure OpenAI’s Code of Conduct](https://learn.microsoft.com/en-us/legal/cognitive-services/openai/code-of-conduct) when using GPT-4o. This document is designed to provide the in-depth technical information to allow you to add these customizations. Once the agents and tools have been developed, you will likely want to implement your own real world front end solution to replace the example in this accelerator.
@@ -15,21 +30,6 @@ This application is an AI-driven orchestration system that manages a group of AI
15
30
This code has not been tested as an end-to-end, reliable production application- it is a foundation to help accelerate building out multi-agent systems. You are encouraged to add your own data and functions to the agents, and then you must apply your own performance and safety evaluation testing frameworks to this system before deploying it.
16
31
17
32
Below, we'll dive into the details of each component, focusing on the endpoints, data types, and the flow of information through the system.
18
-
# Table of Contents
19
-
20
-
-[Table of Contents](#table-of-contents)
21
-
-[Accelerating your own Multi-Agent - Custom Automation Engine MVP](#accelerating-your-own-multi-agent---custom-automation-engine-mvp)
22
-
-[Technical Overview](#technical-overview)
23
-
-[Adding a New Agent to the Multi-Agent System](#adding-a-new-agent-to-the-multi-agent-system)
24
-
-[API Reference](#api-reference)
25
-
-[Models and Datatypes](#models-and-datatypes)
26
-
-[Application Flow](#application-flow)
27
-
-[Agents Overview](#agents-overview)
28
-
-[Persistent Storage with Cosmos DB](#persistent-storage-with-cosmos-db)
29
-
-[Utilities](#utilities)
30
-
-[Summary](#summary)
31
-
32
-
33
33
## Adding a New Agent to the Multi-Agent System
34
34
35
35
This guide details the steps required to add a new agent to the Multi-Agent Custom Automation Engine. The process includes registering the agent, defining its capabilities through tools, and ensuring the PlannerAgent includes the new agent when generating activity plans.
0 commit comments