forked from amosjyng/langchain-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.5 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
58
59
60
61
62
63
[tool.poetry]
name = "langchain-visualizer"
version = "0.0.20"
description = "Visualization and debugging tool for LangChain workflows"
authors = ["Amos Jun-yeung Ng <[email protected]>"]
readme = "README.md"
packages = [{include = "langchain_visualizer"}]
[tool.poetry.dependencies]
python = "^3.9"
langchain = ">=0.0.130,<0.1"
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.23"
google-search-results = "^2.4.1"
faiss-cpu = "^1.7.3"
tiktoken = "^0.1.2"
autoflake = "^2.0.1"
pytest-asyncio = "^0.21.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
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',
'ignore:Dialect sqlite:sqlalchemy.exc.SAWarning',
'ignore:Deprecated API features detected!:sqlalchemy.exc.RemovedIn20Warning',
]
[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"