Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup docs + changelog #1192

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions docs/changelog/main.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@
title: "Changelog"
---

## v0.7.1 - Adding Cost and Token Usage to the Playground

*12th January 2023*
<Warning> This change requires you to pull the latest version of the agenta platform if you're using the self-serve version.</Warning>

<img height="600" src="/images/changelog/screenshot_cost_and_token_usage.png" />

We've added a feature that allows you to compare the time taken by an LLM app, its cost, and track token usage, all in one place.

### Changes to the SDK

This necessitated modifications to the SDK. Now, the LLM application API returns a JSON instead of a string. The JSON includes the output message, usage details, and cost:

```
{
"message": string,
"usage": {
"prompt_tokens": int,
"completion_tokens": int,
"total_tokens": int
},
"cost": float
}
```



## v0.6.6 - Improving Side-by-side Comparison in the Playground
*19th December 2023*
- Enhanced the side-by-side comparison in the playground for better user experience
Expand Down
24 changes: 0 additions & 24 deletions docs/cookbook/list_templates_by_architecture.mdx

This file was deleted.

19 changes: 0 additions & 19 deletions docs/cookbook/list_templates_by_technology.mdx

This file was deleted.

15 changes: 0 additions & 15 deletions docs/cookbook/list_templates_by_use_case.mdx

This file was deleted.

Empty file.
Empty file.
85 changes: 0 additions & 85 deletions docs/developer_guides/contributing/technical_details.mdx

This file was deleted.

Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading