-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Patch/fix minor doc mgmt issues rebased (#519) * up * up * patching subtle issues with doc management * cleanups * fix args and kwargs dev (#520) * add qs (#521) * Patch/enforce dictionary exists (#522) * add qs * force existence of dictionary * Add health endpoint * Update README.md (#524) * Fix gitignore * Remove coverage.xml * Patch/finalize v0 kg agent (#527) * add qs * force existence of dictionary * up * Have health response be 'response': 'ok' * Feature/revive multi search web (#531) * add qs * force existence of dictionary * up * revive multi search web queries * roll back config * update lock * Patch/max depth error (#532) * add qs * force existence of dictionary * up * revive multi search web queries * roll back config * Patch/max depth error (#533) * add qs * force existence of dictionary * up * revive multi search web queries * roll back config * fix * Feature/patch r2r (#534) * add qs * force existence of dictionary * up * revive multi search web queries * roll back config * fix * finish changes * move dev dependencies --------- Co-authored-by: NolanTrem <[email protected]>
- Loading branch information
1 parent
3a9f47d
commit 4b3a389
Showing
33 changed files
with
344 additions
and
361 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
threshold: 100% |
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 |
---|---|---|
|
@@ -10,6 +10,8 @@ dump/* | |
.next | ||
node_modules | ||
|
||
coverage.xml | ||
.coverage | ||
|
||
**/*.sqlite* | ||
**/*.sqlite3* | ||
|
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
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "r2r" | ||
version = "0.2.37" | ||
version = "0.2.38" | ||
description = "SciPhi R2R" | ||
authors = ["Owen Colegrove <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -58,24 +58,22 @@ litellm = "^1.35.18" | |
openai = "^1.11.1" | ||
|
||
# integrations | ||
ionic-api-sdk = {version = "0.9.3", optional = true} | ||
exa-py = {version = "^1.0.9", optional = true} | ||
dateutils = "^0.6.12" | ||
fsspec = "^2024.6.0" | ||
posthog = "^3.5.0" | ||
neo4j = {version = "^5.21.0", optional = true} | ||
sqlalchemy = "^2.0.30" | ||
ollama = "^0.2.1" | ||
neo4j = {version = "^5.21.0", optional = true} | ||
|
||
[tool.poetry.extras] | ||
all = ["tiktoken", "sentence-transformers", "neo4j", "moviepy", "opencv-python"] | ||
kg = ["neo4j"] | ||
all = ["tiktoken", "sentence-transformers"] | ||
exa = ["exa-py"] | ||
ionic = ["ionic-api-sdk"] | ||
local-embedding = ["sentence-transformers"] | ||
ingest-movies = ["moviepy", "opencv-python"] | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "^24.3.0" | ||
codecov = "^2.1.13" | ||
flake8 = "6.1.0" | ||
isort = "5.12.0" | ||
mypy = "^1.5.1" | ||
|
@@ -84,6 +82,7 @@ pytest = "^8.2.0" | |
pytest-asyncio = "^0.23.6" | ||
pytest-dependency = "^0.6.0" | ||
pytest-mock = "^3.14.0" | ||
pytest-cov = "^5.0.0" | ||
|
||
[tool.black] | ||
line-length = 79 | ||
|
@@ -95,3 +94,9 @@ exclude = 'playground/.*|deprecated/.*|dump/.*|docs/source|vecs/*' | |
[[tool.mypy.overrides]] | ||
module = "yaml" | ||
ignore_missing_imports = true | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=r2r --cov-report=term-missing --cov-report=xml" | ||
testpaths = [ | ||
"tests", | ||
] |
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
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 was deleted.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
from .exa import ExaClient | ||
from .ionic import IonicClient | ||
from .serper import SerperClient | ||
|
||
__all__ = ["ExaClient", "IonicClient", "SerperClient"] | ||
__all__ = ["SerperClient"] |
Oops, something went wrong.