-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 938 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
40
41
42
43
44
45
[project]
name = "kaig"
version = "0.1.0"
description = "Hi! My name is Kai G. I'm a knowledge AI, skilled in vector search, and graph RAG. My DB of choice is SurrealDB."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ollama>=0.6.1",
"openai>=2.29.0",
"pydantic>=2.12.5",
"sentence-transformers>=5.3.0",
"surrealdb>=1.0.8",
]
[dependency-groups]
dev = [
"ruff>=0.15.6",
"demo-graph",
"notebooks",
"pytest>=9.0.2",
"ipykernel>=7.2.0",
"ty>=0.0.23",
"basedpyright>=1.38.3",
]
[tool.uv.sources]
demo-graph = { workspace = true }
notebooks = { workspace = true }
# surrealdb = { git = "https://github.com/surrealdb/surrealdb.py", branch = "feat/migrate-cerberus-to-pydantic" }
[tool.uv.workspace]
members = ["examples/*"]
[tool.ruff]
line-length = 80
indent-width = 4
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ty.environment]
python = ".venv"
[tool.ty.rules]