-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.32 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
[tool.poetry]
name = "mtllm"
version = "0.3.1"
description = "MTLLM Provides Easy to use APIs for different LLM Providers to be used with Jaseci's Jaclang Programming Language."
maintainers = ["Chandra Irugalbandara <[email protected]>", "Kugesan Sivasothynathan <[email protected]>"]
authors = ["Chandra Irugalbandara <[email protected]>", "Kugesan Sivasothynathan <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["llm", "jaclang", "jaseci", "mtllm"]
[tool.poetry.dependencies]
python = "^3.12.0"
jaclang = "0.7.16"
loguru = "^0.7.2"
openai = { version = "^1.30.4", optional = true }
anthropic = { version = "^0.26.1", optional = true }
ollama = { version = "^0.2.0", optional = true }
together = { version = "^1.2.0", optional = true }
transformers = { version = "^4.41.1", optional = true }
groq = { version = "^0.8.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[tool.poetry.extras]
tools = ["wikipedia"]
video = ["opencv-python-headless"]
image = ["pillow"]
groq = ["groq"]
transformers = ["transformers"]
ollama = ["ollama"]
anthropic = ["anthropic"]
openai = ["openai"]
together = ["together"]
[tool.poetry.plugins."jac"]
mtllm = "mtllm.plugin:JacFeature"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"