diff --git a/CHANGELOG.md b/CHANGELOG.md index 5196add..c0a440c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,19 @@ # Changelog -_Current version: 0.0.34_ +_Current version: 0.0.35_ [PyPi link](https://pypi.org/project/l2m2/) +### 0.0.35 - October 22, 2024 + +#### Added + +- Support for Anthropic's updated [Claude 3.5 Sonnet](https://www.anthropic.com/news/3-5-models-and-computer-use) released today + +#### Changed + +- `claude-3.5-sonnet` now points to version `claude-3-5-sonnet-latest` + ### 0.0.34 - September 30, 2024 > [!CAUTION] diff --git a/README.md b/README.md index a04cb03..350abb6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # L2M2: A Simple Python LLM Manager 💬👍 -[![Tests](https://github.com/pkelaita/l2m2/actions/workflows/tests.yml/badge.svg?timestamp=1727732688)](https://github.com/pkelaita/l2m2/actions/workflows/tests.yml) [![codecov](https://codecov.io/github/pkelaita/l2m2/graph/badge.svg?token=UWIB0L9PR8)](https://codecov.io/github/pkelaita/l2m2) [![PyPI version](https://badge.fury.io/py/l2m2.svg?timestamp=1727732688)](https://badge.fury.io/py/l2m2) +[![Tests](https://github.com/pkelaita/l2m2/actions/workflows/tests.yml/badge.svg?timestamp=1729656605)](https://github.com/pkelaita/l2m2/actions/workflows/tests.yml) [![codecov](https://codecov.io/github/pkelaita/l2m2/graph/badge.svg?token=UWIB0L9PR8)](https://codecov.io/github/pkelaita/l2m2) [![PyPI version](https://badge.fury.io/py/l2m2.svg?timestamp=1729656605)](https://badge.fury.io/py/l2m2) **L2M2** ("LLM Manager" → "LLMM" → "L2M2") is a tiny and very simple LLM manager for Python that exposes lots of models through a unified API. This is useful for evaluation, demos, production applications etc. that need to easily be model-agnostic. @@ -31,7 +31,7 @@ L2M2 currently supports the following models: | `gpt-3.5-turbo` | [OpenAI](https://openai.com/product) | `gpt-3.5-turbo-0125` | | `gemini-1.5-pro` | [Google](https://ai.google.dev/) | `gemini-1.5-pro` | | `gemini-1.0-pro` | [Google](https://ai.google.dev/) | `gemini-1.0-pro` | -| `claude-3.5-sonnet` | [Anthropic](https://www.anthropic.com/api) | `claude-3-5-sonnet-20240620` | +| `claude-3.5-sonnet` | [Anthropic](https://www.anthropic.com/api) | `claude-3-5-sonnet-latest` | | `claude-3-opus` | [Anthropic](https://www.anthropic.com/api) | `claude-3-opus-20240229` | | `claude-3-sonnet` | [Anthropic](https://www.anthropic.com/api) | `claude-3-sonnet-20240229` | | `claude-3-haiku` | [Anthropic](https://www.anthropic.com/api) | `claude-3-haiku-20240307` | diff --git a/l2m2/__init__.py b/l2m2/__init__.py index 9621eef..26bde01 100644 --- a/l2m2/__init__.py +++ b/l2m2/__init__.py @@ -1 +1 @@ -__version__ = "0.0.34" +__version__ = "0.0.35" diff --git a/l2m2/model_info.py b/l2m2/model_info.py index e962d05..c0ae982 100644 --- a/l2m2/model_info.py +++ b/l2m2/model_info.py @@ -216,7 +216,7 @@ class ModelEntry(TypedDict): }, "claude-3.5-sonnet": { "anthropic": { - "model_id": "claude-3-5-sonnet-20240620", + "model_id": "claude-3-5-sonnet-latest", "params": { "temperature": { "default": 0.0,