-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 1.76 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "think-llm"
version = "0.0.12"
description = "Create programs that think, using LLMs."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.12.4",
"jinja2>=3.1.2",
"httpx>=0.27.2",
"litellm>=1.75.7",
]
authors = [{ name = "Senko Rasic", email = "senko@senko.net" }]
license = { text = "MIT" }
homepage = "https://github.com/senko/think"
repository = "https://github.com/senko/think"
keywords = ["ai", "llm", "rag", "agents"]
[project.optional-dependencies]
openai = ["openai>=1.53.0"]
anthropic = ["anthropic>=0.74.1"]
gemini = ["google-generativeai>=0.8.5"]
groq = ["groq>=0.36.0"]
ollama = ["ollama>=0.6.1"]
bedrock = ["aioboto3>=15.5.0"]
txtai = ["txtai>=9.2.0"]
chromadb = ["chromadb>=1.3.5"]
pinecone = ["pinecone>=8.0.0"]
all = [
"openai>=1.53.0",
"anthropic>=0.74.1",
"google-generativeai>=0.8.5",
"groq>=0.36.0",
"ollama>=0.6.1",
"aioboto3>=15.5.0",
"txtai>=9.2.0",
"chromadb>=1.3.5",
"pinecone>=8.0.0",
"pinecone-client>=4.1.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["think"]
[tool.pytest.ini_options]
addopts = "-ra -q --cov=think --no-cov-on-fail"
pythonpath = ["."]
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:"]
[tool.pyright]
typeCheckingMode = "off"
[dependency-groups]
dev = [
"aioboto3>=15.5.0",
"anthropic>=0.74.1",
"chromadb>=1.3.5",
"coverage>=7.12.0",
"google-generativeai>=0.8.5",
"groq>=0.36.0",
"ollama>=0.6.1",
"pinecone>=8.0.0",
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"pytest-coverage>=0.0",
"ruff>=0.14.6",
"txtai>=9.2.0",
"ty>=0.0.1a27",
]