From 11a3d4b8401159b4c8d6bb150aca3cc0ef4ced0b Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Mon, 9 Dec 2024 11:42:36 -0300 Subject: [PATCH] docs: Add quotes to agentops installing command (#1729) * docs: Add quotes to agentops installing command * feat: Add ContextualMemory to __init__ * feat: remove import due to circular improt * feat: update tasks config main template typos --- docs/how-to/agentops-observability.mdx | 2 +- src/crewai/cli/templates/crew/config/tasks.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how-to/agentops-observability.mdx b/docs/how-to/agentops-observability.mdx index ce50d1fc5..b6ade320e 100644 --- a/docs/how-to/agentops-observability.mdx +++ b/docs/how-to/agentops-observability.mdx @@ -57,7 +57,7 @@ This feature is useful for debugging and understanding how agents interact with Install AgentOps with: ```bash - pip install crewai[agentops] + pip install 'crewai[agentops]' ``` or ```bash diff --git a/src/crewai/cli/templates/crew/config/tasks.yaml b/src/crewai/cli/templates/crew/config/tasks.yaml index f30820855..e6c0870a2 100644 --- a/src/crewai/cli/templates/crew/config/tasks.yaml +++ b/src/crewai/cli/templates/crew/config/tasks.yaml @@ -12,6 +12,6 @@ reporting_task: Review the context you got and expand each topic into a full section for a report. Make sure the report is detailed and contains any and all relevant information. expected_output: > - A fully fledge reports with the mains topics, each with a full section of information. + A fully fledged report with the main topics, each with a full section of information. Formatted as markdown without '```' agent: reporting_analyst