generated from samuelint/python-poetry-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (29 loc) · 956 Bytes
/
pyproject.toml
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
32
33
34
35
[tool.poetry]
name = "langchain-llamacpp-chat-model"
version = "0.2.2"
description = ""
readme = "README.md"
authors = []
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
llama-cpp-python = "^0.2.81"
langchain-openai = "^0.1.14"
langchain = { version = "^0.2.6", optional = true }
anyio = { version = "^4.4.0", optional = true }
fastapi = { version = "^0.111.0", optional = true }
sse-starlette = { version = "^2.1.2", optional = true }
starlette-context = { version = "^0.3.6", optional = true }
pydantic-settings = { version = "^2.3.4", optional = false }
[tool.poetry.extras]
langchain = ["langchain"]
llama_proxy = ["anyio", "fastapi", "sse-starlette", "starlette-context"]
[tool.poetry.group.test.dependencies]
huggingface-hub = "^0.23.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-watch = "^4.2.0"
pytest-asyncio = "^0.23.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"