-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.05 KB
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
[tool.poetry]
name = "agent-chain"
version = "0.1.0"
description = "Langchain colaborative agents"
authors = ["Thomas Li Fredriksen <thomafred90@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "agent_chain"}]
[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.0.172"
typer = "^0.7.0"
python-dotenv = "^1.0.0"
pydantic = "^1.10.7"
jinja2 = "^3.1.2"
google-search-results = "^2.4.2"
tiktoken = "^0.3.3"
redis = "^4.5.4"
wikipedia = "^1.4.0"
fsspec = "^2023.4.0"
rdflib = "^6.3.2"
sparqlwrapper = "^2.0.0"
typing-extensions = "^4.5.0"
beautifulsoup4 = "^4.12.2"
openai = "^0.27.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
ignore = ["E203", "E731", "W503"]
per-file-ignores = ["*/__init__.py:F401", "tests/*:F841"]
max-line-length = 120
count = true
[tool.isort]
line_length=120 # corresponds to -w flag
multi_line_output=3 # corresponds to -m flag
include_trailing_comma=true # corresponds to -tc flag
profile="black"
known_local_folder="odp,tests"