Skip to content

Commit

Permalink
feat(pyproject.toml): add langchain-community dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
k1lgor committed May 29, 2024
1 parent a927fb6 commit 1558080
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ regex = "^2023.12.25"
pillow = "^10.2.0"
datasets = "^2.17.1"
black = "23.3.0"
langchain-community = "^0.2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.1"
Expand Down Expand Up @@ -71,7 +72,21 @@ gpte_test_application = 'tests.caching_main:app'

[tool.poetry.extras]
test = ["pytest", "pytest-cov"]
doc = ["autodoc_pydantic", "myst_parser", "nbsphinx", "sphinx", "sphinx-autobuild", "sphinx_book_theme", "sphinx_rtd_theme", "sphinx-typlog-theme", "myst-nb", "linkchecker", "sphinx-copybutton", "markdown-include", "sphinx_copybutton"]
doc = [
"autodoc_pydantic",
"myst_parser",
"nbsphinx",
"sphinx",
"sphinx-autobuild",
"sphinx_book_theme",
"sphinx_rtd_theme",
"sphinx-typlog-theme",
"myst-nb",
"linkchecker",
"sphinx-copybutton",
"markdown-include",
"sphinx_copybutton",
]

[tool.ruff]
select = ["F", "E", "W", "I001"]
Expand All @@ -87,17 +102,17 @@ target-version = ["py310"]
known-first-party = []
known-third-party = []
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
combine-as-imports = true
split-on-trailing-comma = false
lines-between-types = 1

[tool.pytest.ini_options]
markers = [
"requires_key: marks tests as requiring access to a valid OPENAI_API_KEY (deselect with '-m \"not requires_key\"')",
"requires_key: marks tests as requiring access to a valid OPENAI_API_KEY (deselect with '-m \"not requires_key\"')",
]

0 comments on commit 1558080

Please sign in to comment.