diff --git a/README.md b/README.md index 27dc204ce..49ef22277 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,6 @@ agentcore invoke | ------------------- | ----------------------------- | | Strands Agents | AWS-native, streaming support | | LangChain/LangGraph | Graph-based workflows | -| CrewAI | Multi-agent orchestration | | Google ADK | Gemini models only | | OpenAI Agents | OpenAI models only | diff --git a/docs/frameworks.md b/docs/frameworks.md index ec53a1354..673c3789d 100644 --- a/docs/frameworks.md +++ b/docs/frameworks.md @@ -9,7 +9,6 @@ for existing code. | ----------------------- | ---------------------------------- | | **Strands Agents** | Bedrock, Anthropic, OpenAI, Gemini | | **LangChain_LangGraph** | Bedrock, Anthropic, OpenAI, Gemini | -| **CrewAI** | Bedrock, Anthropic, OpenAI, Gemini | | **GoogleADK** | Gemini only | | **OpenAIAgents** | OpenAI only | @@ -62,21 +61,6 @@ Google's Agent Development Kit. agentcore create --framework GoogleADK --model-provider Gemini ``` -### CrewAI - -Multi-agent orchestration framework. - -**Best for:** - -- Multi-agent workflows with role-based collaboration -- Projects requiring agent coordination and task delegation - -**Model providers:** Bedrock, Anthropic, OpenAI, Gemini - -```bash -agentcore create --framework CrewAI --model-provider Bedrock -``` - ### OpenAIAgents OpenAI's native agent framework. @@ -167,12 +151,12 @@ agentcore add agent \ ## Framework Comparison -| Feature | Strands | LangChain | CrewAI | GoogleADK | OpenAIAgents | -| ---------------------- | ------- | --------- | -------- | --------- | ------------ | -| Multi-provider support | Yes | Yes | Yes | No | No | -| AWS Bedrock native | Yes | No | No | No | No | -| Tool ecosystem | Growing | Extensive | Moderate | Moderate | Moderate | -| Memory integration | Native | Via libs | Via libs | Via libs | Via libs | +| Feature | Strands | LangChain | GoogleADK | OpenAIAgents | +| ---------------------- | ------- | --------- | --------- | ------------ | +| Multi-provider support | Yes | Yes | No | No | +| AWS Bedrock native | Yes | No | No | No | +| Tool ecosystem | Growing | Extensive | Moderate | Moderate | +| Memory integration | Native | Via libs | Via libs | Via libs | ## Protocol Compatibility @@ -180,6 +164,6 @@ Not all frameworks support all protocol modes. MCP protocol is a standalone tool | Protocol | Supported Frameworks | | -------- | ------------------------------------------------------------- | -| **HTTP** | Strands, LangChain_LangGraph, CrewAI, GoogleADK, OpenAIAgents | +| **HTTP** | Strands, LangChain_LangGraph, GoogleADK, OpenAIAgents | | **MCP** | None (standalone tool server) | | **A2A** | Strands, GoogleADK, LangChain_LangGraph |