Skip to content

Commit 51ae9b4

Browse files
authored
bump: 0.0.8 (#44)
* bump: 0.0.8 * fix: update model
1 parent 53055b3 commit 51ae9b4

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
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]
58+
additional_dependencies: [lightning-sdk>=2025.08.08]
5959
pass_filenames: false
6060

6161
exclude: |

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lightning_sdk >= 2025.08.07
1+
lightning_sdk >= 2025.08.08

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.7"
14+
__version__ = "0.0.8"
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +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",
4043
"openai/o3-mini",
4144
)
4245
ModelLiteral = Literal[
@@ -48,5 +51,8 @@
4851
"lightning-ai/gpt-oss-20b",
4952
"openai/gpt-4",
5053
"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",
5157
"openai/o3-mini",
5258
]

src/litai/utils/update_model_list.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def main() -> int:
5151
if path.exists():
5252
content = path.read_text(encoding="utf-8")
5353
match = re.search(r"MODELS: Final = \(([\s\S]*?)\)", content)
54-
print("match", match)
5554
if match:
5655
tuple_content = match.group(1)
5756
# Use eval to safely parse the tuple content

0 commit comments

Comments
 (0)