Skip to content

Commit

Permalink
Fixing broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
HowieG committed May 23, 2024
1 parent eaa00d7 commit 5292378
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/v1/details/events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `ActionEvent` is a generic event for recording events that do not fit into t
| logs | str | None | "Executed action successfully" | Logs generated during the action event |
| screenshot | str | None | "/path/to/screenshot.png" | Path to screenshot captured during the action event |

An action event can be used the [same way as other events](./recording-events.mdx) but also with the `record_function`
An action event can be used the [same way as other events](./recording-events) but also with the `record_function`
decorator.

```python
Expand Down
4 changes: 2 additions & 2 deletions docs/v1/details/recording-events.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Recording Events"
description: "Log events such as agent actions, LLM calls, tool calls, and errors. _See [Event Class](./events.mdx)_."
description: "Log events such as agent actions, LLM calls, tool calls, and errors. _See [Event Class](./events)_."
---

To get the most out of AgentOps, it is best to carefully consider what events to record -
Expand All @@ -27,7 +27,7 @@ The decorator will record the function's parameters, returns, and the time durat

From this point, simply call the .record() method in the AgentOps client:

Record any child of the [Event type](./events.mdx) or ErrorEvent.
Record any child of the [Event type](./events) or ErrorEvent.

```python python
from agentops import record, ActionEvent
Expand Down

0 comments on commit 5292378

Please sign in to comment.