-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[project]
name = "log-classifier"
version = "0.1.0"
description = "Hybrid ML inference API for log classification (Regex + Embedding + Logistic Regression + LLM fallback)"
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "SavvyLegend", email = ""}]
license = {text = "MIT"}
dependencies = [
"fastapi>=0.133.1",
"groq>=1.0.0",
"joblib>=1.5.3",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"python-dotenv>=1.2.1",
"numpy<2",
"scikit-learn==1.6.1",
"sentence-transformers==2.6.1",
"transformers==4.38.2",
"torch==2.2.2",
"uvicorn>=0.41.0",
"python-multipart>=0.0.22",
"gunicorn==21.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/log_classifier"]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
"requests>=2.32.5",
"streamlit>=1.54.0",
]