From 91e36a828efb8953eb4d9720dd6624e78c668750 Mon Sep 17 00:00:00 2001 From: Pierce Kelaita Date: Wed, 11 Sep 2024 15:12:03 -0700 Subject: [PATCH] [models] update gpt-4o version --- CHANGELOG.md | 8 +++++++- README.md | 4 ++-- l2m2/__init__.py | 2 +- l2m2/model_info.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73863b3..4e2d3d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Changelog -_Current version: 0.0.32_ +_Current version: 0.0.33_ [PyPi link](https://pypi.org/project/l2m2/) +### 0.0.33 - September 11, 2024 + +#### Changed + +- Updated gpt-4o version from `gpt-4o-2024-05-13` to `gpt-4o-2024-08-06`. + ### 0.0.32 - August 5, 2024 #### Added diff --git a/README.md b/README.md index edcbe4f..2456e8e 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=1722907074)](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=1722907074)](https://badge.fury.io/py/l2m2) +[![Tests](https://github.com/pkelaita/l2m2/actions/workflows/tests.yml/badge.svg?timestamp=1726092692)](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=1726092692)](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. @@ -25,7 +25,7 @@ L2M2 currently supports the following models: | Model Name | Provider(s) | Model Version(s) | | ------------------- | --------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -| `gpt-4o` | [OpenAI](https://openai.com/product) | `gpt-4o-2024-05-13` | +| `gpt-4o` | [OpenAI](https://openai.com/product) | `gpt-4o-2024-08-06` | | `gpt-4o-mini` | [OpenAI](https://openai.com/product) | `gpt-4o-mini-2024-07-18` | | `gpt-4-turbo` | [OpenAI](https://openai.com/product) | `gpt-4-turbo-2024-04-09` | | `gpt-3.5-turbo` | [OpenAI](https://openai.com/product) | `gpt-3.5-turbo-0125` | diff --git a/l2m2/__init__.py b/l2m2/__init__.py index 8ab049e..667c8b5 100644 --- a/l2m2/__init__.py +++ b/l2m2/__init__.py @@ -1 +1 @@ -__version__ = "0.0.32" +__version__ = "0.0.33" diff --git a/l2m2/model_info.py b/l2m2/model_info.py index 9e49ab3..e7008ca 100644 --- a/l2m2/model_info.py +++ b/l2m2/model_info.py @@ -125,7 +125,7 @@ class ModelEntry(TypedDict): MODEL_INFO: Dict[str, Dict[str, ModelEntry]] = { "gpt-4o": { "openai": { - "model_id": "gpt-4o-2024-05-13", + "model_id": "gpt-4o-2024-08-06", "params": { "temperature": { "default": PROVIDER_DEFAULT,