42 lines
897 B
TOML
42 lines
897 B
TOML
[tool.poetry]
|
|
name = "assistant"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "app" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
uvicorn = "^0.23.2"
|
|
langserve = {extras = ["server"], version = ">=0.0.30"}
|
|
pydantic = "<3"
|
|
langgraph = "^0.2.28"
|
|
langchain = "^0.3.8"
|
|
langchain-community = "^0.3.8"
|
|
langchain-openai = "^0.2.5"
|
|
langchain-chroma = "^0.1.4"
|
|
google = "^3.0.0"
|
|
google-auth = "^2.35.0"
|
|
google-auth-oauthlib = "^1.1.0"
|
|
google-auth-httplib2 = "^0.1.0"
|
|
google-api-python-client = "^2.108.0"
|
|
flake8 = "^7.1.1"
|
|
httpx = "^0.27.2"
|
|
pytest = "^8.3.3"
|
|
requests = "^2.32.3"
|
|
jsonify = "^0.5"
|
|
protobuf = "^3.20.3"
|
|
pytz = "^2024.2"
|
|
telebot = "^0.0.5"
|
|
pypdf = "^5.1.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|