-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 1 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
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'CLaRA_v1'
dynamic = ['version']
authors = [{name='Pierre-Olivier Bonin'},
{name='Marc-André Allard'}]
description = 'RAG-powered AI Research Assistant leveraging a ChromaDB vector database, a Streamlit frontend and an Ollama backend.'
readme = 'README.md'
requires-python = '== 3.12.*'
dependencies = [
'beautifulsoup4==4.13.4',
'chromadb==1.0.12',
'nltk==3.9.1',
'ollama==0.4.2',
'protobuf==4.25.8',
'pymupdf4llm==0.0.25',
'sentencepiece==0.2.0',
'sentence-transformers==3.0.1',
'streamlit==1.45.1',
'summac==0.0.4',
'transformers>=4.8.1',
# adapt the version you need according to your available compute resources
"torch==2.7.1+cu128",
]
[tool.setuptools.packages.find]
where = ["src/"]
[tool.uv.sources]
torch = { index = "pytorch-cu128" }
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true