Skip to content

Commit

Permalink
Add R2R_SECRET_KEY and missing import (#1772)
Browse files Browse the repository at this point in the history
* Add R2R_SECRET_KEY and missing import

* Bump version
  • Loading branch information
NolanTrem authored Jan 8, 2025
1 parent 518138d commit e9fc549
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions py/compose.full.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ services:
- R2R_CONFIG_NAME=${R2R_CONFIG_NAME:-}
- R2R_CONFIG_PATH=${R2R_CONFIG_PATH:-}
- R2R_PROJECT_NAME=${R2R_PROJECT_NAME:-r2r_default}
- R2R_SECRET_KEY=${R2R_SECRET_KEY:-}

# Postgres
- R2R_POSTGRES_USER=${R2R_POSTGRES_USER:-postgres}
Expand Down
1 change: 1 addition & 0 deletions py/compose.full_with_replicas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ services:
- R2R_CONFIG_NAME=${R2R_CONFIG_NAME:-}
- R2R_CONFIG_PATH=${R2R_CONFIG_PATH:-}
- R2R_PROJECT_NAME=${R2R_PROJECT_NAME:-r2r_default}
- R2R_SECRET_KEY=${R2R_SECRET_KEY:-}

# Postgres
- R2R_POSTGRES_USER=${R2R_POSTGRES_USER:-postgres}
Expand Down
1 change: 1 addition & 0 deletions py/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ services:
- R2R_CONFIG_NAME=${R2R_CONFIG_NAME:-}
- R2R_CONFIG_PATH=${R2R_CONFIG_PATH:-}
- R2R_PROJECT_NAME=${R2R_PROJECT_NAME:-r2r_default}
- R2R_SECRET_KEY=${R2R_SECRET_KEY:-}

# Postgres
- R2R_POSTGRES_USER=${R2R_POSTGRES_USER:-postgres}
Expand Down
9 changes: 5 additions & 4 deletions py/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "r2r"
readme = "README.md"
version = "3.3.21"
version = "3.3.22"

description = "SciPhi R2R"
authors = ["Owen Colegrove <owen@sciphi.ai>"]
Expand All @@ -30,6 +30,7 @@ packages = [
# Python Versions
python = ">=3.10,<3.13"

aiofiles = "^24.1.0"
alembic = "^1.13.3"
asyncclick = "^8.1.7.2"
click = "^8.0.0"
Expand Down Expand Up @@ -79,7 +80,6 @@ uvicorn = { version = "^0.27.0.post1", optional = true }
vecs = { version = "^0.4.0", optional = true }

# R2R Ingestion
aiofiles = { version = "^24.1.0", optional = true }
aioshutil = { version = "^1.5", optional = true }
beautifulsoup4 = { version = "^4.12.3", optional = true }
bs4 = { version = "^0.0.2", optional = true }
Expand Down Expand Up @@ -137,7 +137,6 @@ core = [
"pynacl"
]
ingestion-bundle = [
"aiofiles",
"aioshutil",
"beautifulsoup4",
"bs4",
Expand Down

0 comments on commit e9fc549

Please sign in to comment.