-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 944 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 944 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
[project]
name = "ragagent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.10.1",
"datasets>=4.0.0",
"duckduckgo-search>=8.1.1",
"huggingface-hub[hf-xet]>=0.34.4",
"langchain>=0.3.27",
"langchain-community>=0.3.27",
"langchain-core>=0.3.74",
"langchain-deepseek>=0.1.4",
"langchain-huggingface>=0.3.1",
"langgraph>=0.6.6",
"rank-bm25>=0.2.2",
"sentence-transformers>=5.1.0",
"torch>=2.8.0",
"torchvision>=0.23.0",
"transformers>=4.55.4",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu126", marker = "sys_platform != 'darwin'" }
]
torchvision = [
{ index = "pytorch-cu126", marker = "sys_platform != 'darwin'" }
]
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
explicit = true
[tool.ruff.lint]
select = ["E", "F" , "I"]
ignore = ["E501"]