-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.07 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 = "lakera-chainguard"
version = "0.1.5"
description = "Guard your LangChain applications against prompt injection with Lakera Guard"
homepage = "https://lakeraai.github.io/chainguard/"
repository = "https://github.com/lakeraai/chainguard"
documentation = "https://lakeraai.github.io/chainguard/"
authors = ["Frawa Vetterli <[email protected]>"]
maintainers = ["Lakera <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["llm", "langchain", "prompt-injection", "llm-security", "lakera-guard", "lakera", "langchain-python"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
langchain = "^0.1.0"
langchain-core = "^0.1.31"
types-requests = "^2.31.0.20240106"
griffe = "0.49.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
mypy = "^1.8.0"
black = "^23.12.1"
pre-commit = "^3.6.0"
ipykernel = "^6.28.0"
openai = "^1.6.1"
langchain-openai = "^0.0.2"
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mkdocs-material = "^9.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"