Some checks failed
Pytest / Explore-Gitea-Actions (push) Failing after -13m22s
28 lines
741 B
TOML
28 lines
741 B
TOML
[project]
|
|
name = "code-rag"
|
|
version = "0.1.0"
|
|
description = "Simple RAG implementation for use with neovim"
|
|
authors = [{ name = "Alex Selimov", email = "alex@alexselimov.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9,<4.0"
|
|
dependencies = [
|
|
"langchain (>=0.3.21,<0.4.0)",
|
|
"ollama (>=0.4.7,<0.5.0)",
|
|
"langchain-community (>=0.3.20,<0.4.0)",
|
|
"langchain-ollama (>=0.2.3,<0.3.0)",
|
|
"chromadb (>=0.4.0,<0.6.0)",
|
|
"unstructured (>=0.17.2,<0.18.0)",
|
|
"langchain-chroma (>=0.1.0,<0.2.0)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [{ include = "code_rag", from = "src" }]
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.3.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|