diff --git a/docs/changelog/main.mdx b/docs/changelog/main.mdx index bd00c24a38..e6d062e442 100644 --- a/docs/changelog/main.mdx +++ b/docs/changelog/main.mdx @@ -2,6 +2,59 @@ title: "Changelog" --- +## v0.14.14 +*25 May 2024* + +**New LLM Provider: Welcome Gemini!** + +We are excited to announce the addition of Google's Gemini to our list of supported LLM providers, bringing the total number to 12. + + + +## v0.14.1-13 +*24 May 2024* + +**Playground Improvements** +- We've improved the workflow for adding outputs to a dataset in the playground. In the past, you had to select the name of the test set each time. Now, the last used test set is selected by default.. + +- We have significantly improved the debugging experience when creating applications from code. Now, if an application fails, you can view the logs to understand the reason behind the failure. +- We moved the copy message button in the playground to the output text area. +- We now hide the cost and usage in the playground when they aren't specified +- We've made improvements to error messages in the playground + + +**Bug Fixes** +- Fixed the order of the arguments when running a custom code evaluator +- Fixed the timestamp in the Testset view (previous stamps was droppping the trailing 0) +- Fixed the creation of application from code in the self-hosted version when using Windows + +## v0.14.0 +*1 May 2024* + +**Prompt and Configuration Registry** + +We've introduced a feature that allows you to use Agenta as a prompt registry or management system. In the deployment view, we now provide an endpoint to directly fetch the latest version of your prompt. Here is how it looks like: +``` +from agenta import Agenta +agenta = Agenta() +config = agenta.get_config(base_id="xxxxx", environment="production", cache_timeout=200) # Fetches the configuration with caching +``` +You can find additional documentation [here](/prompt_management/integrating). + +**Improvements**- Previously, publishing a variant from the playground to an environment was a manual process., from now on we are publishing by default to the production environment. + + +## v0.13.8 +*28 April 2024* + +**Improvements** +- The total cost of an evaluation is now displayed in the evaluation table. This allows you to understand how much evaluations are costing you and track your expenses. + + +**Bug Fixes** +- Fixed sidebar focus in automatic evaluation results view +- Fix the incorrect URLs shown when running agenta variant serve + ## v0.13.1-5 - Evaluation Speed Increase and Numerous Quality of Life Improvements *23rd April 2024* diff --git a/docs/images/changelog/average_latency.png b/docs/images/changelog/average_latency.png new file mode 100644 index 0000000000..9ccf2219bd Binary files /dev/null and b/docs/images/changelog/average_latency.png differ diff --git a/docs/images/changelog/default-selected-testset.gif b/docs/images/changelog/default-selected-testset.gif new file mode 100644 index 0000000000..29698308ba Binary files /dev/null and b/docs/images/changelog/default-selected-testset.gif differ diff --git a/docs/images/changelog/gemini.png b/docs/images/changelog/gemini.png new file mode 100644 index 0000000000..5cf37796d1 Binary files /dev/null and b/docs/images/changelog/gemini.png differ diff --git a/docs/images/changelog/publish_to_production_by_default.png b/docs/images/changelog/publish_to_production_by_default.png new file mode 100644 index 0000000000..110a90c42c Binary files /dev/null and b/docs/images/changelog/publish_to_production_by_default.png differ diff --git a/docs/images/changelog/total_cost.png b/docs/images/changelog/total_cost.png new file mode 100644 index 0000000000..9ccf2219bd Binary files /dev/null and b/docs/images/changelog/total_cost.png differ