-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 775 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 775 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
[tool.poetry]
name = "research-ai"
version = "0.1.0"
description = "AI Research Assistant — summarize papers, Q&A, find sources"
authors = ["KHELIF HADIL"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.111.0"
uvicorn = {extras = ["standard"], version = "^0.30.0"}
python-multipart = "^0.0.9"
langchain = "^0.2.0"
langchain-google-genai = "^1.0.0"
langchain-chroma = "^0.1.0"
langchain-text-splitters = "^0.2.0"
chromadb = "^0.5.0"
google-generativeai = "^0.7.0"
pydantic-settings = "^2.3.0"
python-dotenv = "^1.0.0"
pymupdf = "^1.24.0"
arxiv = "^2.1.0"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-asyncio = "^0.23.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"