-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 853 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
[project]
name = "local-llm-with-rag"
version = "0.1.0"
description = "An application exploring using local LLMs for research"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"ollama>=0.6.1",
"markitdown[all]>=0.1.4",
"pydantic-ai>=1.39.0",
"streamlit>=1.52.2",
"lancedb>=0.26.0",
"watchdog>=6.0.0",
"tqdm>=4.67.1",
]
[dependency-groups]
dev = [
"ruff>=0.14.10",
"pyrefly>=1.1.1",
"types-tqdm>=4.67.1",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "SIM"]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["core", "interfaces"]
[tool.pyrefly]
project-includes = ["**/*.py"]
project-excludes = [
".venv",
"storage",
"__pycache__",
"**/__pycache__",
]
python-version = "3.13"
python-platform = "darwin"