-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 755 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
[project]
name = "llama2-practice"
version = "0.1.0"
description = "A Retrieval-Augmented Generation (RAG) system powered by LLaMA 2"
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"fastapi (>=0.133.1,<0.134.0)",
"uvicorn (>=0.41.0,<0.42.0)",
"llama-cpp-python (>=0.3.16,<0.4.0)",
"sentence-transformers (>=5.2.3,<6.0.0)",
"faiss-cpu (>=1.13.2,<2.0.0)",
"numpy (<2.2)",
"transformers (>=5.2.0,<6.0.0)",
"pydantic (>=2.12.5,<3.0.0)"
]
[[project.authors]]
name = "rosesonfire"
email = "ishti.ik@gmail.com"
[[project.maintainers]]
name = "rosesonfire"
email = "ishti.ik@gmail.com"
[tool.poetry]
packages = []
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"