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: README.md
+1-35Lines changed: 1 addition & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ The Evo AI platform allows:
15
15
- JWT authentication with email verification
16
16
-**[Agent 2 Agent (A2A) Protocol Support](https://developers.googleblog.com/en/a2a-a-new-era-of-agent-interoperability/)**: Interoperability between AI agents following Google's A2A specification
17
17
-**[Workflow Agent with LangGraph](https://www.langchain.com/langgraph)**: Building complex agent workflows with LangGraph and ReactFlow
18
-
-**[CrewAI Agent Support](https://www.crewai.com/)**: Organizing agents into specialized crews with assigned tasks
19
18
-**Secure API Key Management**: Encrypted storage of API keys with Fernet encryption
20
19
-**Agent Organization**: Folder structure for organizing agents by categories
21
20
@@ -154,40 +153,7 @@ Executes sub-agents in a custom workflow defined by a graph structure. This agen
154
153
155
154
The workflow structure is built using ReactFlow in the frontend, allowing visual creation and editing of complex agent workflows with nodes (representing agents or decision points) and edges (representing flow connections).
156
155
157
-
### 7. CrewAI Agent
158
-
159
-
Allows organizing agents into a "crew" with specific tasks assigned to each agent. Based on the CrewAI concept, where each agent has a specific responsibility to perform a more complex task collaboratively.
160
-
161
-
```json
162
-
{
163
-
"client_id": "{{client_id}}",
164
-
"name": "research_crew",
165
-
"type": "crew_ai",
166
-
"folder_id": "folder_id (optional)",
167
-
"config": {
168
-
"tasks": [
169
-
{
170
-
"agent_id": "agent-uuid-1",
171
-
"description": "Search for recent information on the topic",
172
-
"expected_output": "Search report in JSON format"
173
-
},
174
-
{
175
-
"agent_id": "agent-uuid-2",
176
-
"description": "Analyze data and create visualizations",
177
-
"expected_output": "Charts and analyses in HTML format"
178
-
},
179
-
{
180
-
"agent_id": "agent-uuid-3",
181
-
"description": "Write final report combining results",
182
-
"expected_output": "Markdown document with complete analysis"
183
-
}
184
-
],
185
-
"sub_agents": ["agent-uuid-4", "agent-uuid-5"]
186
-
}
187
-
}
188
-
```
189
-
190
-
### 8. Task Agent
156
+
### 7. Task Agent
191
157
192
158
Executes a specific task using a target agent. Task Agent provides a streamlined approach for structured task execution, where the agent_id specifies which agent will process the task, and the task description can include dynamic content placeholders.
0 commit comments