rag-poc / pyproject.toml
kanha-upadhyay's picture
Add initial project structure with .gitignore, environment example, and utility modules
6586d52
raw
history blame contribute delete
499 Bytes
[tool.poetry]
name = "rag-poc"
version = "0.1.0"
description = ""
authors = ["Kanha Upadhyay <kanha.upadhyay@sifars.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.*"
streamlit = "^1.44.0"
python-dotenv = "^1.1.0"
openai = "^1.70.0"
llama-index = "^0.12.27"
langchain = "^0.3.22"
langchain-openai = "^0.3.11"
faiss-cpu = "^1.10.0"
langchain-core = "^0.3.49"
langchain-community = "^0.3.20"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"