forked from amosjyng/langchain-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.31 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "langchain-visualizer"
version = "0.0.16"
description = "Visualization and debugging tool for LangChain workflows"
authors = ["Amos Jun-yeung Ng <me@amos.ng>"]
readme = "README.md"
packages = [{ include = "langchain_visualizer" }]
[tool.poetry.dependencies]
python = "^3.9"
langchain = "0.0.*"
ought-ice = "^0.5.0"
gorilla = "^0.4.0"
[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
black = "^22.12.0"
isort = "^5.11.4"
flake8 = "^6.0.0"
pytest = "^7.2.1"
openai = "^0.27.0"
# vcr-langchain = "^0.0.19"
google-search-results = "^2.4.1"
faiss-cpu = "^1.7.3"
tiktoken = "^0.1.2"
autoflake = "^2.0.1"
[tool.pytest.ini_options]
markers = ["network: marks tests as requiring network services"]
filterwarnings = [
"error",
'ignore:There is no current event loop:DeprecationWarning',
'ignore:distutils Version classes are deprecated:DeprecationWarning',
'ignore:unclosed <ssl.SSLSocket:ResourceWarning',
]
[tool.mypy]
ignore_missing_imports = "True"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
profile = "black"
[tool.autoflake]
in-place = true
recursive = true
remove-all-unused-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"