-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from uc-cdis/fix/vectorstore
fix(vectorstore): fix issue where no documents were loaded and only a…
- Loading branch information
Showing
5 changed files
with
44 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
repos: | ||
- repo: [email protected]:Yelp/detect-secrets | ||
rev: v0.13.1 | ||
rev: v1.4.0 | ||
hooks: | ||
- id: detect-secrets | ||
args: ['--baseline', '.secrets.baseline'] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "gen3discoveryai" | ||
version = "0.1.0" | ||
version = "1.0.0" | ||
description = "Gen3 Discovery AI Service" | ||
authors = ["CTDS UChicago <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -10,12 +10,6 @@ packages = [{include = "gen3discoveryai"}] | |
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.10.dev0" | ||
|
||
# TODO: REMOVE WHEN onnxruntime bug is resolved https://github.com/microsoft/onnxruntime/issues/18065 | ||
onnxruntime = "==1.16.1" | ||
|
||
# TODO: Unpin when requests updates to include a version later than this | ||
certifi = ">=2023.7.22" | ||
|
||
aiohttp = ">=3.8.4" | ||
aiosignal = ">=1.3.1" | ||
async = ">=0.6.2" | ||
|
@@ -57,7 +51,7 @@ selenium = ">=4.18.1" | |
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
# <8.0.0 is temporary, try removing. It was causing issues because the | ||
# <8.0.0 is temporary, try removing. It was causing issues because the | ||
# underlying pytest-* libraries hadn't updated yet to fix some breaking changes | ||
pytest = ">=7.3.2,<8.0.0" | ||
uvicorn = ">=0.22.0" | ||
|
@@ -72,7 +66,7 @@ pytest-profiling = "^1.7.0" | |
[tool.pytest.ini_options] | ||
# Better default `pytest` command which adds coverage | ||
# | ||
# WARNING: overriding default `pytest` command to include all this coverage | ||
# WARNING: overriding default `pytest` command to include all this coverage | ||
# may interfere with some debuggers (like PyCharm's), so it may not stop | ||
# on breakpoints. If you run into this issue, you can comment | ||
# the addopts out below and then run the pytest command with all these options | ||
|