Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ version = "0.1.1"
description = "Structured LLM based classification, clustering and extraction framework that works with all major API providers"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [{ name = "Fir121", email = "" }]
keywords = ["llm", "classification", "clustering", "pydantic", "machine-learning", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
2 changes: 2 additions & 0 deletions src/llm_classifier/classifier.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Core LLMClassifier implementation."""

from __future__ import annotations

import hashlib
import json
import threading
Expand Down
2 changes: 2 additions & 0 deletions src/llm_classifier/cluster.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Core LLMCluster implementation."""

from __future__ import annotations

import json
from dataclasses import dataclass
from typing import Any, Generic, Type, TypeVar
Expand Down