Skip to content

Commit

Permalink
Legibility updates (#268)
Browse files Browse the repository at this point in the history
Co-authored-by: akj <[email protected]>
  • Loading branch information
albertkimjunior authored Jun 26, 2024
1 parent f8ccbdc commit c67875d
Showing 1 changed file with 24 additions and 15 deletions.
39 changes: 24 additions & 15 deletions docs/v1/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,30 @@ mode: "wide"

<Check>[Give us a star](https://github.com/AgentOps-AI/agentops) on GitHub if you find AgentOps helpful (you may be our 2,000th 😊)</Check>

# AgentOps is your new terminal

<Card title="Terminals suck" icon="trash" iconType="solid" color="#d6483e">
- • Lose track of what your agents did in between executions
- • Parsing through terminal output searching for LLM completions
- • Printing "tool called"
</Card>
<Card title="AgentOps doesn't" icon="face-smile-halo" iconType="regular" color="#2bd600">
- • Visual dashboard so you can see what your agents did in human-readable format
- • LLM calls are magically recorded - prompt, completion, timestamps for each - with one line of code
- • Agents and their events (including tool calls) are recorded with one more line of code
- • Errors are magically associated to its causal event
- • Record any other events to your session with two more lines of code
- • Tons of other useful data if you're developing with supported agent frameworks: SDK version
</Card>
# AgentOps solves what Terminal can't

<CardGroup cols={2}>
<Card title="Terminal CAN'T..." icon="trash" iconType="solid" color="#d6483e">
- • Track agents across executions
- • Parse out LLM completions from output logs
- • Give you insight into what your agents did
</Card>
<Card title="AgentOps does it all and more..." icon="face-smile-halo" iconType="regular" color="#2bd600">
- • Record LLM prompts, completions, & timestamps
- • Log events, calls, and any other agent activity
- • Link agent errors back to their causal event
</Card>
</CardGroup>

And we do it all in just two lines of code...
<CodeGroup>
```python python
import agentops
agentops.init(<INSERT YOUR API KEY HERE>)
```
</CodeGroup>
... that logs everything back to your AgentOps Dashboard.


## The AgentOps Dashboard

Expand Down

0 comments on commit c67875d

Please sign in to comment.