-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 972 Bytes
/
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
[tool.poetry]
name = "bpm-ai-inference"
version = "0.3.6"
description = "Inference and server for local AI implementations of bpm-ai-core abstractions."
authors = ["Bennet Krause <bennet.krause@holisticon.de>"]
repository = "https://github.com/holunda-io/bpm-ai-inference"
homepage = "https://www.holisticon.de/"
license = "GPL-3.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
bpm-ai-core = "^2.6.2"
langfuse = "^2.7.6"
faster-whisper = "^0.10.0"
lingua-language-detector = "^2.0.2"
pytesseract = "^0.3.10"
transformers = "^4.39.3"
sacremoses = "^0.1.1"
sentencepiece = "^0.2.0"
nltk = "^3.8.0"
optimum = {extras = ["onnxruntime"], version = "^1.18.0"}
gliner = "^0.1.6"
scipy = "1.10.1"
py-cpuinfo = "^9.0.0"
llama-cpp-python = "^0.3.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.23.5"
pytest-dotenv = "^0.5.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"