Skip to content

Commit 40031a2

Browse files
authored
bump: 0.0.9 (#48)
1 parent 85de916 commit 40031a2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ repos:
5555
name: Generate model literals
5656
entry: sh -c 'python src/litai/utils/update_model_list.py && git add src/litai/utils/supported_public_models.py'
5757
language: python
58-
additional_dependencies: [lightning-sdk>=2025.08.08]
58+
additional_dependencies: [lightning-sdk>=2025.08.08.post1]
5959
pass_filenames: false
6060

6161
exclude: |

src/litai/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
__version__ = "0.0.8"
14+
__version__ = "0.0.9"
1515
__author__ = "Lightning-AI et al."
1616
__author_email__ = "[email protected]"
1717
__copyright__ = f"Copyright (c) 2025, {__author__}."

src/litai/utils/supported_public_models.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
"lightning-ai/gpt-oss-20b",
3838
"openai/gpt-4",
3939
"openai/gpt-4o",
40-
"openai/gpt-5-2025-08-07",
41-
"openai/gpt-5-mini-2025-08-07",
42-
"openai/gpt-5-nano-2025-08-07",
40+
"openai/gpt-5",
41+
"openai/gpt-5-mini",
42+
"openai/gpt-5-nano",
4343
"openai/o3-mini",
4444
)
4545
ModelLiteral = Literal[
@@ -51,8 +51,8 @@
5151
"lightning-ai/gpt-oss-20b",
5252
"openai/gpt-4",
5353
"openai/gpt-4o",
54-
"openai/gpt-5-2025-08-07",
55-
"openai/gpt-5-mini-2025-08-07",
56-
"openai/gpt-5-nano-2025-08-07",
54+
"openai/gpt-5",
55+
"openai/gpt-5-mini",
56+
"openai/gpt-5-nano",
5757
"openai/o3-mini",
5858
]

0 commit comments

Comments
 (0)