-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 1.35 KB
/
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
36
37
38
[tool.poetry]
name = "llm-elasticsearch-cache"
version = "0.2.6"
description = "[IMPORTANT: This library is now part of LangChain, follow its official documentation] A caching layer for LLMs that exploits Elasticsearch, fully compatible with LangChain caching, both for chat and embeddings models."
packages = [{include = "llmescache", from = "./src"}]
authors = ["SpazioDati s.r.l."]
maintainers = ["Giacomo Berardi <[email protected]>", "Gabriele Ghisleni <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/SpazioDati/llm-elasticsearch-cache"
keywords = ["langchain", "elasticsearch", "openai", "llm", "chatgpt"]
classifiers=[
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 7 - Inactive"
]
[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.1"
elasticsearch = ">6"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pre-commit = "^3"
mypy = "^1"
ruff = "^0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"