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
|
[tool.pdm.build]
includes = [
"rag",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [
{name = "Gustaf Rydholm", email = "gustaf.rydholm@gmail.com"},
]
requires-python = "<4.0,>=3.12"
dependencies = [
"ollama<1.0.0,>=0.3.1",
"langchain-community<1.0.0,>=0.0.31",
"langchain<1.0.0,>=0.1.14",
"jupyterlab-vim<5.0.0,>=4.1.3",
"pypdf<5.0.0,>=4.1.0",
"numpy<2.0.0,>=1.26.4",
"psycopg<4.0.0,>=3.1.18",
"python-dotenv<2.0.0,>=1.0.1",
"qdrant-client<2.0.0,>=1.8.2",
"loguru<1.0.0,>=0.7.2",
"cohere<6.0.0,>=5.2.3",
"tqdm<5.0.0,>=4.66.2",
"click<9.0.0,>=8.1.7",
"sentence-transformers<3.0.0,>=2.7.0",
"textual<1.0.0,>=0.83.0",
]
name = "rag"
version = "0.1.0"
description = ""
readme = "README.md"
|