From e17e819a486767852d8cbc423e27a2a86f30bef2 Mon Sep 17 00:00:00 2001 From: reibs Date: Tue, 24 Sep 2024 23:18:02 -0700 Subject: [PATCH] Fixed spellcaster typos (how did we misspell agentops??) --- docs/v1/concepts/events.mdx | 2 +- docs/v1/examples/multi_agent.mdx | 4 ++-- docs/v1/examples/recording_events.mdx | 4 ++-- docs/v1/examples/simple_agent.mdx | 4 ++-- examples/multi_agent_example.ipynb | 4 ++-- examples/multi_agent_groq_example.ipynb | 4 ++-- examples/openai-gpt.ipynb | 2 +- examples/recording-events.ipynb | 4 ++-- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/v1/concepts/events.mdx b/docs/v1/concepts/events.mdx index a413fafa..cb167ad3 100644 --- a/docs/v1/concepts/events.mdx +++ b/docs/v1/concepts/events.mdx @@ -65,7 +65,7 @@ The ToolEvent class is for recording calls to tools e.g. searchWeb, fetchFromDB. | name | str | None | "Parsing Tool" | Name of the tool | | logs | str or dict | None | "Tool executed successfully" or `{"status": "success"}` | Logs from the tool execution | -The tool event should be created previous to running the tool in order to track the execution time. +The tool event should be created before running the tool in order to track the execution time. ```python python diff --git a/docs/v1/examples/multi_agent.mdx b/docs/v1/examples/multi_agent.mdx index 8f51035c..840f0b79 100644 --- a/docs/v1/examples/multi_agent.mdx +++ b/docs/v1/examples/multi_agent.mdx @@ -103,7 +103,7 @@ engineer = EngineerAgent() Now we have our agents and we tagged them with the `@track_agent` decorator. Any LLM calls that go through this class will now be tagged as agent calls in AgentOps. -Lets use these agents! +Let's use these agents! ```python @@ -129,7 +129,7 @@ display(Markdown("```python\n" + generated_test + "\n```")) Perfect! It generated the code as expected, and in the DEBUG logs, you can see that the calls were made by agents named "engineer" and "qa"! -Lets verify one more thing! If we make an LLM call outside of the context of a tracked agent, we want to make sure it gets assigned to the Default Agent. +Let's verify one more thing! If we make an LLM call outside of the context of a tracked agent, we want to make sure it gets assigned to the Default Agent. ```python diff --git a/docs/v1/examples/recording_events.mdx b/docs/v1/examples/recording_events.mdx index 3bdee3ca..c5edca3d 100644 --- a/docs/v1/examples/recording_events.mdx +++ b/docs/v1/examples/recording_events.mdx @@ -9,7 +9,7 @@ _View Notebook on