|
[tool.poetry] |
|
name = "nlp-rag-question-answering-system" |
|
version = "0.1.0" |
|
description = "RAG Question Answering system for information retrieval from the provided documents." |
|
authors = ["Maksym Batiuk <batiukmaks@gmail.com>", "Olena Morozevych <olenka.moro@gmail.com>"] |
|
readme = "README.md" |
|
|
|
[tool.poetry.dependencies] |
|
python = "^3.12" |
|
langchain-text-splitters = "^0.3.2" |
|
pdftotext = "^3.0.0" |
|
numpy = "^2.2.0" |
|
sentence-transformers = "^3.3.1" |
|
rank-bm25 = "^0.2.2" |
|
litellm = "^1.54.0" |
|
gradio = "^5.8.0" |
|
|
|
|
|
[build-system] |
|
requires = ["poetry-core"] |
|
build-backend = "poetry.core.masonry.api" |
|
|