diff --git a/docs/v0/logger.mdx b/docs/v0/logger.mdx index 209e4687..dd951402 100644 --- a/docs/v0/logger.mdx +++ b/docs/v0/logger.mdx @@ -7,7 +7,7 @@ description: 'This document explains the use of the AgentOpsLogger ## AgentOps logger -The AgentsOps logger is quick and simple way of integrating your existing +The AgentOps logger is quick and simple way of integrating your existing agent codebase with AgentOps. It allows you to use your current logs as events by extending the built-in Python logging system to emit events to AgentOps. diff --git a/docs/v0/recording-events.mdx b/docs/v0/recording-events.mdx index ff4181f9..c831a5a2 100644 --- a/docs/v0/recording-events.mdx +++ b/docs/v0/recording-events.mdx @@ -35,7 +35,7 @@ From this point, simply call the .record() method in the AgentOps client: ao_client.record(Event("event_type1")) ``` -In AgentsOps, each session is associated with a number of "Events". Events have +In AgentOps, each session is associated with a number of "Events". Events have must have an "event_type" which is any abitrary string of your choice. It might be something like "OpenAI Call". Events can also have other information such as the parameters of the operation, the returned data, alongside tags, etc.