-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.24 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "aiod_enhanced_interaction"
description = "An Enhanced Asset Search for AI on Demand"
version = "1.0.20250228"
requires-python = ">=3.11"
authors = [
]
dependencies = [
"fastapi==0.115.12",
"uvicorn==0.34.0",
"numpy==2.2.4",
"pydantic==2.10.6",
"pydantic-settings==2.8.1",
"tqdm==4.67.1",
"python-dotenv==1.1.0",
"pymilvus==2.5.5",
"transformers==4.44.2",
"sentence-transformers==3.0.1",
"tinydb==4.8.0",
"tinydb-serialization==2.1.1",
"apscheduler==3.10.4",
"langchain-core==0.3.47",
"langchain-ollama==0.2.3",
"ollama==0.4.7"
]
readme = "README.md"
[project.optional-dependencies]
dev = [
"black==24.8.0",
"flake8==7.2.0",
"isort==6.0.1",
"pre-commit==3.3.3",
"torch==2.6.0"
]
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 100
exclude = [
# TODO: Remove once refactored
"experiments",
]
[tool.codespell]
ignore-words-list = "checkin"
[tool.ruff.lint]
select = [
"S",
"I",
]
[tool.ruff.lint.isort]
known-local-folder = ["app"]