From af04650164ca1ed710910b2c78db6351936e605d Mon Sep 17 00:00:00 2001 From: harini-venkataraman Date: Thu, 30 Jan 2025 13:28:23 +0530 Subject: [PATCH] Adding GCS dependency for backend and prompt service --- backend/pyproject.toml | 1 + prompt-service/pyproject.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 4b9b59092..a43a90352 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -33,6 +33,7 @@ dependencies = [ "social-auth-app-django==5.3.0", # For OAuth "social-auth-core==4.4.2", # For OAuth "unstract-sdk~=0.56.0rc4", + "gcsfs==2024.6.0", # ! IMPORTANT! # Indirect local dependencies usually need to be added in their own projects # as: https://pdm-project.org/latest/usage/dependency/#local-dependencies. diff --git a/prompt-service/pyproject.toml b/prompt-service/pyproject.toml index 253125eaa..5c8cae7c0 100644 --- a/prompt-service/pyproject.toml +++ b/prompt-service/pyproject.toml @@ -16,6 +16,8 @@ dependencies = [ "llama-index==0.12.8", "python-dotenv==1.0.0", "unstract-sdk~=0.56.0rc4", + "gcsfs==2024.10.0", + "s3fs==2024.6.0", "redis>=5.0.3", "unstract-core @ file:///${PROJECT_ROOT}/../unstract/core", "unstract-flags @ file:///${PROJECT_ROOT}/../unstract/flags",