diff --git a/.env.example b/.env.example index 5667c46c0..a1f7bf84d 100644 --- a/.env.example +++ b/.env.example @@ -11,7 +11,7 @@ export POSTGRES_PASSWORD=your_password export POSTGRES_HOST=your_host export POSTGRES_PORT=your_port export POSTGRES_DBNAME=your_db -export POSTGRES_PROJECT_NAME=your_vecs_collection +export POSTGRES_PROJECT_NAME=your_project_name # Environment variables for KG provider (currently only Neo4j) # export NEO4J_USER=YOUR_NEO4J_USER diff --git a/docs/documentation/configuration/postgres.mdx b/docs/documentation/configuration/postgres.mdx index 97e4c435a..6041d3762 100644 --- a/docs/documentation/configuration/postgres.mdx +++ b/docs/documentation/configuration/postgres.mdx @@ -35,7 +35,7 @@ password = "your_postgres_password" host = "your_postgres_host" port = "your_postgres_port" db_name = "your_database_name" -vecs_collection = "your_vector_collection_name" +your_project_name = "your_project_collection_name" ``` 2. Alternatively, you can set the following environment variables: diff --git a/docs/documentation/deep-dive/providers/database.mdx b/docs/documentation/deep-dive/providers/database.mdx index 54c48814a..f6c500cd3 100644 --- a/docs/documentation/deep-dive/providers/database.mdx +++ b/docs/documentation/deep-dive/providers/database.mdx @@ -29,7 +29,7 @@ password = "your_postgres_password" host = "your_postgres_host" port = "your_postgres_port" db_name = "your_database_name" -vecs_collection = "your_collection_name" +your_project_name = "your_project_name" ``` Alternatively, you can set these values using environment variables: diff --git a/py/core/main/services/auth_service.py b/py/core/main/services/auth_service.py index 3049d2fa8..078835264 100644 --- a/py/core/main/services/auth_service.py +++ b/py/core/main/services/auth_service.py @@ -110,7 +110,7 @@ async def confirm_password_reset( @telemetry_event("Logout") async def logout(self, token: str) -> dict[str, str]: - return self.providers.auth.logout(token) + return await self.providers.auth.logout(token) @telemetry_event("UpdateUserProfile") async def update_user( diff --git a/py/pyproject.toml b/py/pyproject.toml index b17444c1a..c72cf691d 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "r2r" readme = "README.md" -version = "3.1.30" +version = "3.1.31" description = "SciPhi R2R" authors = ["Owen Colegrove "] license = "MIT"