diff --git a/README.md b/README.md index 55028a03..94c7ab20 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,8 @@ All your sessions are available on the [AgentOps dashboard](https://app.agentops Build Crew agents with observability with only 2 lines of code. Simply set an `AGENTOPS_API_KEY` in your environment, and your crews will get automatic monitoring on the AgentOps dashboard. -AgentOps is integrated with CrewAI on a pre-release fork. Install crew with - ```bash -pip install git+https://github.com/AgentOps-AI/crewAI.git@main +pip install 'crewai[agentops]' ``` - [AgentOps integration example](https://docs.agentops.ai/v1/integrations/crewai) diff --git a/docs/v1/integrations/crewai.mdx b/docs/v1/integrations/crewai.mdx index 120ab7a4..4029411d 100644 --- a/docs/v1/integrations/crewai.mdx +++ b/docs/v1/integrations/crewai.mdx @@ -6,7 +6,7 @@ description: '[CrewAI](https://crewai.io) is a framework for easily building mul import CodeTooltip from '/snippets/add-code-tooltip.mdx' import EnvTooltip from '/snippets/add-env-tooltip.mdx' -AgentOps and CrewAI teamed up to make monitoring Crew agents dead simple. Crew and AgentOps have a first class partnership, adding agent observability to all Crew runs with 3 lines of code. +AgentOps and CrewAI teamed up to make monitoring Crew agents dead simple. Crew and AgentOps have a first class partnership, adding agent observability to all Crew runs with 2 lines of code. CrewAI multi-agent framework with AgentOps support @@ -38,16 +38,13 @@ Crew has comprehensive [documentation](https://docs.crewai.com) available as wel ``` - + ```python python import agentops agentops.init() - ... - # MUST END SESSION at end of program (e.g. main.py) - agentops.end_session("Success") # Success|Fail|Indeterminate ```