From 2715b81ff55d88a000987444b76dba1a6de8f666 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:21:12 +0100 Subject: [PATCH 01/42] feat(platform/ci): Run migrations in ci for dev (#8395) * run migrations in ci * update environment * temp false * add dev migrations * remove code change step --- .../workflows/platform-autogpt-deploy.yaml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 97c2fe78749e..549eb0478115 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -19,8 +19,42 @@ env: NAMESPACE: dev-agpt jobs: + migrate: + environment: develop + name: Run migrations for AutoGPT Platform + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install prisma + + - name: Run Backend Migrations + working-directory: ./autogpt_platform/backend + run: | + python -m prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.BACKEND_DATABASE_URL }} + + - name: Run Market Migrations + working-directory: ./autogpt_platform/market + run: | + python -m prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.MARKET_DATABASE_URL }} + build-push-deploy: name: Build, Push, and Deploy + needs: migrate runs-on: ubuntu-latest steps: From 37607d104c98ab74c47af88da36ee92fb8a56f67 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:22:45 +0100 Subject: [PATCH 02/42] feat(platform/infra): Create prod service account and pool (#8383) * ci with workload identity * temp update * update name * wip * update auth step * update provider name * remove audience * temp set to false * update registry naming * update context * update login * revert temp updates * add prod iam and pool --- .../infra/terraform/environments/prod.tfvars | 44 +++++++++++++++++-- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/autogpt_platform/infra/terraform/environments/prod.tfvars b/autogpt_platform/infra/terraform/environments/prod.tfvars index e9351389285a..4bceda49957a 100644 --- a/autogpt_platform/infra/terraform/environments/prod.tfvars +++ b/autogpt_platform/infra/terraform/environments/prod.tfvars @@ -28,6 +28,11 @@ service_accounts = { "prod-agpt-market-sa" = { display_name = "AutoGPT prod Market backend Account" description = "Service account for agpt prod market backend" + }, + "prod-github-actions-workload-identity" = { + service_account_name = "prod-github-actions-sa" + namespace = "prod-agpt" + ksa_name = "prod-github-actions-sa" } } @@ -59,7 +64,8 @@ role_bindings = { "serviceAccount:prod-agpt-backend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-frontend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-ws-backend-sa@agpt-prod.iam.gserviceaccount.com", - "serviceAccount:prod-agpt-market-sa@agpt-prod.iam.gserviceaccount.com" + "serviceAccount:prod-agpt-market-sa@agpt-prod.iam.gserviceaccount.com", + "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" ], "roles/cloudsql.client" = [ "serviceAccount:prod-agpt-backend-sa@agpt-prod.iam.gserviceaccount.com", @@ -80,7 +86,8 @@ role_bindings = { "serviceAccount:prod-agpt-backend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-frontend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-ws-backend-sa@agpt-prod.iam.gserviceaccount.com", - "serviceAccount:prod-agpt-market-sa@agpt-prod.iam.gserviceaccount.com" + "serviceAccount:prod-agpt-market-sa@agpt-prod.iam.gserviceaccount.com", + "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" ] "roles/compute.networkUser" = [ "serviceAccount:prod-agpt-backend-sa@agpt-prod.iam.gserviceaccount.com", @@ -93,6 +100,16 @@ role_bindings = { "serviceAccount:prod-agpt-frontend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-ws-backend-sa@agpt-prod.iam.gserviceaccount.com", "serviceAccount:prod-agpt-market-sa@agpt-prod.iam.gserviceaccount.com" + ], + "roles/artifactregistry.writer" = [ + "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" + ], + "roles/container.viewer" = [ + "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" + ], + "roles/iam.serviceAccountTokenCreator" = [ + "principalSet://iam.googleapis.com/projects/638488734936/locations/global/workloadIdentityPools/prod-pool/*", + "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" ] } @@ -101,4 +118,25 @@ services_ip_cidr_range = "10.2.0.0/20" public_bucket_names = ["website-artifacts"] standard_bucket_names = [] -bucket_admins = ["gcp-devops-agpt@agpt.co", "gcp-developers@agpt.co"] \ No newline at end of file +bucket_admins = ["gcp-devops-agpt@agpt.co", "gcp-developers@agpt.co"] + +workload_identity_pools = { + "dev-pool" = { + display_name = "Production Identity Pool" + providers = { + "github" = { + issuer_uri = "https://token.actions.githubusercontent.com" + attribute_mapping = { + "google.subject" = "assertion.sub" + "attribute.repository" = "assertion.repository" + "attribute.repository_owner" = "assertion.repository_owner" + } + } + } + service_accounts = { + "prod-github-actions-sa" = [ + "Significant-Gravitas/AutoGPT" + ] + } + } +} \ No newline at end of file From 404d0638defbb3974ee28dba700988babc07c079 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:23:54 +0100 Subject: [PATCH 03/42] feat(platform/ci) Add workflow for deploying to production (#8384) * ci with workload identity * temp update * update name * wip * update auth step * update provider name * remove audience * temp set to false * update registry naming * update context * update login * revert temp updates * add prod iam and pool * add release deploy with approval * use gha default approval behaviour * add back in release trigger * add new line --- .../workflows/platform-autgpt-deploy-prod.yml | 149 ++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 .github/workflows/platform-autgpt-deploy-prod.yml diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml new file mode 100644 index 000000000000..b0d94526ed10 --- /dev/null +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -0,0 +1,149 @@ +name: AutoGPT Platform - Build, Push, and Deploy Prod Environment + +on: + release: + types: [published] + +permissions: + contents: 'read' + id-token: 'write' + +env: + PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} + GKE_CLUSTER: prod-gke-cluster + GKE_ZONE: us-central1-a + NAMESPACE: prod-agpt + +jobs: + build-push-deploy: + environment: production + name: Build, Push, and Deploy + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - id: 'auth' + uses: 'google-github-actions/auth@v1' + with: + workload_identity_provider: 'projects/638488734936/locations/global/workloadIdentityPools/prod-pool/providers/github' + service_account: 'prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com' + token_format: 'access_token' + create_credentials_file: true + + - name: 'Set up Cloud SDK' + uses: 'google-github-actions/setup-gcloud@v1' + + - name: 'Configure Docker' + run: | + gcloud auth configure-docker us-east1-docker.pkg.dev + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Cache Docker layers + uses: actions/cache@v2 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + + - name: Check for changes + id: check_changes + run: | + git fetch origin master + BACKEND_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/backend/" && echo "true" || echo "false") + FRONTEND_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/frontend/" && echo "true" || echo "false") + MARKET_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/market/" && echo "true" || echo "false") + echo "backend_changed=$BACKEND_CHANGED" >> $GITHUB_OUTPUT + echo "frontend_changed=$FRONTEND_CHANGED" >> $GITHUB_OUTPUT + echo "market_changed=$MARKET_CHANGED" >> $GITHUB_OUTPUT + + - name: Get GKE credentials + uses: 'google-github-actions/get-gke-credentials@v1' + with: + cluster_name: ${{ env.GKE_CLUSTER }} + location: ${{ env.GKE_ZONE }} + + - name: Build and Push Backend + if: steps.check_changes.outputs.backend_changed == 'true' + uses: docker/build-push-action@v2 + with: + context: . + file: ./autogpt_platform/backend/Dockerfile + push: true + tags: us-east1-docker.pkg.dev/agpt-prod/agpt-backend-prod/agpt-backend-prod:${{ github.sha }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: Build and Push Frontend + if: steps.check_changes.outputs.frontend_changed == 'true' + uses: docker/build-push-action@v2 + with: + context: . + file: ./autogpt_platform/frontend/Dockerfile + push: true + tags: us-east1-docker.pkg.dev/agpt-prod/agpt-frontend-prod/agpt-frontend-prod:${{ github.sha }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: Build and Push Market + if: steps.check_changes.outputs.market_changed == 'true' + uses: docker/build-push-action@v2 + with: + context: . + file: ./autogpt_platform/market/Dockerfile + push: true + tags: us-east1-docker.pkg.dev/agpt-prod/agpt-market-prod/agpt-market-prod:${{ github.sha }} + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: Move cache + run: | + rm -rf /tmp/.buildx-cache + mv /tmp/.buildx-cache-new /tmp/.buildx-cache + + - name: Set up Helm + uses: azure/setup-helm@v1 + with: + version: v3.4.0 + + - name: Deploy Backend + if: steps.check_changes.outputs.backend_changed == 'true' + run: | + helm upgrade autogpt-server ./autogpt-server \ + --namespace ${{ env.NAMESPACE }} \ + -f autogpt-server/values.yaml \ + -f autogpt-server/values.prod.yaml \ + --set image.tag=${{ github.sha }} + + - name: Deploy Websocket + if: steps.check_changes.outputs.backend_changed == 'true' + run: | + helm upgrade autogpt-websocket-server ./autogpt-websocket-server \ + --namespace ${{ env.NAMESPACE }} \ + -f autogpt-websocket-server/values.yaml \ + -f autogpt-websocket-server/values.prod.yaml \ + --set image.tag=${{ github.sha }} + + - name: Deploy Market + if: steps.check_changes.outputs.market_changed == 'true' + run: | + helm upgrade autogpt-market ./autogpt-market \ + --namespace ${{ env.NAMESPACE }} \ + -f autogpt-market/values.yaml \ + -f autogpt-market/values.prod.yaml \ + --set image.tag=${{ github.sha }} + + - name: Deploy Frontend + if: steps.check_changes.outputs.frontend_changed == 'true' + run: | + helm upgrade autogpt-builder ./autogpt-builder \ + --namespace ${{ env.NAMESPACE }} \ + -f autogpt-builder/values.yaml \ + -f autogpt-builder/values.prod.yaml \ + --set image.tag=${{ github.sha }} From d9b8e0d273a64422465e1d55ac493893695b4ac2 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 09:25:33 +0100 Subject: [PATCH 04/42] feat(platform/ci): Add prod migrations (#8396) * ci with workload identity * temp update * update name * wip * update auth step * update provider name * remove audience * temp set to false * update registry naming * update context * update login * revert temp updates * add prod iam and pool * add release deploy with approval * use gha default approval behaviour * add back in release trigger * add new line * add prod migrations * prod migrations without check --- .../workflows/platform-autgpt-deploy-prod.yml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index b0d94526ed10..97013715db4d 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -15,6 +15,39 @@ env: NAMESPACE: prod-agpt jobs: + migrate: + environment: production + name: Run migrations for AutoGPT Platform + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install prisma + + - name: Run Backend Migrations + working-directory: ./autogpt_platform/backend + run: | + python -m prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.BACKEND_DATABASE_URL }} + + - name: Run Market Migrations + working-directory: ./autogpt_platform/market + run: | + python -m prisma migrate deploy + env: + DATABASE_URL: ${{ secrets.MARKET_DATABASE_URL }} + build-push-deploy: environment: production name: Build, Push, and Deploy From e4995096efee842de7ce26c2f9614ec8e3d0179c Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:13:16 +0100 Subject: [PATCH 05/42] fix(platform): Fix containerized connection issues with DB Manager (#8412) add missing DB manager host values --- autogpt_platform/docker-compose.platform.yml | 1 + autogpt_platform/infra/helm/autogpt-server/values.dev.yaml | 1 + autogpt_platform/infra/helm/autogpt-server/values.prod.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/autogpt_platform/docker-compose.platform.yml b/autogpt_platform/docker-compose.platform.yml index ba396c76eac3..ef33687231cb 100644 --- a/autogpt_platform/docker-compose.platform.yml +++ b/autogpt_platform/docker-compose.platform.yml @@ -66,6 +66,7 @@ services: - ENABLE_AUTH=true - PYRO_HOST=0.0.0.0 - EXECUTIONMANAGER_HOST=executor + - DBMANAGER_HOST=executor - FRONTEND_BASE_URL=http://localhost:3000 - BACKEND_CORS_ALLOW_ORIGINS=["http://localhost:3000"] ports: diff --git a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml index b7488e0fd078..9d04633d0e04 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml @@ -106,6 +106,7 @@ env: SUPABASE_URL: "https://adfjtextkuilwuhzdjpf.supabase.co" AGENTSERVER_HOST: "autogpt-server.dev-agpt.svc.cluster.local" EXECUTIONMANAGER_HOST: "autogpt-server-executor.dev-agpt.svc.cluster.local" + DBMANAGER_HOST: "autogpt-server-executor.dev-agpt.svc.cluster.local" secrets: ANTHROPIC_API_KEY: "AgBllA6KzTdyLs6Tc+HrwIeSjdsPQxdU/4qpqT64H4K3nTehS6kpCW1qtH6eBChs1v+m857sUgsrB9u8+P0aAa3DcgZ/gNg+G1GX6vAY2NJvP/2Q+Hiwi1cAn+R3ChHejG9P2C33hTa6+V9cpUI9xUWOwWLOIQZpLvAc7ltsi0ZJ06qFO0Zhj+H9K768h7U3XaivwywX7PT7BnUTiT6AQkAwD2misBkeSQZdsllOD0th3b2245yieqal9osZHlSlslI9c6EMpH0n+szSND7goyjgsik0Tb0xJU6kGggdcw9hl4x91rYDYNPs0hFES9HUxzfiAid6Y2rDUVBXoNg7K7pMR6/foIkl+gCg/1lqOS0FRlUVyAQGJEx6XphyX/SftgLaI7obaVnzjErrpLWY1ZRiD8VVZD40exf8FddGOXwPvxYHrrrPotlTDLONZMn4Fl46tJCTsoQfHCjco+sz7/nLMMnHx+l1D0eKBuGPVsKTtbWozhLCNuWEgcWb4kxJK5sd1g/GylD43g8hFW531Vbpk1J1rpf7Hurd/aTUjwSXmdxB2qXTT4HRG+Us6PnhMIuf/yxilTs4WNShY0zHhYgnQFSM3oCTL6XXG1dqdOwY2k6+k2wCQtpK45boVN5PpBrQuDuFdWb/jM5jH6L8ns0dMMlY3lHM459u7FEn8rum/xXdP/JvpFb+yct3Rgc54SOT5HuVUNAHzzmbWhY4RG4b3i21L2SlsVUwjKvu+PlN4MN5KPilvHe3yODXZu0Gp0ClzDNZQiKQU67H0uYr6eRccMDsHtMlPELqnjyQZ+OriydzB3qXidAkguKNmzPypz0LyTMnry7YpNRGyUw=" diff --git a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml index eb314a899d1b..6f2eac33c67c 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml @@ -103,6 +103,7 @@ env: SUPABASE_URL: "https://bgwpwdsxblryihinutbx.supabase.co" AGENTSERVER_HOST: "autogpt-server.prod-agpt.svc.cluster.local" EXECUTIONMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" + DBMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" secrets: ANTHROPIC_API_KEY: "AgCf0CUyhYluMW13zvdScIzF50c1u4P3sUkKZjwe2lJGil/WrxN1r+GQGoLzjMn8ODANV7FiJN2+Y+ilVgpf0tVA9uEWLCL/OguNshRYWfNfU0PCgciXvz+Cy8xILfJW5SIZvZgDV5zMbzXeBomJYq+qFpr+PRyiIzA6ciHK/ZuItcGBB0FMdJ6w2gvAlLTFmAK0ekyXTzYidPEkBp+DA4jJXuzjXGd4U8iC4IcrSs/o0eaqfMQSOBRc7w/6SK+YDUnWypc2awBX4qNwqKbQRYAT59lihy/B0D4BhjjiUb2bAlzNWP0STsJONrOPbnHzuvipm1xpk+1bdYFpkqJAf9rk9GOPAMfB5f/kOdmaoj9jdQN55NIomSzub+KnSGt+m4G6YlEnUf2ZBZTKTeWO1jzk0gnzrdFZclPq/9Dd0qUBsZ/30KjbBRJyL9SexwxpfMoaf6dKJHcsOdOevaCpMQZaQ/AjcFZRtntw8mLALJzTZbTq7Gb6h25blwe1Oi6DrOuTrWT+OMHeUJcDQA3q1rJERa4xV0wLjYraCTerezhZgjMvfRD1Ykm5S+1U9hzsZUZZQS6OEEIS0BaOfYugt3DiFSNLrIUwVcYbl5geLoiMW6oSukEeb4s2AukRqKkMYz8/stjCgJB2NiarVi2NIaDvgaXWLgJxNxxovgtHyS4RR8WpRPdWJdjAs6RH13ve42a35S2m65jvUNg875GSO8Eo1izYH6q2LvJgGmlTfMworP6O2ryZO9tBjNS58UYxM8EqvtXLVktA0TYlK7wlF2NzA/waIMmiOiKJrb8YnQF28ePxYnmQSqqe2ZpwSiDBsDNrzfZvvTk9Ai81qu8=" From 9e411efd6ee50ae9d4e442d07fb441f17582e0c2 Mon Sep 17 00:00:00 2001 From: Zamil Majdy Date: Wed, 23 Oct 2024 18:54:29 +0300 Subject: [PATCH 06/42] fix(backend): Reverse pyro config refactor (#8410) * fix(backend): Fix error pin output not being propagated into the next nodes * fix(backend): Reverse pyro config refactor * Revert "fix(backend): Fix error pin output not being propagated into the next nodes" This reverts commit 2ff50a94ec7e61092247b3aa9f059899418ee76c. --------- Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com> --- autogpt_platform/backend/backend/util/service.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogpt_platform/backend/backend/util/service.py b/autogpt_platform/backend/backend/util/service.py index e1f742483a64..5c01530ec158 100644 --- a/autogpt_platform/backend/backend/util/service.py +++ b/autogpt_platform/backend/backend/util/service.py @@ -166,7 +166,8 @@ def cleanup(self): @conn_retry("Pyro", "Starting Pyro Service") def __start_pyro(self): - daemon = Pyro5.api.Daemon(host=self.get_host(), port=self.get_port()) + host = Config().pyro_host + daemon = Pyro5.api.Daemon(host=host, port=self.get_port()) self.uri = daemon.register(self, objectId=self.service_name) logger.info(f"[{self.service_name}] Connected to Pyro; URI = {self.uri}") daemon.requestLoop() @@ -187,9 +188,8 @@ def get_service_client(service_type: Type[AS]) -> AS: class DynamicClient: @conn_retry("Pyro", f"Connecting to [{service_name}]") def __init__(self): - host = service_type.get_host() - port = service_type.get_port() - uri = f"PYRO:{service_type.service_name}@{host}:{port}" + host = os.environ.get(f"{service_name.upper()}_HOST", "localhost") + uri = f"PYRO:{service_type.service_name}@{host}:{service_type.get_port()}" logger.debug(f"Connecting to service [{service_name}]. URI = {uri}") self.proxy = Pyro5.api.Proxy(uri) # Attempt to bind to ensure the connection is established From 4e44a7978593ac07e2cd7a0d9f7f3ceca9d8b290 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Wed, 23 Oct 2024 18:25:29 +0100 Subject: [PATCH 07/42] fix(platform/infra): Fix spelling error (#8416) fix spelling error --- autogpt_platform/docker-compose.platform.yml | 2 +- autogpt_platform/infra/helm/autogpt-server/values.dev.yaml | 2 +- autogpt_platform/infra/helm/autogpt-server/values.prod.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/autogpt_platform/docker-compose.platform.yml b/autogpt_platform/docker-compose.platform.yml index ef33687231cb..e2a24fa51fd1 100644 --- a/autogpt_platform/docker-compose.platform.yml +++ b/autogpt_platform/docker-compose.platform.yml @@ -66,7 +66,7 @@ services: - ENABLE_AUTH=true - PYRO_HOST=0.0.0.0 - EXECUTIONMANAGER_HOST=executor - - DBMANAGER_HOST=executor + - DATABASEMANAGER_HOST=executor - FRONTEND_BASE_URL=http://localhost:3000 - BACKEND_CORS_ALLOW_ORIGINS=["http://localhost:3000"] ports: diff --git a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml index 9d04633d0e04..4d5b39d75bb6 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml @@ -106,7 +106,7 @@ env: SUPABASE_URL: "https://adfjtextkuilwuhzdjpf.supabase.co" AGENTSERVER_HOST: "autogpt-server.dev-agpt.svc.cluster.local" EXECUTIONMANAGER_HOST: "autogpt-server-executor.dev-agpt.svc.cluster.local" - DBMANAGER_HOST: "autogpt-server-executor.dev-agpt.svc.cluster.local" + DATABASEMANAGER_HOST: "autogpt-server-executor.dev-agpt.svc.cluster.local" secrets: ANTHROPIC_API_KEY: "AgBllA6KzTdyLs6Tc+HrwIeSjdsPQxdU/4qpqT64H4K3nTehS6kpCW1qtH6eBChs1v+m857sUgsrB9u8+P0aAa3DcgZ/gNg+G1GX6vAY2NJvP/2Q+Hiwi1cAn+R3ChHejG9P2C33hTa6+V9cpUI9xUWOwWLOIQZpLvAc7ltsi0ZJ06qFO0Zhj+H9K768h7U3XaivwywX7PT7BnUTiT6AQkAwD2misBkeSQZdsllOD0th3b2245yieqal9osZHlSlslI9c6EMpH0n+szSND7goyjgsik0Tb0xJU6kGggdcw9hl4x91rYDYNPs0hFES9HUxzfiAid6Y2rDUVBXoNg7K7pMR6/foIkl+gCg/1lqOS0FRlUVyAQGJEx6XphyX/SftgLaI7obaVnzjErrpLWY1ZRiD8VVZD40exf8FddGOXwPvxYHrrrPotlTDLONZMn4Fl46tJCTsoQfHCjco+sz7/nLMMnHx+l1D0eKBuGPVsKTtbWozhLCNuWEgcWb4kxJK5sd1g/GylD43g8hFW531Vbpk1J1rpf7Hurd/aTUjwSXmdxB2qXTT4HRG+Us6PnhMIuf/yxilTs4WNShY0zHhYgnQFSM3oCTL6XXG1dqdOwY2k6+k2wCQtpK45boVN5PpBrQuDuFdWb/jM5jH6L8ns0dMMlY3lHM459u7FEn8rum/xXdP/JvpFb+yct3Rgc54SOT5HuVUNAHzzmbWhY4RG4b3i21L2SlsVUwjKvu+PlN4MN5KPilvHe3yODXZu0Gp0ClzDNZQiKQU67H0uYr6eRccMDsHtMlPELqnjyQZ+OriydzB3qXidAkguKNmzPypz0LyTMnry7YpNRGyUw=" diff --git a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml index 6f2eac33c67c..4564e9ac6f85 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml @@ -103,7 +103,7 @@ env: SUPABASE_URL: "https://bgwpwdsxblryihinutbx.supabase.co" AGENTSERVER_HOST: "autogpt-server.prod-agpt.svc.cluster.local" EXECUTIONMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" - DBMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" + DATABASEMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" secrets: ANTHROPIC_API_KEY: "AgCf0CUyhYluMW13zvdScIzF50c1u4P3sUkKZjwe2lJGil/WrxN1r+GQGoLzjMn8ODANV7FiJN2+Y+ilVgpf0tVA9uEWLCL/OguNshRYWfNfU0PCgciXvz+Cy8xILfJW5SIZvZgDV5zMbzXeBomJYq+qFpr+PRyiIzA6ciHK/ZuItcGBB0FMdJ6w2gvAlLTFmAK0ekyXTzYidPEkBp+DA4jJXuzjXGd4U8iC4IcrSs/o0eaqfMQSOBRc7w/6SK+YDUnWypc2awBX4qNwqKbQRYAT59lihy/B0D4BhjjiUb2bAlzNWP0STsJONrOPbnHzuvipm1xpk+1bdYFpkqJAf9rk9GOPAMfB5f/kOdmaoj9jdQN55NIomSzub+KnSGt+m4G6YlEnUf2ZBZTKTeWO1jzk0gnzrdFZclPq/9Dd0qUBsZ/30KjbBRJyL9SexwxpfMoaf6dKJHcsOdOevaCpMQZaQ/AjcFZRtntw8mLALJzTZbTq7Gb6h25blwe1Oi6DrOuTrWT+OMHeUJcDQA3q1rJERa4xV0wLjYraCTerezhZgjMvfRD1Ykm5S+1U9hzsZUZZQS6OEEIS0BaOfYugt3DiFSNLrIUwVcYbl5geLoiMW6oSukEeb4s2AukRqKkMYz8/stjCgJB2NiarVi2NIaDvgaXWLgJxNxxovgtHyS4RR8WpRPdWJdjAs6RH13ve42a35S2m65jvUNg875GSO8Eo1izYH6q2LvJgGmlTfMworP6O2ryZO9tBjNS58UYxM8EqvtXLVktA0TYlK7wlF2NzA/waIMmiOiKJrb8YnQF28ePxYnmQSqqe2ZpwSiDBsDNrzfZvvTk9Ai81qu8=" From e908068f22eb78f525656bd14f6846ef92e540f8 Mon Sep 17 00:00:00 2001 From: Abhimanyu Yadav <122007096+Abhi1992002@users.noreply.github.com> Date: Thu, 24 Oct 2024 02:42:39 +0530 Subject: [PATCH 08/42] Implement custom save shortcut in SaveControl component (#8407) Co-authored-by: Nicholas Tindle --- .../components/edit/control/SaveControl.tsx | 28 +++++++++++++++++-- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/autogpt_platform/frontend/src/components/edit/control/SaveControl.tsx b/autogpt_platform/frontend/src/components/edit/control/SaveControl.tsx index 030d83c165b4..61423c352f65 100644 --- a/autogpt_platform/frontend/src/components/edit/control/SaveControl.tsx +++ b/autogpt_platform/frontend/src/components/edit/control/SaveControl.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useCallback, useEffect } from "react"; import { Popover, PopoverContent, @@ -15,6 +15,7 @@ import { TooltipContent, TooltipTrigger, } from "@/components/ui/tooltip"; +import { useToast } from "@/components/ui/use-toast"; interface SaveControlProps { agentMeta: GraphMeta | null; @@ -52,14 +53,35 @@ export const SaveControl = ({ // Determines if we're saving a template or an agent let isTemplate = agentMeta?.is_template ? true : undefined; - const handleSave = () => { + const handleSave = useCallback(() => { onSave(isTemplate); - }; + }, [onSave, isTemplate]); const getType = () => { return agentMeta?.is_template ? "template" : "agent"; }; + const { toast } = useToast(); + + useEffect(() => { + const handleKeyDown = (event: KeyboardEvent) => { + if ((event.ctrlKey || event.metaKey) && event.key === "s") { + event.preventDefault(); // Stop the browser default action + handleSave(); // Call your save function + toast({ + duration: 2000, + title: "All changes saved successfully!", + }); + } + }; + + window.addEventListener("keydown", handleKeyDown); + + return () => { + window.removeEventListener("keydown", handleKeyDown); + }; + }, [handleSave]); + return ( From 370e87d2e2a23574960a0634afdb5fd80a39e6d9 Mon Sep 17 00:00:00 2001 From: Abhimanyu Yadav <122007096+Abhi1992002@users.noreply.github.com> Date: Thu, 24 Oct 2024 02:53:09 +0530 Subject: [PATCH 09/42] Merge login and signin (#8389) Co-authored-by: Avhimanyu <2023ebcs396@online.bits-pilani.ac.in> Co-authored-by: Nicholas Tindle --- .../frontend/src/app/login/actions.ts | 37 +-- .../frontend/src/app/login/page.tsx | 32 +-- .../frontend/src/app/signup/actions.ts | 46 ++++ .../frontend/src/app/signup/page.tsx | 225 ++++++++++++++++++ 4 files changed, 284 insertions(+), 56 deletions(-) create mode 100644 autogpt_platform/frontend/src/app/signup/actions.ts create mode 100644 autogpt_platform/frontend/src/app/signup/page.tsx diff --git a/autogpt_platform/frontend/src/app/login/actions.ts b/autogpt_platform/frontend/src/app/login/actions.ts index ef0bff17ddfe..131fb9de89ed 100644 --- a/autogpt_platform/frontend/src/app/login/actions.ts +++ b/autogpt_platform/frontend/src/app/login/actions.ts @@ -22,6 +22,11 @@ export async function login(values: z.infer) { const { data, error } = await supabase.auth.signInWithPassword(values); if (error) { + if (error.status == 400) { + // Hence User is not present + redirect("/signup"); + } + return error.message; } @@ -33,35 +38,3 @@ export async function login(values: z.infer) { redirect("/"); }); } - -export async function signup(values: z.infer) { - "use server"; - return await Sentry.withServerActionInstrumentation( - "signup", - {}, - async () => { - const supabase = createServerClient(); - - if (!supabase) { - redirect("/error"); - } - - // We are sure that the values are of the correct type because zod validates the form - const { data, error } = await supabase.auth.signUp(values); - - if (error) { - if (error.message.includes("P0001")) { - return "Please join our waitlist for your turn: https://agpt.co/waitlist"; - } - return error.message; - } - - if (data.session) { - await supabase.auth.setSession(data.session); - } - - revalidatePath("/", "layout"); - redirect("/"); - }, - ); -} diff --git a/autogpt_platform/frontend/src/app/login/page.tsx b/autogpt_platform/frontend/src/app/login/page.tsx index 7457f6c7b048..1c2f3c28e8a5 100644 --- a/autogpt_platform/frontend/src/app/login/page.tsx +++ b/autogpt_platform/frontend/src/app/login/page.tsx @@ -98,22 +98,10 @@ export default function LoginPage() { setFeedback(null); }; - const onSignup = async (data: z.infer) => { - if (await form.trigger()) { - setIsLoading(true); - const error = await signup(data); - setIsLoading(false); - if (error) { - setFeedback(error); - return; - } - setFeedback(null); - } - }; - return (
+

Log in to your Account

{/*
- +
+
+ + Create a new Account +

{feedback}

diff --git a/autogpt_platform/frontend/src/app/signup/actions.ts b/autogpt_platform/frontend/src/app/signup/actions.ts new file mode 100644 index 000000000000..2773b87743e6 --- /dev/null +++ b/autogpt_platform/frontend/src/app/signup/actions.ts @@ -0,0 +1,46 @@ +"use server"; +import { createServerClient } from "@/lib/supabase/server"; +import * as Sentry from "@sentry/nextjs"; +import { revalidatePath } from "next/cache"; +import { redirect } from "next/navigation"; +import { z } from "zod"; + +const SignupFormSchema = z.object({ + email: z.string().email().min(2).max(64), + password: z.string().min(6).max(64), +}); + +export async function signup(values: z.infer) { + "use server"; + return await Sentry.withServerActionInstrumentation( + "signup", + {}, + async () => { + const supabase = createServerClient(); + + if (!supabase) { + redirect("/error"); + } + + // We are sure that the values are of the correct type because zod validates the form + const { data, error } = await supabase.auth.signUp(values); + + if (error) { + if (error.message.includes("P0001")) { + return "Please join our waitlist for your turn: https://agpt.co/waitlist"; + } + if (error.code?.includes("user_already_exists")) { + redirect("/login"); + } + return error.message; + } + + if (data.session) { + await supabase.auth.setSession(data.session); + } + + revalidatePath("/", "layout"); + redirect("/"); + }, + ); +} diff --git a/autogpt_platform/frontend/src/app/signup/page.tsx b/autogpt_platform/frontend/src/app/signup/page.tsx new file mode 100644 index 000000000000..1c2ad19e2e22 --- /dev/null +++ b/autogpt_platform/frontend/src/app/signup/page.tsx @@ -0,0 +1,225 @@ +"use client"; +import useUser from "@/hooks/useUser"; +import { signup } from "./actions"; +import { Button } from "@/components/ui/button"; +import { + Form, + FormControl, + FormDescription, + FormField, + FormItem, + FormLabel, + FormMessage, +} from "@/components/ui/form"; +import { useForm } from "react-hook-form"; +import { Input } from "@/components/ui/input"; +import { z } from "zod"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { PasswordInput } from "@/components/PasswordInput"; +import { FaGoogle, FaGithub, FaDiscord, FaSpinner } from "react-icons/fa"; +import { useState } from "react"; +import { useSupabase } from "@/components/SupabaseProvider"; +import { useRouter } from "next/navigation"; +import Link from "next/link"; +import { Checkbox } from "@/components/ui/checkbox"; + +const signupFormSchema = z.object({ + email: z.string().email().min(2).max(64), + password: z.string().min(6).max(64), + agreeToTerms: z.boolean().refine((value) => value === true, { + message: "You must agree to the Terms of Use and Privacy Policy", + }), +}); + +export default function LoginPage() { + const { supabase, isLoading: isSupabaseLoading } = useSupabase(); + const { user, isLoading: isUserLoading } = useUser(); + const [feedback, setFeedback] = useState(null); + const router = useRouter(); + const [isLoading, setIsLoading] = useState(false); + + const form = useForm>({ + resolver: zodResolver(signupFormSchema), + defaultValues: { + email: "", + password: "", + agreeToTerms: false, + }, + }); + + if (user) { + console.log("User exists, redirecting to home"); + router.push("/"); + } + + if (isUserLoading || isSupabaseLoading || user) { + return ( +
+ +
+ ); + } + + if (!supabase) { + return ( +
+ User accounts are disabled because Supabase client is unavailable +
+ ); + } + + async function handleSignInWithProvider( + provider: "google" | "github" | "discord", + ) { + const { data, error } = await supabase!.auth.signInWithOAuth({ + provider: provider, + options: { + redirectTo: + process.env.AUTH_CALLBACK_URL ?? + `http://localhost:3000/auth/callback`, + }, + }); + + if (!error) { + setFeedback(null); + return; + } + setFeedback(error.message); + } + + const onSignup = async (data: z.infer) => { + if (await form.trigger()) { + setIsLoading(true); + const error = await signup(data); + setIsLoading(false); + if (error) { + setFeedback(error); + return; + } + setFeedback(null); + } + }; + + return ( +
+
+

Create a New Account

+ {/*
+ + + +
*/} +
+ + ( + + Email + + + + + + )} + /> + ( + + Password + + + + + Password needs to be at least 6 characters long + + + + )} + /> + ( + + + + +
+ + I agree to the{" "} + + Terms of Use + {" "} + and{" "} + + Privacy Policy + + + +
+
+ )} + /> +
+ +
+
+ + Already a member? Log In here + +
+ +

{feedback}

+ +
+
+ ); +} From 8ded935e719a0540a7ebc56c6937ee29d844875b Mon Sep 17 00:00:00 2001 From: Abhimanyu Yadav <122007096+Abhi1992002@users.noreply.github.com> Date: Thu, 24 Oct 2024 03:50:32 +0530 Subject: [PATCH 10/42] feat(frontend): Improve added block positioning logic to handle collisions and dynamic dimensions size (#8406) --- .../frontend/src/components/Flow.tsx | 105 ++++++++++++++++-- autogpt_platform/frontend/src/lib/utils.ts | 76 +++++++++++++ 2 files changed, 171 insertions(+), 10 deletions(-) diff --git a/autogpt_platform/frontend/src/components/Flow.tsx b/autogpt_platform/frontend/src/components/Flow.tsx index 7501ca1e4588..8fb1505788d7 100644 --- a/autogpt_platform/frontend/src/components/Flow.tsx +++ b/autogpt_platform/frontend/src/components/Flow.tsx @@ -26,8 +26,12 @@ import { import "@xyflow/react/dist/style.css"; import { CustomNode } from "./CustomNode"; import "./flow.css"; -import { Link } from "@/lib/autogpt-server-api"; -import { getTypeColor, filterBlocksByType } from "@/lib/utils"; +import { BlockUIType, Link } from "@/lib/autogpt-server-api"; +import { + getTypeColor, + filterBlocksByType, + findNewlyAddedBlockCoordinates, +} from "@/lib/utils"; import { history } from "./history"; import { CustomEdge } from "./CustomEdge"; import ConnectionLine from "./ConnectionLine"; @@ -57,6 +61,15 @@ type FlowContextType = { getNextNodeId: () => string; }; +export type NodeDimension = { + [nodeId: string]: { + x: number; + y: number; + width: number; + height: number; + }; +}; + export const FlowContext = createContext(null); const FlowEditor: React.FC<{ @@ -64,8 +77,14 @@ const FlowEditor: React.FC<{ template?: boolean; className?: string; }> = ({ flowID, template, className }) => { - const { addNodes, addEdges, getNode, deleteElements, updateNode } = - useReactFlow(); + const { + addNodes, + addEdges, + getNode, + deleteElements, + updateNode, + setViewport, + } = useReactFlow(); const [nodeId, setNodeId] = useState(1); const [copiedNodes, setCopiedNodes] = useState([]); const [copiedEdges, setCopiedEdges] = useState([]); @@ -110,6 +129,9 @@ const FlowEditor: React.FC<{ const TUTORIAL_STORAGE_KEY = "shepherd-tour"; + // It stores the dimension of all nodes with position as well + const [nodeDimensions, setNodeDimensions] = useState({}); + useEffect(() => { if (params.get("resetTutorial") === "true") { localStorage.removeItem(TUTORIAL_STORAGE_KEY); @@ -402,16 +424,36 @@ const FlowEditor: React.FC<{ return; } - // Calculate the center of the viewport considering zoom - const viewportCenter = { - x: (window.innerWidth / 2 - x) / zoom, - y: (window.innerHeight / 2 - y) / zoom, - }; + /* + Calculate a position to the right of the newly added block, allowing for some margin. + If adding to the right side causes the new block to collide with an existing block, attempt to place it at the bottom or left. + Why not the top? Because the height of the new block is unknown. + If it still collides, run a loop to find the best position where it does not collide. + Then, adjust the canvas to center on the newly added block. + Note: The width is known, e.g., w = 300px for a note and w = 500px for others, but the height is dynamic. + */ + + // Alternative: We could also use D3 force, Intersection for this (React flow Pro examples) + + const viewportCoordinates = + nodeDimensions && Object.keys(nodeDimensions).length > 0 + ? // we will get all the dimension of nodes, then store + findNewlyAddedBlockCoordinates( + nodeDimensions, + (nodeSchema.uiType == BlockUIType.NOTE ? 300 : 500) / zoom, + 60 / zoom, + zoom, + ) + : // we will get all the dimension of nodes, then store + { + x: (window.innerWidth / 2 - x) / zoom, + y: (window.innerHeight / 2 - y) / zoom, + }; const newNode: CustomNode = { id: nodeId.toString(), type: "custom", - position: viewportCenter, // Set the position to the calculated viewport center + position: viewportCoordinates, // Set the position to the calculated viewport center data: { blockType: nodeType, blockCosts: nodeSchema.costs, @@ -433,6 +475,15 @@ const FlowEditor: React.FC<{ setNodeId((prevId) => prevId + 1); clearNodesStatusAndOutput(); // Clear status and output when a new node is added + setViewport( + { + x: -viewportCoordinates.x * zoom + window.innerWidth / 2, + y: -viewportCoordinates.y * zoom + window.innerHeight / 2 - 100, + zoom: 0.8, + }, + { duration: 500 }, + ); + history.push({ type: "ADD_NODE", payload: { node: { ...newNode, ...newNode.data } }, @@ -442,8 +493,10 @@ const FlowEditor: React.FC<{ }, [ nodeId, + setViewport, availableNodes, addNodes, + nodeDimensions, deleteElements, clearNodesStatusAndOutput, x, @@ -452,6 +505,38 @@ const FlowEditor: React.FC<{ ], ); + const findNodeDimensions = useCallback(() => { + const newNodeDimensions: NodeDimension = nodes.reduce((acc, node) => { + const nodeElement = document.querySelector( + `[data-id="custom-node-${node.id}"]`, + ); + if (nodeElement) { + const rect = nodeElement.getBoundingClientRect(); + const { left, top, width, height } = rect; + + // Convert screen coordinates to flow coordinates + const flowX = (left - x) / zoom; + const flowY = (top - y) / zoom; + const flowWidth = width / zoom; + const flowHeight = height / zoom; + + acc[node.id] = { + x: flowX, + y: flowY, + width: flowWidth, + height: flowHeight, + }; + } + return acc; + }, {} as NodeDimension); + + setNodeDimensions(newNodeDimensions); + }, [nodes, x, y, zoom]); + + useEffect(() => { + findNodeDimensions(); + }, [nodes, findNodeDimensions]); + const handleUndo = () => { history.undo(); }; diff --git a/autogpt_platform/frontend/src/lib/utils.ts b/autogpt_platform/frontend/src/lib/utils.ts index 0c7d2023f90b..76236ced6af1 100644 --- a/autogpt_platform/frontend/src/lib/utils.ts +++ b/autogpt_platform/frontend/src/lib/utils.ts @@ -1,6 +1,7 @@ import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; import { Category } from "./autogpt-server-api/types"; +import { NodeDimension } from "@/components/Flow"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); @@ -213,3 +214,78 @@ export function getBehaveAs(): BehaveAs { ? BehaveAs.CLOUD : BehaveAs.LOCAL; } + +function rectanglesOverlap( + rect1: { x: number; y: number; width: number; height?: number }, + rect2: { x: number; y: number; width: number; height?: number }, +): boolean { + const x1 = rect1.x, + y1 = rect1.y, + w1 = rect1.width, + h1 = rect1.height ?? 100; + const x2 = rect2.x, + y2 = rect2.y, + w2 = rect2.width, + h2 = rect2.height ?? 100; + + // Check if the rectangles do not overlap + return !(x1 + w1 <= x2 || x1 >= x2 + w2 || y1 + h1 <= y2 || y1 >= y2 + h2); +} + +export function findNewlyAddedBlockCoordinates( + nodeDimensions: NodeDimension, + newWidth: number, + margin: number, + zoom: number, +) { + const nodeDimensionArray = Object.values(nodeDimensions); + + for (let i = nodeDimensionArray.length - 1; i >= 0; i--) { + const lastNode = nodeDimensionArray[i]; + const lastNodeHeight = lastNode.height ?? 100; + + // Right of the last node + let newX = lastNode.x + lastNode.width + margin; + let newY = lastNode.y; + let newRect = { x: newX, y: newY, width: newWidth, height: 100 / zoom }; + + const collisionRight = nodeDimensionArray.some((node) => + rectanglesOverlap(newRect, node), + ); + + if (!collisionRight) { + return { x: newX, y: newY }; + } + + // Left of the last node + newX = lastNode.x - newWidth - margin; + newRect = { x: newX, y: newY, width: newWidth, height: 100 / zoom }; + + const collisionLeft = nodeDimensionArray.some((node) => + rectanglesOverlap(newRect, node), + ); + + if (!collisionLeft) { + return { x: newX, y: newY }; + } + + // Below the last node + newX = lastNode.x; + newY = lastNode.y + lastNodeHeight + margin; + newRect = { x: newX, y: newY, width: newWidth, height: 100 / zoom }; + + const collisionBelow = nodeDimensionArray.some((node) => + rectanglesOverlap(newRect, node), + ); + + if (!collisionBelow) { + return { x: newX, y: newY }; + } + } + + // Default position if no space is found + return { + x: 0, + y: 0, + }; +} From 643c33456eadd52deb89d7d4e8b07cb938613d8b Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:12:19 +0100 Subject: [PATCH 11/42] fix(platform): Expose DB Manager Port (#8424) expose 8005 for db manager --- .../helm/autogpt-server/templates/deployment-executor.yaml | 3 +++ .../helm/autogpt-server/templates/service-executor.yaml | 6 +++++- autogpt_platform/infra/helm/autogpt-server/values.dev.yaml | 7 +++++++ .../infra/helm/autogpt-server/values.prod.yaml | 7 +++++++ 4 files changed, 22 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/infra/helm/autogpt-server/templates/deployment-executor.yaml b/autogpt_platform/infra/helm/autogpt-server/templates/deployment-executor.yaml index ad9e1962f18f..c71a1a13fb28 100644 --- a/autogpt_platform/infra/helm/autogpt-server/templates/deployment-executor.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/templates/deployment-executor.yaml @@ -46,6 +46,9 @@ spec: - name: http containerPort: {{ .Values.serviceExecutor.port }} protocol: TCP + - name: db-http + containerPort: {{ .Values.serviceDBManager.port }} + protocol: TCP resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }} diff --git a/autogpt_platform/infra/helm/autogpt-server/templates/service-executor.yaml b/autogpt_platform/infra/helm/autogpt-server/templates/service-executor.yaml index 36ef560b2220..6d8d13ec6066 100644 --- a/autogpt_platform/infra/helm/autogpt-server/templates/service-executor.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/templates/service-executor.yaml @@ -15,5 +15,9 @@ spec: targetPort: http protocol: TCP name: http + - port: {{ .Values.serviceDBManager.port }} + targetPort: db-http + protocol: TCP + name: db-http selector: - app.kubernetes.io/component: executor + app.kubernetes.io/component: executor \ No newline at end of file diff --git a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml index 4d5b39d75bb6..9150de2dfe23 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.dev.yaml @@ -25,6 +25,13 @@ serviceExecutor: annotations: beta.cloud.google.com/backend-config: '{"default": "autogpt-server-backend-config"}' +serviceDBManager: + type: ClusterIP + port: 8005 + targetPort: 8005 + annotations: + beta.cloud.google.com/backend-config: '{"default": "autogpt-server-backend-config"}' + ingress: enabled: true className: "gce" diff --git a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml index 4564e9ac6f85..c6e96862cc6f 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml @@ -25,6 +25,13 @@ serviceExecutor: annotations: beta.cloud.google.com/backend-config: '{"default": "autogpt-server-backend-config"}' +serviceDBManager: + type: ClusterIP + port: 8005 + targetPort: 8005 + annotations: + beta.cloud.google.com/backend-config: '{"default": "autogpt-server-backend-config"}' + ingress: enabled: true className: "gce" From f3a4fd2a416574877a84dde854267d573dffa414 Mon Sep 17 00:00:00 2001 From: Abhimanyu Yadav <122007096+Abhi1992002@users.noreply.github.com> Date: Thu, 24 Oct 2024 22:04:52 +0530 Subject: [PATCH 12/42] fix(market): Handle empty agents response (#8393) * Fix issue where marketplace breaks if no agents are returned * Fix issue where marketplace breaks if no agents are returned * Remove supabase folder from tracking * adding supabase submodule --------- Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com> --- .../frontend/src/app/marketplace/page.tsx | 19 ++++++++++++++++--- autogpt_platform/market/.env.example | 2 +- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/autogpt_platform/frontend/src/app/marketplace/page.tsx b/autogpt_platform/frontend/src/app/marketplace/page.tsx index 232f94c96dc5..7fc67c95ae28 100644 --- a/autogpt_platform/frontend/src/app/marketplace/page.tsx +++ b/autogpt_platform/frontend/src/app/marketplace/page.tsx @@ -118,7 +118,7 @@ const AgentCard: React.FC<{ agent: Agent; featured?: boolean }> = ({ {agent.description}

- Categories: {agent.categories.join(", ")} + Categories: {agent.categories?.join(", ")}
@@ -315,14 +315,27 @@ const Marketplace: React.FC = () => { ) ) : ( <> - {featuredAgents.length > 0 && ( + {featuredAgents?.length > 0 ? ( + ) : ( +
+

No Featured Agents found

+
+ )} + +
+ + {topAgents?.length > 0 ? ( + + ) : ( +
+

No Top Downloaded Agents found

+
)} - Date: Thu, 24 Oct 2024 17:35:25 +0100 Subject: [PATCH 13/42] fix(market): Fix DB URL not being read or upgrade correctly (#8428) fix extra character --- .../infra/helm/autogpt-market/templates/sealed-secrets.yaml | 1 + autogpt_platform/infra/helm/autogpt-market/values.dev.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/infra/helm/autogpt-market/templates/sealed-secrets.yaml b/autogpt_platform/infra/helm/autogpt-market/templates/sealed-secrets.yaml index 86258929e81b..41ab87d94396 100644 --- a/autogpt_platform/infra/helm/autogpt-market/templates/sealed-secrets.yaml +++ b/autogpt_platform/infra/helm/autogpt-market/templates/sealed-secrets.yaml @@ -5,6 +5,7 @@ metadata: namespace: {{ .Release.Namespace }} annotations: sealedsecrets.bitnami.com/cluster-wide: "true" + force-update: "true" spec: encryptedData: {{- range $key, $value := .Values.secrets }} diff --git a/autogpt_platform/infra/helm/autogpt-market/values.dev.yaml b/autogpt_platform/infra/helm/autogpt-market/values.dev.yaml index 96d63b40db1a..8b30d3beac0b 100644 --- a/autogpt_platform/infra/helm/autogpt-market/values.dev.yaml +++ b/autogpt_platform/infra/helm/autogpt-market/values.dev.yaml @@ -95,6 +95,6 @@ env: secrets: SUPABASE_JWT_SECRET: "AgBL6H6byPKXVN0nYWgqyoZBHJJJqk8S3rNYSu3JvwOsNn3Sw94SrJcXuE48fxcojcbKvYcDshetFhrSNEsfUwvbSFoaIj+MItPIZ8FGHyfXnmeZJ5j/sdvcjaMmWS7CiL2jhzI+nc8rL2ATV2TgA7E6FA9MvhWqkAyZu04pCd1c9DsAlpcfQ3pxywXjOV+BU0+1+++Z+fTnaugt+hRbhHrKTddaPhi72KrIyJPOUlqfht0JcgflT1f5frvmNnDwkiP862knhJsqg7XyrSy4msCN7eH4BvV01pO3KhAEnMG4Lk/5FeE/2t05+HqgB4mvPbkqfY6g8Lvf6qmd5g+stB10wRmr+TxzokOom36r7sYd3tyXZMgemJOi3BZjYk7774zf/TI081pJx1FPvM6dDPQdrgnU1nhshq/gLyKB5tTTCkPQHW+YhUtApWgrC5mq8ezMqfuwrUuR+NvyO59K56ERJJFAw1fDKHIVl4TYmftet42lkVOchml30cje9gjBtpOrTkFf8lMv5DLQ/ygdwsAYmVrpYtXbT+GAaRI9QIv/rZVuckfz4uIhTp7IjAtRXJreMH2V8GZ22h6Of/BQG+XA42lMA2huIyLwsqmtL0qxNmIu5EGjcXBvlOt5eNquzts68jgNqEfE6fEuqS9lDepvtTSxGp7wmcmWwOBbIgbCnxl8t4IW/e1qvOPuvxMldH+YtVIvfHMf3DnvbehhCIYuLmRM+E6139/qdGKreRyCi4PA4PKTMEG962rSu/7z0X5wu+UYY+kESrs7HhksL3PhB3dpbZ0HF+b6lchziTI0atG+UNX05ysL" - DATABASE_URL: "AgACJkybaNon1X7ZkvtyM0mJ3Gfbjh1LWSJdWGC3ny6QU/8yERomTjvDylHuFoaoGeEs5ewYtgH87G/t1q3LF35cjmipGTSJbxFKfyoRcGBZSajen2Ijs+satVD7T6bmCNsurEsUD16QDLoV5lx+THXdEjv4VrBtFwY0HO2BIP15X/vMie9Mk91Uk1eze5dj8WoQ5OywH8O8Ugh7/iOleEyiPaMzxdRAfwvYHgX5QYqDno0ktZFyKnDOpCnegIwcUei4tt+EiTAG1SxESk48DQQokNrZc+lqlPwozX6FOYkgcQiZZqIN+9qOy5hB+1wKggS8zcd7/YAlSpSd8LMeAokflxOabN5Ctyvx3k5tGgstKQabW1TErwL8RjB3WYClLvJl8bfc4qILr4jpfA4all59f8oinATiyeqJ3Hx267FdHH2aywnXnNdEmycGhKkuH0vAa74oYsUiD9BrjkxmMdxCwmEjl47ob5fwcraKOc7hNF+hPi2C61/z1T6yoIeu4ediMTk0m1ZPIOotlbj/nKkmrKDfD+WMia/YvBpUtlM/SaEyX66gmO03kxW92cmXVCjK65oGh0ueCyK84J9e/2y+qO6yFXh7991+wTQyAedBBoc2myNcebKzuAmFNwanCs+FMOktPZsMMzfFy3oHJQxgFkPEp+jKennODqTe0A3LBhJC3ddwCYgd1TAABC2+DqFGaCRiyaSZ4BZIitEPFzpJwITIFZoRyxrCibrGKKnILVjGNaiV/KdIzfj70AAdzG/7GFdA9SKzRQimnVw99YTjNouCYzt7iLBV/8KrcMvyyeHZle1A6zg0gjjj4Yp6p0ssIOvhuDLjec4NMi/E5EbgYzKQFr7jN2u9%" + DATABASE_URL: "AgACJkybaNon1X7ZkvtyM0mJ3Gfbjh1LWSJdWGC3ny6QU/8yERomTjvDylHuFoaoGeEs5ewYtgH87G/t1q3LF35cjmipGTSJbxFKfyoRcGBZSajen2Ijs+satVD7T6bmCNsurEsUD16QDLoV5lx+THXdEjv4VrBtFwY0HO2BIP15X/vMie9Mk91Uk1eze5dj8WoQ5OywH8O8Ugh7/iOleEyiPaMzxdRAfwvYHgX5QYqDno0ktZFyKnDOpCnegIwcUei4tt+EiTAG1SxESk48DQQokNrZc+lqlPwozX6FOYkgcQiZZqIN+9qOy5hB+1wKggS8zcd7/YAlSpSd8LMeAokflxOabN5Ctyvx3k5tGgstKQabW1TErwL8RjB3WYClLvJl8bfc4qILr4jpfA4all59f8oinATiyeqJ3Hx267FdHH2aywnXnNdEmycGhKkuH0vAa74oYsUiD9BrjkxmMdxCwmEjl47ob5fwcraKOc7hNF+hPi2C61/z1T6yoIeu4ediMTk0m1ZPIOotlbj/nKkmrKDfD+WMia/YvBpUtlM/SaEyX66gmO03kxW92cmXVCjK65oGh0ueCyK84J9e/2y+qO6yFXh7991+wTQyAedBBoc2myNcebKzuAmFNwanCs+FMOktPZsMMzfFy3oHJQxgFkPEp+jKennODqTe0A3LBhJC3ddwCYgd1TAABC2+DqFGaCRiyaSZ4BZIitEPFzpJwITIFZoRyxrCibrGKKnILVjGNaiV/KdIzfj70AAdzG/7GFdA9SKzRQimnVw99YTjNouCYzt7iLBV/8KrcMvyyeHZle1A6zg0gjjj4Yp6p0ssIOvhuDLjec4NMi/E5EbgYzKQFr7jN2u9" SENTRY_DSN: "AgB9i02k9BgaIXF0p9Qyyeo0PRa9bd3UiPBWQ3V4Jn19Vy5XAzKfYvqP8t+vafN2ffY+wCk1FlhYzdIuFjh3oRvdKvtwGEBZk6nLFiUrw/GSum0ueR2OzEy+AwGFXA9FstD0KCMJvyehSv9xRm9kqLOC4Xb/5lOWwTNF3AKqkEMEeKrOWx4OLXG6MLdR7OicY45BCE5WvcV2PizDaN5w3J72eUxFP0HjXit/aW/gK32IJME0RxeuQZ5TnPKTNrooYPR0eWXd2PgYshFjQ2ARy/OsvOrD10y8tQ3M5qx/HNWLC/r0lEu2np+9iUIAE1ufSwjmNSyi4V8usdZWq7xnf3vuKlSgmveqKkLbwQUWj1BpLNIjUvyY+1Rk1rxup/WCgaw+xOZd6sR/qTIjILv5GuzpU0AiwEm7sgl2pmpFXq6n6QjNOfZoPBTL73f4bpXNJ3EyMYDbPxOtGDz91B+bDtOsMr1DNWQslKkk3EIilm/l0+NuLKxf/e2HwM3sB15mkQqVZBdbiVOr7B27cR9xAnr296KE/BU6E9dp/fl+IgcaonMpTsE61pCLHWxQXNBO5X078/zhmaXBQyEBNQ5SPDr9u3pHWrrLkBtXwldZvgmLMMVFMAzrVVkJB4lC9sZj0pXPhda0/BsA4xcGRELj/PizwSr+kb3lDumNMqzEap5ZjEGCBpeeIVSo19v+RoEDw0AFmyxfYx2+91HsgiEqjEUg+J6yDmjAoRpOD1wRZOnnpR8ufMiqdBteCG8B5SXkhgto1WtDyOMVlX2wbmBFVetv2nAbMIA/l4E/Yv8HXiJsTqAkeYc5Qak6/SMGnZTw7Q==" SUPABASE_SERVICE_ROLE_KEY: "AgCrHCd2AdIv++sX7AAf0YoV+qDFhPuErd/Q9Jgj8/1wDJklqv0giI/M7TRUV6j2Gqa/yLP90Hoiy2BboE0V3FrTtHzasxtSK0hd93+bxvZ34FEfKQyAiddBR8OxzlPwaplzaJ+/Tu+yHf1EesgXrUdydk38D4AQqkrC30FRKJcCxJNTHHzsZiHGQLZNP2l0cEsmqtMXMk8TqbcqHvJZRpr8jP1dSJ7bxEdU9mH/zB4HV+EsPLDFWFAnFjbEQwv8FEGgqpy81ifch4Hz7S0wjwk0x/QsagKavBTvI579K6Sx7uJyMyilpzm5Ct8kDXTEGUWv7pFINXM5cAbcBNzuvwvtXmshMwRsl9e/5Y2/T2VgS7/wPTJA4AmyyrSK976SOjo7imb4XfMwc6Cc/2GE0BRW9jiKvzjQ1TC2ovQpNujTYYgPzIq8sFXEVss31DIcfwbRAzgKTTQZKl+H+i9AS0q6iYHtKORwTQ2bv2XwQwxogXMHTUq1oC3MkzjKfV9DcoTHU2o/+gTyOBW5i3BRatuublA1x0EwDoEVmWA1+i1h2bpkl4QYuyeNlhJnRHzuQU3RdFLWn3MkDM8Q4Y9n0/XXwwTCgqtdAExqNh3YJYumWiGiWfdBpEUqlUtOUurNMXy6rHH4odnNKeLQfMOa9406x5H5xiwNkl3mzGjNiPDMS7JMTptlsoL8DshE2TM0PqZVrQy81OsGNpdiU8MVeUdHO6/bDBe7j9v0FipqpeehX1AZEYb/4CWosTJACWpaTnLYRh+w12bk3x6Sj0kriDKMOuJLBRh1fveZXUC9C0FsEPhq2rBLQDVh78DkBIeKVGUzuxDP/6mT3OSBPe4aCye0vTmwtEOEvB+A7rcMkOl+j90bKAveE9H+f7UVU6Og40Nc3sSuMolKHbQyB9TNd4+jOfmySSN675riL6BpFFCSuWqjrqWFr0yI1h/xAg+YMg8WzWarwSeWr3ykXrbhQvu7Oj27ffLXEIvS0gU=" \ No newline at end of file From 1321faf9db87debf40e66b00e42672dac11ec851 Mon Sep 17 00:00:00 2001 From: Zamil Majdy Date: Fri, 25 Oct 2024 00:13:58 +0700 Subject: [PATCH 14/42] fix(backend): Fix error pin output not being propagated into the next nodes (#8408) --- .../backend/backend/executor/manager.py | 56 ++++++++++++------- 1 file changed, 35 insertions(+), 21 deletions(-) diff --git a/autogpt_platform/backend/backend/executor/manager.py b/autogpt_platform/backend/backend/executor/manager.py index 033d2bec3de1..102de62c1698 100644 --- a/autogpt_platform/backend/backend/executor/manager.py +++ b/autogpt_platform/backend/backend/executor/manager.py @@ -155,18 +155,19 @@ def update_execution(status: ExecutionStatus) -> ExecutionResult: # changes during execution. ⚠️ This means a set of credentials can only be used by # one (running) block at a time; simultaneous execution of blocks using same # credentials is not supported. - credentials = creds_lock = None + creds_lock = None if CREDENTIALS_FIELD_NAME in input_data: credentials_meta = CredentialsMetaInput(**input_data[CREDENTIALS_FIELD_NAME]) credentials, creds_lock = creds_manager.acquire(user_id, credentials_meta.id) extra_exec_kwargs["credentials"] = credentials output_size = 0 - try: - credit = db_client.get_or_refill_credit(user_id) - if credit < 0: - raise ValueError(f"Insufficient credit: {credit}") + end_status = ExecutionStatus.COMPLETED + credit = db_client.get_or_refill_credit(user_id) + if credit < 0: + raise ValueError(f"Insufficient credit: {credit}") + try: for output_name, output_data in node_block.execute( input_data, **extra_exec_kwargs ): @@ -185,31 +186,44 @@ def update_execution(status: ExecutionStatus) -> ExecutionResult: ): yield execution - # Release lock on credentials ASAP - if creds_lock: - creds_lock.release() - - r = update_execution(ExecutionStatus.COMPLETED) - s = input_size + output_size - t = ( - (r.end_time - r.start_time).total_seconds() - if r.end_time and r.start_time - else 0 - ) - db_client.spend_credits(user_id, credit, node_block.id, input_data, s, t) - except Exception as e: + end_status = ExecutionStatus.FAILED error_msg = str(e) log_metadata.exception(f"Node execution failed with error {error_msg}") db_client.upsert_execution_output(node_exec_id, "error", error_msg) - update_execution(ExecutionStatus.FAILED) - raise e + for execution in _enqueue_next_nodes( + db_client=db_client, + node=node, + output=("error", error_msg), + user_id=user_id, + graph_exec_id=graph_exec_id, + graph_id=graph_id, + log_metadata=log_metadata, + ): + yield execution + raise e finally: # Ensure credentials are released even if execution fails if creds_lock: - creds_lock.release() + try: + creds_lock.release() + except Exception as e: + log_metadata.error(f"Failed to release credentials lock: {e}") + + # Update execution status and spend credits + res = update_execution(end_status) + if end_status == ExecutionStatus.COMPLETED: + s = input_size + output_size + t = ( + (res.end_time - res.start_time).total_seconds() + if res.end_time and res.start_time + else 0 + ) + db_client.spend_credits(user_id, credit, node_block.id, input_data, s, t) + + # Update execution stats if execution_stats is not None: execution_stats.update(node_block.execution_stats) execution_stats["input_size"] = input_size From 08a8abeb5886b1ccb56401adf9cdbbf4fd019e54 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Thu, 24 Oct 2024 19:31:53 +0100 Subject: [PATCH 15/42] docs(pr_template): Add reminder for config and infra changes (#8430) add config change reminder --- .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 98a69ae40b85..2895f601baf8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,3 +21,16 @@ Here is a list of our critical paths, if you need some inspiration on what and h - Upload agent to marketplace - Import an agent from marketplace and confirm it executes correctly - Edit an agent from monitor, and confirm it executes correctly + +### Configuration Changes 📝 +> [!NOTE] +Only for the new autogpt platform, currently in autogpt_platform/ + +If you're making configuration or infrastructure changes, please remember to check you've updated the related infrastructure code in the autogpt_platform/infra folder. + +Examples of such changes might include: + +- Changing ports +- Adding new services that need to communicate with each other +- Secrets or environment variable changes +- New or infrastructure changes such as databases From 6d812acb2023177bfe529224a12b7045e8b93a29 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Thu, 24 Oct 2024 20:06:28 +0100 Subject: [PATCH 16/42] fix(infra): Update variable names (#8447) update variable names --- .../infra/terraform/environments/prod.tfvars | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/autogpt_platform/infra/terraform/environments/prod.tfvars b/autogpt_platform/infra/terraform/environments/prod.tfvars index 4bceda49957a..e75b5b3d45ce 100644 --- a/autogpt_platform/infra/terraform/environments/prod.tfvars +++ b/autogpt_platform/infra/terraform/environments/prod.tfvars @@ -29,10 +29,9 @@ service_accounts = { display_name = "AutoGPT prod Market backend Account" description = "Service account for agpt prod market backend" }, - "prod-github-actions-workload-identity" = { - service_account_name = "prod-github-actions-sa" - namespace = "prod-agpt" - ksa_name = "prod-github-actions-sa" + "prod-github-actions-sa" = { + display_name = "GitHub Actions Prod Service Account" + description = "Service account for GitHub Actions deployments to prod" } } @@ -108,7 +107,7 @@ role_bindings = { "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" ], "roles/iam.serviceAccountTokenCreator" = [ - "principalSet://iam.googleapis.com/projects/638488734936/locations/global/workloadIdentityPools/prod-pool/*", + "principalSet://iam.googleapis.com/projects/1021527134101/locations/global/workloadIdentityPools/prod-pool/*", "serviceAccount:prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com" ] } @@ -121,7 +120,7 @@ standard_bucket_names = [] bucket_admins = ["gcp-devops-agpt@agpt.co", "gcp-developers@agpt.co"] workload_identity_pools = { - "dev-pool" = { + "prod-pool" = { display_name = "Production Identity Pool" providers = { "github" = { From e2df6019fbf719aa309a24b813e632acd894f4a5 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Thu, 24 Oct 2024 21:01:53 +0100 Subject: [PATCH 17/42] feat(blocks): Add pinecone and jina blocks (#8401) * add pinecone and jina blocks * udpate based on comments * backend updates * frontend updates * type hint * more type hints * another type hint * update run signature * shared jina provider * fix linting * lockfile * remove noqa * remove noqa * remove vector db folder * line * update pincone credentials provider * fix imports * formating * update frontend * Test (#8425) * h * Discard changes to autogpt_platform/backend/poetry.lock * fix: broken dep --------- Co-authored-by: Nicholas Tindle --- .../backend/backend/blocks/jina/_auth.py | 39 ++++++ .../backend/backend/blocks/jina/chunking.py | 69 +++++++++ .../backend/backend/blocks/jina/embeddings.py | 44 ++++++ .../backend/backend/blocks/pinecone.py | 131 ++++++++++++++++++ autogpt_platform/backend/poetry.lock | 61 +++++++- autogpt_platform/backend/pyproject.toml | 5 +- .../integrations/credentials-input.tsx | 4 +- .../integrations/credentials-provider.tsx | 10 +- .../src/lib/autogpt-server-api/types.ts | 2 +- 9 files changed, 355 insertions(+), 10 deletions(-) create mode 100644 autogpt_platform/backend/backend/blocks/jina/_auth.py create mode 100644 autogpt_platform/backend/backend/blocks/jina/chunking.py create mode 100644 autogpt_platform/backend/backend/blocks/jina/embeddings.py create mode 100644 autogpt_platform/backend/backend/blocks/pinecone.py diff --git a/autogpt_platform/backend/backend/blocks/jina/_auth.py b/autogpt_platform/backend/backend/blocks/jina/_auth.py new file mode 100644 index 000000000000..c39443da47b8 --- /dev/null +++ b/autogpt_platform/backend/backend/blocks/jina/_auth.py @@ -0,0 +1,39 @@ +from typing import Literal + +from autogpt_libs.supabase_integration_credentials_store.types import APIKeyCredentials +from pydantic import SecretStr + +from backend.data.model import CredentialsField, CredentialsMetaInput + +JinaCredentials = APIKeyCredentials +JinaCredentialsInput = CredentialsMetaInput[ + Literal["jina"], + Literal["api_key"], +] + + +def JinaCredentialsField() -> JinaCredentialsInput: + """ + Creates a Jina credentials input on a block. + + """ + return CredentialsField( + provider="jina", + supported_credential_types={"api_key"}, + description="The Jina integration can be used with an API Key.", + ) + + +TEST_CREDENTIALS = APIKeyCredentials( + id="01234567-89ab-cdef-0123-456789abcdef", + provider="jina", + api_key=SecretStr("mock-jina-api-key"), + title="Mock Jina API key", + expires_at=None, +) +TEST_CREDENTIALS_INPUT = { + "provider": TEST_CREDENTIALS.provider, + "id": TEST_CREDENTIALS.id, + "type": TEST_CREDENTIALS.type, + "title": TEST_CREDENTIALS.type, +} diff --git a/autogpt_platform/backend/backend/blocks/jina/chunking.py b/autogpt_platform/backend/backend/blocks/jina/chunking.py new file mode 100644 index 000000000000..f3b0c4a34b8e --- /dev/null +++ b/autogpt_platform/backend/backend/blocks/jina/chunking.py @@ -0,0 +1,69 @@ +import requests + +from backend.blocks.jina._auth import ( + JinaCredentials, + JinaCredentialsField, + JinaCredentialsInput, +) +from backend.data.block import Block, BlockCategory, BlockOutput, BlockSchema +from backend.data.model import SchemaField + + +class JinaChunkingBlock(Block): + class Input(BlockSchema): + texts: list = SchemaField(description="List of texts to chunk") + + credentials: JinaCredentialsInput = JinaCredentialsField() + max_chunk_length: int = SchemaField( + description="Maximum length of each chunk", default=1000 + ) + return_tokens: bool = SchemaField( + description="Whether to return token information", default=False + ) + + class Output(BlockSchema): + chunks: list = SchemaField(description="List of chunked texts") + tokens: list = SchemaField( + description="List of token information for each chunk", optional=True + ) + + def __init__(self): + super().__init__( + id="806fb15e-830f-4796-8692-557d300ff43c", + description="Chunks texts using Jina AI's segmentation service", + categories={BlockCategory.AI, BlockCategory.TEXT}, + input_schema=JinaChunkingBlock.Input, + output_schema=JinaChunkingBlock.Output, + ) + + def run( + self, input_data: Input, *, credentials: JinaCredentials, **kwargs + ) -> BlockOutput: + url = "https://segment.jina.ai/" + headers = { + "Content-Type": "application/json", + "Authorization": f"Bearer {credentials.api_key.get_secret_value()}", + } + + all_chunks = [] + all_tokens = [] + + for text in input_data.texts: + data = { + "content": text, + "return_tokens": str(input_data.return_tokens).lower(), + "return_chunks": "true", + "max_chunk_length": str(input_data.max_chunk_length), + } + + response = requests.post(url, headers=headers, json=data) + response.raise_for_status() + result = response.json() + + all_chunks.extend(result.get("chunks", [])) + if input_data.return_tokens: + all_tokens.extend(result.get("tokens", [])) + + yield "chunks", all_chunks + if input_data.return_tokens: + yield "tokens", all_tokens diff --git a/autogpt_platform/backend/backend/blocks/jina/embeddings.py b/autogpt_platform/backend/backend/blocks/jina/embeddings.py new file mode 100644 index 000000000000..a33acfec9eec --- /dev/null +++ b/autogpt_platform/backend/backend/blocks/jina/embeddings.py @@ -0,0 +1,44 @@ +import requests + +from backend.blocks.jina._auth import ( + JinaCredentials, + JinaCredentialsField, + JinaCredentialsInput, +) +from backend.data.block import Block, BlockCategory, BlockOutput, BlockSchema +from backend.data.model import SchemaField + + +class JinaEmbeddingBlock(Block): + class Input(BlockSchema): + texts: list = SchemaField(description="List of texts to embed") + credentials: JinaCredentialsInput = JinaCredentialsField() + model: str = SchemaField( + description="Jina embedding model to use", + default="jina-embeddings-v2-base-en", + ) + + class Output(BlockSchema): + embeddings: list = SchemaField(description="List of embeddings") + + def __init__(self): + super().__init__( + id="7c56b3ab-62e7-43a2-a2dc-4ec4245660b6", + description="Generates embeddings using Jina AI", + categories={BlockCategory.AI}, + input_schema=JinaEmbeddingBlock.Input, + output_schema=JinaEmbeddingBlock.Output, + ) + + def run( + self, input_data: Input, *, credentials: JinaCredentials, **kwargs + ) -> BlockOutput: + url = "https://api.jina.ai/v1/embeddings" + headers = { + "Content-Type": "application/json", + "Authorization": f"Bearer {credentials.api_key.get_secret_value()}", + } + data = {"input": input_data.texts, "model": input_data.model} + response = requests.post(url, headers=headers, json=data) + embeddings = [e["embedding"] for e in response.json()["data"]] + yield "embeddings", embeddings diff --git a/autogpt_platform/backend/backend/blocks/pinecone.py b/autogpt_platform/backend/backend/blocks/pinecone.py new file mode 100644 index 000000000000..91364fce92f0 --- /dev/null +++ b/autogpt_platform/backend/backend/blocks/pinecone.py @@ -0,0 +1,131 @@ +from typing import Literal + +from autogpt_libs.supabase_integration_credentials_store import APIKeyCredentials +from pinecone import Pinecone, ServerlessSpec + +from backend.data.block import Block, BlockCategory, BlockOutput, BlockSchema +from backend.data.model import CredentialsField, CredentialsMetaInput, SchemaField + +PineconeCredentials = APIKeyCredentials +PineconeCredentialsInput = CredentialsMetaInput[ + Literal["pinecone"], + Literal["api_key"], +] + + +def PineconeCredentialsField() -> PineconeCredentialsInput: + """ + Creates a Pinecone credentials input on a block. + + """ + return CredentialsField( + provider="pinecone", + supported_credential_types={"api_key"}, + description="The Pinecone integration can be used with an API Key.", + ) + + +class PineconeInitBlock(Block): + class Input(BlockSchema): + credentials: PineconeCredentialsInput = PineconeCredentialsField() + index_name: str = SchemaField(description="Name of the Pinecone index") + dimension: int = SchemaField( + description="Dimension of the vectors", default=768 + ) + metric: str = SchemaField( + description="Distance metric for the index", default="cosine" + ) + cloud: str = SchemaField( + description="Cloud provider for serverless", default="aws" + ) + region: str = SchemaField( + description="Region for serverless", default="us-east-1" + ) + + class Output(BlockSchema): + index: str = SchemaField(description="Name of the initialized Pinecone index") + message: str = SchemaField(description="Status message") + + def __init__(self): + super().__init__( + id="48d8fdab-8f03-41f3-8407-8107ba11ec9b", + description="Initializes a Pinecone index", + categories={BlockCategory.LOGIC}, + input_schema=PineconeInitBlock.Input, + output_schema=PineconeInitBlock.Output, + ) + + def run( + self, input_data: Input, *, credentials: APIKeyCredentials, **kwargs + ) -> BlockOutput: + pc = Pinecone(api_key=credentials.api_key.get_secret_value()) + + try: + existing_indexes = pc.list_indexes() + if input_data.index_name not in [index.name for index in existing_indexes]: + pc.create_index( + name=input_data.index_name, + dimension=input_data.dimension, + metric=input_data.metric, + spec=ServerlessSpec( + cloud=input_data.cloud, region=input_data.region + ), + ) + message = f"Created new index: {input_data.index_name}" + else: + message = f"Using existing index: {input_data.index_name}" + + yield "index", input_data.index_name + yield "message", message + except Exception as e: + yield "message", f"Error initializing Pinecone index: {str(e)}" + + +class PineconeQueryBlock(Block): + class Input(BlockSchema): + credentials: PineconeCredentialsInput = PineconeCredentialsField() + query_vector: list = SchemaField(description="Query vector") + namespace: str = SchemaField( + description="Namespace to query in Pinecone", default="" + ) + top_k: int = SchemaField( + description="Number of top results to return", default=3 + ) + include_values: bool = SchemaField( + description="Whether to include vector values in the response", + default=False, + ) + include_metadata: bool = SchemaField( + description="Whether to include metadata in the response", default=True + ) + host: str = SchemaField(description="Host for pinecone") + + class Output(BlockSchema): + results: dict = SchemaField(description="Query results from Pinecone") + + def __init__(self): + super().__init__( + id="9ad93d0f-91b4-4c9c-8eb1-82e26b4a01c5", + description="Queries a Pinecone index", + categories={BlockCategory.LOGIC}, + input_schema=PineconeQueryBlock.Input, + output_schema=PineconeQueryBlock.Output, + ) + + def run( + self, + input_data: Input, + *, + credentials: APIKeyCredentials, + **kwargs, + ) -> BlockOutput: + pc = Pinecone(api_key=credentials.api_key.get_secret_value()) + idx = pc.Index(host=input_data.host) + results = idx.query( + namespace=input_data.namespace, + vector=input_data.query_vector, + top_k=input_data.top_k, + include_values=input_data.include_values, + include_metadata=input_data.include_metadata, + ) + yield "results", results diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index bbe9f6382caf..4d7a84339125 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -17,13 +17,13 @@ yarl = "*" [[package]] name = "aiohappyeyeballs" -version = "2.4.2" +version = "2.4.3" description = "Happy Eyeballs for asyncio" optional = false python-versions = ">=3.8" files = [ - {file = "aiohappyeyeballs-2.4.2-py3-none-any.whl", hash = "sha256:8522691d9a154ba1145b157d6d5c15e5c692527ce6a53c5e5f9876977f6dab2f"}, - {file = "aiohappyeyeballs-2.4.2.tar.gz", hash = "sha256:4ca893e6c5c1f5bf3888b04cb5a3bee24995398efef6e0b9f747b5e89d84fd74"}, + {file = "aiohappyeyeballs-2.4.3-py3-none-any.whl", hash = "sha256:8a7a83727b2756f394ab2895ea0765a0a8c475e3c71e98d43d76f22b4b435572"}, + {file = "aiohappyeyeballs-2.4.3.tar.gz", hash = "sha256:75cf88a15106a5002a8eb1dab212525c00d1f4c0fa96e551c9fbe6f09a621586"}, ] [[package]] @@ -1841,6 +1841,57 @@ files = [ {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, ] +[[package]] +name = "pinecone" +version = "5.3.1" +description = "Pinecone client and SDK" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "pinecone-5.3.1-py3-none-any.whl", hash = "sha256:dd180963d29cd648f2d58becf18b21f150362aef80446dd3a7ed15cbe85bb4c7"}, + {file = "pinecone-5.3.1.tar.gz", hash = "sha256:a216630331753958f4ebcdc6e6d473402d17152f2194af3e19b3416c73b0dcc4"}, +] + +[package.dependencies] +certifi = ">=2019.11.17" +pinecone-plugin-inference = ">=1.1.0,<2.0.0" +pinecone-plugin-interface = ">=0.0.7,<0.0.8" +python-dateutil = ">=2.5.3" +tqdm = ">=4.64.1" +typing-extensions = ">=3.7.4" +urllib3 = [ + {version = ">=1.26.0", markers = "python_version >= \"3.8\" and python_version < \"3.12\""}, + {version = ">=1.26.5", markers = "python_version >= \"3.12\" and python_version < \"4.0\""}, +] + +[package.extras] +grpc = ["googleapis-common-protos (>=1.53.0)", "grpcio (>=1.44.0)", "grpcio (>=1.59.0)", "lz4 (>=3.1.3)", "protobuf (>=4.25,<5.0)", "protoc-gen-openapiv2 (>=0.0.1,<0.0.2)"] + +[[package]] +name = "pinecone-plugin-inference" +version = "1.1.0" +description = "Embeddings plugin for Pinecone SDK" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "pinecone_plugin_inference-1.1.0-py3-none-any.whl", hash = "sha256:32c61aba21c9a28fdcd0e782204c1ca641aeb3fd6e42764fbf0de8186eb657ec"}, + {file = "pinecone_plugin_inference-1.1.0.tar.gz", hash = "sha256:283e5ae4590b901bf2179beb56fc3d1b715e63582f37ec7abb0708cf70912d1f"}, +] + +[package.dependencies] +pinecone-plugin-interface = ">=0.0.7,<0.0.8" + +[[package]] +name = "pinecone-plugin-interface" +version = "0.0.7" +description = "Plugin interface for the Pinecone python client" +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "pinecone_plugin_interface-0.0.7-py3-none-any.whl", hash = "sha256:875857ad9c9fc8bbc074dbe780d187a2afd21f5bfe0f3b08601924a61ef1bba8"}, + {file = "pinecone_plugin_interface-0.0.7.tar.gz", hash = "sha256:b8e6675e41847333aa13923cc44daa3f85676d7157324682dc1640588a982846"}, +] + [[package]] name = "platformdirs" version = "4.3.6" @@ -2092,8 +2143,8 @@ files = [ annotated-types = ">=0.6.0" pydantic-core = "2.23.4" typing-extensions = [ - {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, {version = ">=4.6.1", markers = "python_version < \"3.13\""}, + {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, ] [package.extras] @@ -3668,4 +3719,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "0962d61ced1a8154c64c6bbdb3f72aca558831adfbfda68eb66f39b535466f77" +content-hash = "f9293b504ef813f98f43a8c3ab1b779ff9d7dc2e3bd9412fccc6da5102915e6b" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index 4cd3637976d0..d2450fc56740 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -27,7 +27,7 @@ jsonref = "^1.1.0" jsonschema = "^4.22.0" ollama = "^0.3.0" openai = "^1.35.7" -praw = "^7.7.1" +praw = "~7.7.1" prisma = "^0.13.1" psutil = "^5.9.8" pydantic = "^2.7.2" @@ -45,7 +45,7 @@ websockets = "^12.0" youtube-transcript-api = "^0.6.2" googlemaps = "^4.10.0" replicate = "^0.34.1" - +pinecone = "^5.3.1" [tool.poetry.group.dev.dependencies] poethepoet = "^0.26.1" httpx = "^0.27.0" @@ -55,6 +55,7 @@ ruff = "^0.5.2" pyright = "^1.1.371" isort = "^5.13.2" black = "^24.4.2" +aiohappyeyeballs = "^2.4.3" [build-system] requires = ["poetry-core"] diff --git a/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx b/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx index 811e37d809bd..252eb6fd704f 100644 --- a/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx +++ b/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx @@ -7,7 +7,7 @@ import useCredentials from "@/hooks/useCredentials"; import { zodResolver } from "@hookform/resolvers/zod"; import AutoGPTServerAPI from "@/lib/autogpt-server-api"; import { NotionLogoIcon } from "@radix-ui/react-icons"; -import { FaGithub, FaGoogle } from "react-icons/fa"; +import { FaGithub, FaGoogle, FaKey } from "react-icons/fa"; import { FC, useMemo, useState } from "react"; import { CredentialsMetaInput } from "@/lib/autogpt-server-api/types"; import { IconKey, IconKeyPlus, IconUserPlus } from "@/components/ui/icons"; @@ -41,6 +41,8 @@ export const providerIcons: Record> = { github: FaGithub, google: FaGoogle, notion: NotionLogoIcon, + jina: FaKey, + pinecone: FaKey, }; // --8<-- [end:ProviderIconsEmbed] diff --git a/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx b/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx index ffb62d793e9b..40ad438b929b 100644 --- a/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx +++ b/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx @@ -12,7 +12,13 @@ import { } from "react"; // --8<-- [start:CredentialsProviderNames] -const CREDENTIALS_PROVIDER_NAMES = ["github", "google", "notion"] as const; +const CREDENTIALS_PROVIDER_NAMES = [ + "github", + "google", + "notion", + "jina", + "pinecone", +] as const; export type CredentialsProviderName = (typeof CREDENTIALS_PROVIDER_NAMES)[number]; @@ -21,6 +27,8 @@ const providerDisplayNames: Record = { github: "GitHub", google: "Google", notion: "Notion", + jina: "Jina", + pinecone: "Pinecone", }; // --8<-- [end:CredentialsProviderNames] diff --git a/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts b/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts index 97a6bf4e5046..d7ae2a0a8331 100644 --- a/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts +++ b/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts @@ -96,7 +96,7 @@ export type CredentialsType = "api_key" | "oauth2"; // --8<-- [start:BlockIOCredentialsSubSchema] export type BlockIOCredentialsSubSchema = BlockIOSubSchemaMeta & { - credentials_provider: "github" | "google" | "notion"; + credentials_provider: "github" | "google" | "notion" | "jina" | "pinecone"; credentials_scopes?: string[]; credentials_types: Array; }; From e990a9d301e2aff2717670d96aebadbd59bf8d6e Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Fri, 25 Oct 2024 17:35:38 +0100 Subject: [PATCH 18/42] feat(platform): Add default secrets (#8452) * secrets * seal secrets * remove jina * replicate --- .../infra/helm/autogpt-market/values.prod.yaml | 8 ++++---- .../infra/helm/autogpt-server/values.prod.yaml | 18 +++++++++++------- .../autogpt-websocket-server/values.prod.yaml | 2 +- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/autogpt_platform/infra/helm/autogpt-market/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-market/values.prod.yaml index dd10fe22fad6..e0e5f4848789 100644 --- a/autogpt_platform/infra/helm/autogpt-market/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-market/values.prod.yaml @@ -93,7 +93,7 @@ env: BACKEND_CORS_ALLOW_ORIGINS: "https://platform.agpt.co" secrets: - SUPABASE_JWT_SECRET: "AgC57Q3xupsOzLd4HwvZI9C16CgJrD5+qVnPULP0GKaCvdjTgJaNDVvDkOmaTL93iKFEFqdajDNwv0lJnIPsrzdvUGjl7gVmb2zJWBB75Ha89h9frzO5dhEib9c7yTjbuDKZvo7Mlrc4LEQOnXfHtGG+O+T4o7lV92lAiEvhs1v6WL6rKOzAQAqSbBTxtgQhXUbdLJ048WHLAL1W1AW8IXYsz76hWdoUSfXI7XNK+uQvqkYlbe8Kmb6J5B6nSGrfabtlCUGai4XJN5wya3seCJi4VEJczkVR/oHFvZMdIJQMBH3X0wOf/vMbq+CtDfXwztezc09hpSpvMnbHc6HsIoD1/7tICE+Fn0/NVHhDYCcmA/ESh+kvocrmENOArWmGBAtx9HrOXFoVqpTgWuEIMCamrBxXlzc96S9LF1AA/b8lsR6Py5cCD1GZGpDFl/YdIJhH6P808cLykiVlnd8oQZDoqDK1C+8rlXeoDRE53oF0vCjNkvf7QdV3lXUVe+hSxzEKpLUylSWfDNF//tW+DVlf636u3xKn0ZqMdJ3oo24pMONBn5oQQJCim+SEOs5fKgi7WVr0X92uAwiyW1eVP1F+c0qHJanbFy4fzbRzSGhHxOUT+GwPne5EgzyQJ2yro4wOy6UA9RPeasogaqAurMFVXA9wqqP7qY6tYlmf5hvz7DML/ubLSpxS2mAj6rB37enmVdtZebw8sp/cVesU7A1MinQ3C/jS/jiHWEfmxHTMvKx0YH7hUnoqZvCs/lu7M1mDQ2m97M1I4Zv6QH9lwNNECTfMVCMSjIetbZmn2uBuyTb+7ScrXyCR" - DATABASE_URL: "AgAGn36yLuB4z1eh1MuBkUt3EydFYVoFi4v/XC7JgfdVyt5cMI9c59rv1Jztrep/TejpeJVPYKuyR07TH9d96Lc+8ALXSNZKCD8Q57/vqnaMRjPvnSwVaLzdx57F66953y2p6244QXpbLHaVGHG0ZowV0rY4XpU6VcmQZnSbSVyBXS+ZcYjF5AYN31+0TWTG8RRVAJ1WFA6Jq4fUtLokaZTr5+pPy4FGoEdBZJVAgNVBPNe6XIrCTJL7N/zwJxUWkqF1nUTWkr017SAodgicQbogcvOcHclgZLEf60nRPbxYUiLJ1uzcBGMT1Ze8n3TdIi5uMvqQ5fb/rHqyEBGjpcOPhZR5yZTeLVhdxOPoQ2gzMVfASGbfzrueGFq0SGKn1P6Vm1zboVD39/EunEfZ4iXULRVeqIXBZ7jhBIkaYx/NwX7LkaUfv+mpEI6xhYewHT9QH/QXlTjN5XAMERryJrAlOuEe6cv0nz7Up+sLkesPLKDaWXkcoKDhgA3XP1aTTgn2i8nzAOzB9q+Y05amEGl7Z1YYtVD/2pR96sZhaL1YcS32WP03HyZ3+ZRM1cq9AgEE776iMsOAgzbETj+Li6l/Oc2i8Nb9dSwjdz/fAjR9P6v3+JPl0Zl71P8Y7RKDawXyzfaNGOOl1lBeY3CVe+t3duSOdO7PuQOVxbGYIlqgSs5hdLRmTeQGywv2ucxS4p9IZTqooI1BoXHGW/JE5GbzxVMVanuY1eM+F/G1xY6W2tIyNo8a4qVjZ1ZbrdUFqNZkBPnJcekNFyo2PErfVMLJDVwhU8hOTbPmmlkYf9EAEYDkTFIeqXimN+oIK6xzYiomppECl8fTJ86doMK6fjD/DtdBfGuM35eGu9jQYpLoHv3XTpO0stx6utk=" - SENTRY_DSN: "AgAd4XlyuPNl5fqxIGHg5L7y2nzjujpKoHUP9IUAOPiGEobtjiP1M5M8EB/0anjqrIj9GC+oqPWuLvL4rPwPMrTeiEyRmeHwlA9eQDJPi+C3sxu4cbXwUdh/Un5hLZkE/GuqMuOgALwZ599CmHQJVXye9mWbs8xWmyGQd6BJsEE32KMRIbI3Wk21luIzypmyeTg1WdpNuAwecwK4u+CkadwGWaJOyZJacJDRwvNzGWbjzGHAHHsllXk2gZFz4CCGNDyDVZrGPG0rCmJji72pu1jcjipoqYXte1WWfs9Yr9Nc1YU/yaOqz7/U3NhPzezQtvzbTF7RRJaBV4nOIjoOwSFBIeoYPjr8BSFNyCc3/8F+2nWJ7pDSWXbV5L2aDIP7ba0tLeqsuCxevvooGNDki1iGBykEp/NXOCQeZ0BCQYS9OuqCHzrrFA6jjkA6Ojxf2E7WZ8Y8LGVW9LGMggh1mM2c+fbV1za2psRrCQXR2ml46BOIt9/24Os56dggt/vbgXJ7l1mXQXQm+XU/S51ifK4g+HqkTE6PhAafm/sTLqeQKMDsy1/iEsnb8yphjpsydxBDgp+Rcp/zQOt0JuD4TTvpQE8NNwVQZJ2I6zMYwTu2tg+IIiv1fFtYt76BmOqjS/4USk9sjlHQRf562th3TRMENcg8crOOBmOmLaaEI/JCrtnpPMO8N8v26Q8bFSAzBFkyvO2kSUFNMkfKf2kBdtcufh3MysGtu/fL3Gh3BAOrefEDnHYFvvPx1w22FJsypl82mbU55wj2T/v9/UIxqeJpSW0/6HraNKzYAQ5Z9Fx2sfDBafMihiRWsURPfOqZkw==" - SUPABASE_SERVICE_ROLE_KEY: "AgAZKuZI0N/fmap8PaEoYti567yK5rugVVtMY0au4HTQBKKz336rcoMz/aGWWlPf/8AfpdEq1iRNKNRG+Xcz7MvCM9vjophOxCSoIgDts8zaKJ835NSKZZTtmQJRWdq8hAtTzA4QgKVq3uGmMiNi/8k3pKlif33sAdYRZoAOZ+RWb1lrLX7E3NTRcLfLbnQqoiMCt99Ks6npDgyxH2/ugBQGgP3DxmLPR2LA7FHOSlXbvLl5sA5FtxPXfcogjAL4u37FrG4yJ+7B+n+f9DpIPGpCpo7SyQNJ1iaY8OU1I6/PxmMr/ECshcQVWsLtKRgqSpZf6nO6DHXFzUFYufM4xJ2hELxeo4ihNbqt/GrZK9FR26vEohSPblL4pC3i5qdAbGkHhUAui0yzs4RApN+o/RhvE1Ip98PJoSBzz/TOUE9PASRa7d8kzYQGFBQ7o703vyAdWOXopoOkmbiZ3kmVxYxi5lXqi6xaN0jzjVldelk8p6SCcWadR1MEZjpyiY6bPM5/kLgHiq25UsU4N/ssqA+ZXma7zUMydbxbfxqW9D8kSs5H7Hcbbd07HDYPmBNSc3w5MTI5QPZzH/yPbRA0pKUX3yF05BhIbgDuhRYQG582IYk8nI+PmvqNxDFLEDEauzoX90qNUcidZS2jgjJ0BwmkB2zgBdoU13zELjdhdewoOJJkAVm6wIT83tUnkwpEW2nJg5bE1dmvKXQuoT85/03hIf36BXQ815m6Cp1lf4W4goOfF3U3HM7CGNFRC8st3l7Rem49AE7sPWBVc00a8NnKVzdbFohm0l+NRzRwFagU/gYkXHILpP0YPdfWHI8mptv0+UlirwuJXW0EUYU9hu9rCMB3u+ooSUFLK3ojlA7A34s7lJ+7VW0haxl/Wt0PQGwGptDT8ZBrLFv7NtCGq7FRlBfdlHEKouuaqgzIJq7THwEXyvOAkmZMhrEoQoOZol/cMXYntglTO9eZ5Vhapp6ttmO8SxQieAilImY=" + DATABASE_URL: "AgCe47Y6QFnZRmNNpc3iVIcJ9zAZMPr/1OU61Slr0oM1yjneT7LgNTrAD9+QSu7Q0q2u+533FImOu8o/pKG0gNzEtyeSEEsegmCiaxs4Wi+/jVodU8CgfrYN3xkgi7QuD2fMs/zz+sv25LDg8LR1mIvkv+W/PkbqoVx3UAUXL7ZM+UvkFqie+69C/kwoH51xPaYi+FajSzql+VdhDc28aFkwrDApenyLbyKAHSnplWqpFDVtcQK4dL7K9EhRkUnWORNHiYT+N0Ras5tw1ief481nDud29nhlQ+5HIHGK5QouKmA1yJIJqavbzsDf7n+nWCwULIWXGi5d8A23e8vZAuF2CInUHAmP8d+xBDRx8aATZigoOM0GpHn5ljxNs0TCZ1HvQ8TjzQOpcgmBZ9l5Eod3y/PRhjGBRrcR550PAxpkjRj9VjfMN5NSiHVsGw7xKQr2+4yghv3VgSZFvOg1qUxmleJ9khwZq2Gel0uvhGStYw50x/C+EDMaJNQUaBDDbo5Bjy6/RNAEgrX0snQAZWCZSg4bsb4+2jRvo50W1wMr9076qOFViNn2YM+exIGXdmgggAKk7foZDZz1KgG+dAhKBXoUhXwHO9P450gq4xxDGSk0ZCe10OiszNkXVtmmE+Ryi5JjnbDsxLJP1tynrljFUb29VePt0zwZAhdnz0MQU1T9IVbjcKYB92h19lhcdgE=" + SUPABASE_JWT_SECRET: "AgDCNoyGjkV74NoJTSN+VDpiIl8B7sRzDK3WFAO2wBWdhFSwnO2x4cZ7F9YxiEQgvjslCEn5wCrgqBiO6L3EP4qd0EUibZrx+6xXIK5tRY3YACXf1pQEgRTl5fXTbdlRJgr0+2upe1bB30LecbM/G+goX+RprKmwSxNJfBo/AQQP1l1dJsl4v/yGbEj8WQFD7jTiyCGT8skIX07GUvzZVbAD+DaNmvucuENja90O7q3ACOIJ9VWX9rTJX1V5brrb7y4ge8Iv97bUisH/MtFtZMEBEK1csixdBUC47wtboxn3LnMUaE2OlJZD+9IzEf6TqTJGREyOd+h2V/8BmUYnKRZUVWPURsWLinfbDpyXPmGSBgnfYCd5ZKS5dvwvQwiR6ODlO9E2WOe4xoAHSq57uUxLopcrDsVzZcLiahA02613vYafwc9svg/8dJV2FokKrnQs/bRHlVCa51Vs8z/zCBnHzS6RBq2p2vMU/PbzMfMR2DjzQcvE6hOnyLMlOMpYe67FaHC2cZTayUqNzi5hDNUp19grEqwjdvannOenn/ewTX4yCOVaOoAQ+QBrv1o4g46E18wFnDMoYH+b7PJ0mUf3NSV0jXH+elbW5H6c5WdnmKT+nWQhaVTD4pMAlY8z2W6LddpA7XHfj/lAzboSj+VJqwCrx8AVMKJ4LTbYGTdu9RkcNZLVHkrtafEAYZNnYrIwNZT3SuLWO8X/dGKrrZmOoaaQJZkBuRy1bLdOGXKUIBvf+MDvmApjp/+ScDxl11KifiEO3tO65hNVa2YPjkIf36fJpJ6vtDchsmyowJ9cRhduZsu4PO4D" + SENTRY_DSN: "AgA+X2HkF9b3+p13JS4vG7VY+8p7su6qJ7smoPKqYh44Vpb7J5Eu9ksPNQkcFTDDPT8jAylqsHWUdI0A8u20+a4lqqGkmPN5tCgyBgAL1pIyvPUQjYUbL7A5lTQKlRLJJ+05h5XbkRU7cWR+G4yDUCDj2HcThne0CNDUbDao9D67ekSLUtp6/d0KO45Efao4MLuqISnypPUBGHmAdWGr2z/w7ItXjvUKt3RpH6pSCrGzjlKPKhenKdTsk/NX4Z+ew/JBbHiDQjKCdj0UlXFWH7Q4axaFy0T8tsqf/UN7n/QTalYE+v28isxrHvoR6h7kZETQV/gl0y7DdmTCi8/A1j1+e/9zUx6HvK+C/qGMsKMdNgaaVNSdfFp/yfMgXTUn4HGAls4gjVKSSRaIAbBq32NdKkIvRfocuAGsxInwbrDXLR0nzbHG/U/QhlvfL2gfqKRIVRJtEh99VW/KMMeXZUWR9dNt9gfTMtyzL7eta4oEV+g7sdO/9VjDn5wtic2/7eAxgA7wTEoDA8m0whpHH4VcPLHUfKLTHnRXVu6bykAfBgfEKhJBS8DghvPyu73qL5MREuYkGya4n0RQ73h5ja7mYwI0lsefQszP9Fz1lR+757dhJ6+/E7nNnOE/ShD/8xE0V54pd2IvrRoJmcOsIOZ5w+xWfmN8OyLn7wuEpqEuMHEoisLF9RSp2V5iKbB+fFB4o5P1/VqkNPEFBe0jA4K8DAGX+VdChMpjAI47wF22aj+jmTRf+EY+5l+aEvjyU0G7oUPVzzG8rYa6p+v56zeVsmU4SHIDO75J1cH7tnYDeOxk9fAYZgNplS4gKHVT0w==" + SUPABASE_SERVICE_ROLE_KEY: "AgC07IPlKFO0JYHzO7/H/SVmws9x4mKUd08OQ8VrrvTrwXTmmkKJ0nrbCR1tqSEQTGAFsoTbAtJjVmz04xDsBRbuBuTfbROcD057J+4nKSEvke0rUPnBESiziYQF1Xo0xC80li6OEpiz2ssp5yCF0oddqOkXGR5BfKJ8ZnOS+YkvNla4uE8fbzMUGJU0Erw+/DUOVdIIbF8/P/k55VXbhzPiafMuISc4+vH33/SLeSnUctUiVq43x42buYApt1qb/0cOKElRWtdI1YIx79mbhG9RbE3XinYQ11Fbvo/SeJmTI5YtatH8aesFKSHJy1svzULPEG1Fx6B1wvlROxtiu4Y3WV2YEHOLMXUbrM1CGsqO/W07ohyAGAF/KlhHfYCl/ZqAs+BtuBvPtXXPkxSEj0clqknAW8x8wdJBckPn3OVba0hsmBPcw4NNJPYf9X95jiYMMP+TrrpryTygL0TBcH4agRCu1AXukzdjelvQhRidzV6ZoRxP3e6QjMcqoFW3jx9TAKjj5iZcC9BIIiic3XYCWVv5ei2HuFG2jDBbVDNaNFIOrx/CyrqNIdNiyPX0DH+GilUY4AoZgN/k9syvmWi2sl81yLOt27gGDjGSJTX2whNztcJTDWLgl7t1snj9if+3KzROR/Kmz1XawaBGK2Md+JyiugludHmC6eOO+TKXrV/d02LEZKf0aKnAuAu+gfBGBBagHF5jjkgmCYOGQpALDZWsafqmUsHOIvHmrAEpnKwRCW1JX7Z1pU6SkFm8ceNwsEFPDqIeYbra3k/pHxoSMA5QAO/IafFQdp6NTnYPduJN5yjRh6MSJPIf2U2PFgLnNAug/3Uojk6I6NikcORZtBCHBGd9dtYH3ykQdBSh44ysS3m2o6QVqpbQRYAaUbKEU/wExtZYWK9NzlbuxmRoSKJDAXtjG7Lzgx66p+fZAxYU+MPgxzaoyM53kfqGtLfuikAxswIyvK1+mcq866tyqLFSOwHoQKfez6Q=" \ No newline at end of file diff --git a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml index c6e96862cc6f..32d22991e25f 100644 --- a/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-server/values.prod.yaml @@ -113,10 +113,14 @@ env: DATABASEMANAGER_HOST: "autogpt-server-executor.prod-agpt.svc.cluster.local" secrets: - ANTHROPIC_API_KEY: "AgCf0CUyhYluMW13zvdScIzF50c1u4P3sUkKZjwe2lJGil/WrxN1r+GQGoLzjMn8ODANV7FiJN2+Y+ilVgpf0tVA9uEWLCL/OguNshRYWfNfU0PCgciXvz+Cy8xILfJW5SIZvZgDV5zMbzXeBomJYq+qFpr+PRyiIzA6ciHK/ZuItcGBB0FMdJ6w2gvAlLTFmAK0ekyXTzYidPEkBp+DA4jJXuzjXGd4U8iC4IcrSs/o0eaqfMQSOBRc7w/6SK+YDUnWypc2awBX4qNwqKbQRYAT59lihy/B0D4BhjjiUb2bAlzNWP0STsJONrOPbnHzuvipm1xpk+1bdYFpkqJAf9rk9GOPAMfB5f/kOdmaoj9jdQN55NIomSzub+KnSGt+m4G6YlEnUf2ZBZTKTeWO1jzk0gnzrdFZclPq/9Dd0qUBsZ/30KjbBRJyL9SexwxpfMoaf6dKJHcsOdOevaCpMQZaQ/AjcFZRtntw8mLALJzTZbTq7Gb6h25blwe1Oi6DrOuTrWT+OMHeUJcDQA3q1rJERa4xV0wLjYraCTerezhZgjMvfRD1Ykm5S+1U9hzsZUZZQS6OEEIS0BaOfYugt3DiFSNLrIUwVcYbl5geLoiMW6oSukEeb4s2AukRqKkMYz8/stjCgJB2NiarVi2NIaDvgaXWLgJxNxxovgtHyS4RR8WpRPdWJdjAs6RH13ve42a35S2m65jvUNg875GSO8Eo1izYH6q2LvJgGmlTfMworP6O2ryZO9tBjNS58UYxM8EqvtXLVktA0TYlK7wlF2NzA/waIMmiOiKJrb8YnQF28ePxYnmQSqqe2ZpwSiDBsDNrzfZvvTk9Ai81qu8=" - OPENAI_API_KEY: "AgB5OEgB8GzXv3u2pAE1wvbWMrTPwoFcPR7obOKGuFt/GAuFrVhPj3Fo2QlDBxSyXl0BzTBJ4zhUO6xi10pqPgS11sDoEQwAvsSAAdIuY9PZk0E3lZaBXihw8dyGMH+CbwLHZr+Y4kfvA2P0qW7BD3PmAqTtQ5Kk5/BffIMNDEZPK94+BNx0HxfrJNQXpH7XvXED7IEzqZRx3wYYUEjcMXu9SYke46ZCkR9oZDMqQF/P+nT/qXo4mPDztKMRFnpT3AEHZuz8CUV1+QdzDHXT6vmkumLn6J2GaaX2bsNcIKNP9s/I7P8prsTN0Lb2XZ2AfBkROgabWfObe0FRQ7lDI7o8Pq2whRM1zTj9tuo0lcwk72gZd2drVvgRn4yh68T8Rs+dymr/bGQlvuDjL+OarF9Db0EGBxfPJTzqbanr8/h5RQCfe0LIjz+207/C+z+AZcKpTa+V5EXOO4Mx9aoqsow665pOKNMx1TCmVKAonPiduIdiBu67jIEd9zPXC0eSkyr0mez9QJit6/cweIy1BhkZaxj9uAM9YAUa3HEASsQEtfxy9cddevmzUMPBzzMpvhT30r7lsQUq8sStWM2MGIdF1eadZM34wsgjZLScu/NHGb9lBKlhNop5QofngdAL6GHu5ubMq1PKSujJzEKJmSdoej2yKFJ3DfH6j62iti2V19TJIRPahFP4Snjk/1V6jrE4uQDu562+QRZvy2dm+3l9rlRsyi7gTgaDGRvU6a85roT5xU/9nJik8Vh42dlc2CLJvKOBkBhWogPWU4RQE/DbEUp51sASfav6gMPwNUJ1AE53V+4sdwn6jrQP/zU1rq7VNOfSHSQ9IMhh/cuEMxdz8psnlzuBtTjLayNjiABaiHr4RRxlapIE2zgeMGUdetUjIgETAQilJxaI1zvg6YM047xiBQ==" - REDIS_PASSWORD: "AgAfjYznqRaf/teLvYmjk61r3N0hx3jUFcrvzOARUQokr79relW7V48COEpVBUZzv5212oXpAOdNL2boBfTGneVJ59ohh1PIW1Wm/zrLhYs/G7gIx1YZdeAFDaB++fdNU87MWpLrDXknf0bOj4VgeuoGQ5aph5sHH9ZNVU6KODyQiZK88ghgfuB6YLe0U7ng5X9m2pY+FZ/NlrZZTaI6Lmhzfk8ozXg70n9/pPpdLy3C7o79Y15mcMOrO5SVufsIH8jHJUKwG0T5Pjkzy7qImQQAVlH24No7J55fhyZHwo2TegWw9PDuPinjcW2LfoDqVSRMcW8Gs0b41OhrOriZss8vUG5PqB49/PdVt7a9R52WVeq1vWTOc5vBLdjq8xiOX1XzghVHvvt8HKaSCO4cb+nt5iPCv+1ZbTm1UVCG66okjCpJpW8fB3R/1i+HjH2gy1gzwW0ATQzDeRoa0ErBJfEbKfmEAgUU0uiqfSd4Ch9rJmEWgt4WdcKBUjvhKODk6mgX1LoQTLnuAivQV3AYw7837+nLwKXiwdWP+FvNNTdPjH7Im5UiwPqIs+rUnT+tm0UPhKjDg60Ylc2QIV3HmjU1qoa9h438hxufb8rURSLpPfI5d462ou6g3W67KR2UzqfNuX4o7PB1suWmLs/lQpegybFZ8i8ShbcTC+rfrsPD0d1g0SW5RCTj5wsCvuE6KOZLdcCw4kV69jS36QA3jg==" - SUPABASE_JWT_SECRET: "AgC57Q3xupsOzLd4HwvZI9C16CgJrD5+qVnPULP0GKaCvdjTgJaNDVvDkOmaTL93iKFEFqdajDNwv0lJnIPsrzdvUGjl7gVmb2zJWBB75Ha89h9frzO5dhEib9c7yTjbuDKZvo7Mlrc4LEQOnXfHtGG+O+T4o7lV92lAiEvhs1v6WL6rKOzAQAqSbBTxtgQhXUbdLJ048WHLAL1W1AW8IXYsz76hWdoUSfXI7XNK+uQvqkYlbe8Kmb6J5B6nSGrfabtlCUGai4XJN5wya3seCJi4VEJczkVR/oHFvZMdIJQMBH3X0wOf/vMbq+CtDfXwztezc09hpSpvMnbHc6HsIoD1/7tICE+Fn0/NVHhDYCcmA/ESh+kvocrmENOArWmGBAtx9HrOXFoVqpTgWuEIMCamrBxXlzc96S9LF1AA/b8lsR6Py5cCD1GZGpDFl/YdIJhH6P808cLykiVlnd8oQZDoqDK1C+8rlXeoDRE53oF0vCjNkvf7QdV3lXUVe+hSxzEKpLUylSWfDNF//tW+DVlf636u3xKn0ZqMdJ3oo24pMONBn5oQQJCim+SEOs5fKgi7WVr0X92uAwiyW1eVP1F+c0qHJanbFy4fzbRzSGhHxOUT+GwPne5EgzyQJ2yro4wOy6UA9RPeasogaqAurMFVXA9wqqP7qY6tYlmf5hvz7DML/ubLSpxS2mAj6rB37enmVdtZebw8sp/cVesU7A1MinQ3C/jS/jiHWEfmxHTMvKx0YH7hUnoqZvCs/lu7M1mDQ2m97M1I4Zv6QH9lwNNECTfMVCMSjIetbZmn2uBuyTb+7ScrXyCR" - DATABASE_URL: "AgAGn36yLuB4z1eh1MuBkUt3EydFYVoFi4v/XC7JgfdVyt5cMI9c59rv1Jztrep/TejpeJVPYKuyR07TH9d96Lc+8ALXSNZKCD8Q57/vqnaMRjPvnSwVaLzdx57F66953y2p6244QXpbLHaVGHG0ZowV0rY4XpU6VcmQZnSbSVyBXS+ZcYjF5AYN31+0TWTG8RRVAJ1WFA6Jq4fUtLokaZTr5+pPy4FGoEdBZJVAgNVBPNe6XIrCTJL7N/zwJxUWkqF1nUTWkr017SAodgicQbogcvOcHclgZLEf60nRPbxYUiLJ1uzcBGMT1Ze8n3TdIi5uMvqQ5fb/rHqyEBGjpcOPhZR5yZTeLVhdxOPoQ2gzMVfASGbfzrueGFq0SGKn1P6Vm1zboVD39/EunEfZ4iXULRVeqIXBZ7jhBIkaYx/NwX7LkaUfv+mpEI6xhYewHT9QH/QXlTjN5XAMERryJrAlOuEe6cv0nz7Up+sLkesPLKDaWXkcoKDhgA3XP1aTTgn2i8nzAOzB9q+Y05amEGl7Z1YYtVD/2pR96sZhaL1YcS32WP03HyZ3+ZRM1cq9AgEE776iMsOAgzbETj+Li6l/Oc2i8Nb9dSwjdz/fAjR9P6v3+JPl0Zl71P8Y7RKDawXyzfaNGOOl1lBeY3CVe+t3duSOdO7PuQOVxbGYIlqgSs5hdLRmTeQGywv2ucxS4p9IZTqooI1BoXHGW/JE5GbzxVMVanuY1eM+F/G1xY6W2tIyNo8a4qVjZ1ZbrdUFqNZkBPnJcekNFyo2PErfVMLJDVwhU8hOTbPmmlkYf9EAEYDkTFIeqXimN+oIK6xzYiomppECl8fTJ86doMK6fjD/DtdBfGuM35eGu9jQYpLoHv3XTpO0stx6utk=" - SENTRY_DSN: "AgAd4XlyuPNl5fqxIGHg5L7y2nzjujpKoHUP9IUAOPiGEobtjiP1M5M8EB/0anjqrIj9GC+oqPWuLvL4rPwPMrTeiEyRmeHwlA9eQDJPi+C3sxu4cbXwUdh/Un5hLZkE/GuqMuOgALwZ599CmHQJVXye9mWbs8xWmyGQd6BJsEE32KMRIbI3Wk21luIzypmyeTg1WdpNuAwecwK4u+CkadwGWaJOyZJacJDRwvNzGWbjzGHAHHsllXk2gZFz4CCGNDyDVZrGPG0rCmJji72pu1jcjipoqYXte1WWfs9Yr9Nc1YU/yaOqz7/U3NhPzezQtvzbTF7RRJaBV4nOIjoOwSFBIeoYPjr8BSFNyCc3/8F+2nWJ7pDSWXbV5L2aDIP7ba0tLeqsuCxevvooGNDki1iGBykEp/NXOCQeZ0BCQYS9OuqCHzrrFA6jjkA6Ojxf2E7WZ8Y8LGVW9LGMggh1mM2c+fbV1za2psRrCQXR2ml46BOIt9/24Os56dggt/vbgXJ7l1mXQXQm+XU/S51ifK4g+HqkTE6PhAafm/sTLqeQKMDsy1/iEsnb8yphjpsydxBDgp+Rcp/zQOt0JuD4TTvpQE8NNwVQZJ2I6zMYwTu2tg+IIiv1fFtYt76BmOqjS/4USk9sjlHQRf562th3TRMENcg8crOOBmOmLaaEI/JCrtnpPMO8N8v26Q8bFSAzBFkyvO2kSUFNMkfKf2kBdtcufh3MysGtu/fL3Gh3BAOrefEDnHYFvvPx1w22FJsypl82mbU55wj2T/v9/UIxqeJpSW0/6HraNKzYAQ5Z9Fx2sfDBafMihiRWsURPfOqZkw==" - SUPABASE_SERVICE_ROLE_KEY: "AgAZKuZI0N/fmap8PaEoYti567yK5rugVVtMY0au4HTQBKKz336rcoMz/aGWWlPf/8AfpdEq1iRNKNRG+Xcz7MvCM9vjophOxCSoIgDts8zaKJ835NSKZZTtmQJRWdq8hAtTzA4QgKVq3uGmMiNi/8k3pKlif33sAdYRZoAOZ+RWb1lrLX7E3NTRcLfLbnQqoiMCt99Ks6npDgyxH2/ugBQGgP3DxmLPR2LA7FHOSlXbvLl5sA5FtxPXfcogjAL4u37FrG4yJ+7B+n+f9DpIPGpCpo7SyQNJ1iaY8OU1I6/PxmMr/ECshcQVWsLtKRgqSpZf6nO6DHXFzUFYufM4xJ2hELxeo4ihNbqt/GrZK9FR26vEohSPblL4pC3i5qdAbGkHhUAui0yzs4RApN+o/RhvE1Ip98PJoSBzz/TOUE9PASRa7d8kzYQGFBQ7o703vyAdWOXopoOkmbiZ3kmVxYxi5lXqi6xaN0jzjVldelk8p6SCcWadR1MEZjpyiY6bPM5/kLgHiq25UsU4N/ssqA+ZXma7zUMydbxbfxqW9D8kSs5H7Hcbbd07HDYPmBNSc3w5MTI5QPZzH/yPbRA0pKUX3yF05BhIbgDuhRYQG582IYk8nI+PmvqNxDFLEDEauzoX90qNUcidZS2jgjJ0BwmkB2zgBdoU13zELjdhdewoOJJkAVm6wIT83tUnkwpEW2nJg5bE1dmvKXQuoT85/03hIf36BXQ815m6Cp1lf4W4goOfF3U3HM7CGNFRC8st3l7Rem49AE7sPWBVc00a8NnKVzdbFohm0l+NRzRwFagU/gYkXHILpP0YPdfWHI8mptv0+UlirwuJXW0EUYU9hu9rCMB3u+ooSUFLK3ojlA7A34s7lJ+7VW0haxl/Wt0PQGwGptDT8ZBrLFv7NtCGq7FRlBfdlHEKouuaqgzIJq7THwEXyvOAkmZMhrEoQoOZol/cMXYntglTO9eZ5Vhapp6ttmO8SxQieAilImY=" + REPLICATE_API_KEY: "AgCPCgcYb+tE8/k45Y7/my4G2jWPCuEMTXJIn1fG1q4x4ZJPFzb43m7Uqtwn23NkmUZ5Qvh8BXedrtHwxapuYzw/P6c7xK66xfLKRbTWtYk4twS3sxPb+pt1FXY4USEjj5yeIFduybkqhE2QfnGoyrbDZ4Bz3AIgnrRD0Ee5m9u5yNZTPmJqZZqg4MRdUBCxCWIJBkW6DCE9nCPAQeNPD6e+lZ1j+/LocT2HX/ZlcsPXCxbn6wkxoyLqA0vUKSG9azS6oLvn0/3Cb01ozG8S2OEAqWIImFqhKGMfGqL6jSZWln43cmQdMTzSzM+HiprA9JHjZqGK7wOV9HZvSR+58IXoJGPBEIM7jIg5KqPjpZY4KFZBp5OiiRRYu+nCbuD+KsY/7ogjPHjbi1rpR8TrtXdzWNmwsTTmjytB/KEqeUpLWOEPgArFPyrNTS5/nmREH7r9jNEhfIRdTlS3IVGGXp/VN8napbNND1GDyzowvF771neq7/zTmfCRCJ4J0gwPNKM5rzOuRW+caEf2qOFBKIldVa/J0PFg5bAgpGL6jhpXHj0Q/+j1s3FA/D2ZebZTPIpKe40It3sWsS/0Qjhbj1GMbL4yUWvGpBSUTk7kZazkaVND1LbhjC+4AolTQdIU4MgW0bkmDn5ZI4a9/dHyLS3lFeYNSQ6vnbz+Id7zB3O0D6/FH8nfAUGL8V+J3eFKMp+G67z+XYH6WGABaNicz41zFBDF5hRax+k/ZziPPlFY0kDc3cAB6pLc" + IDEOGRAM_API_KEY: "AgBTMZopEC5qALJvordVcdbUnwOEhLR5v6+7bTWg8GF2GSeNn2jKqM+o+wr2FjZJ0vtfyS+MjpOrr1xXrhdWLHg6HXyonjg67jS4BwxFrX60MbnkuoeYDX10O30JloAaMcq3a7OzLa/2r9RjqICO0fappaYHuysTcj6XD+wHsgQgZBSaqaomP7WR0YEIEiLVJaVFfQJaj1lqffIXxSQHE/oqafKqV3CeBPcD2jgwvErBMOBldTNDY2ehSmS54ebwLcXcLwf6JoQjXeit2Zry2ffnW5eNIIwYVl5GO4JT6rE2lB4B6jDs0z/y7toXdN5pGuVoYGDia8OKd7MuW3IlAWkhYLcoKla62/YzcC1JffMrqV++lWt4WFcuXWvL6UUNshwCdX/LQ9/tMt81cCQuin4mrVPxrEYALkin6HBaOWChCbhVS31lPWmFLM+vE+dvogY9Zp3PubxP5E3gsRLKn2LeAEXiGjBlf2H3IQ6/YI/WonsT1pKTHMkegHmvNz79XCFAJLnUIXlffznyTj+A+5VAVVl+i90mc2UtQLyEVuMbwK3lcoKB0IzNCs8OY/9DkuoROIikPOg79ZVmo+d1DzSl3y2tlR64Sw/pd5TL58+/MVbLFI35mKo1HKoxN+kUIDehFfZ8Sn8+8MkUsuAT7xfDvgYZpIxC2138XqTFJn2PhvdbQGB4l9dGIo+fjrddWuoEhAzZXJ8EmxTUaY+SRPKyWqKgf+w+qjdzRKqsE/zIo5Xj3LrnJh3VEC01waR1TdM+qIRTlpAO8m5oYHO8QB32GnabUbjPRDVIq2Vkp9qKpwgWtrBHTQ==" + GROQ_API_KEY: "AgCxjMuIUxeJYxvGFMMRV3vOeTs7eJbA+oHsjCi6dCVL4/rk9GBK+NSDuG87ltIk5iwXsx75arP8YLHjifC0Jn5lfzxy4KLmQSkgfXBw+X05nO1zNoSWCadVhZDKAu1YL/FTD874f2UsSRLMV9BkqW2YNjN+WXab+dDTkicNcNTV6q/HKn6vMLeQd5PDv0Nbtup7B3C6rfSnIiKC0YH0Bqvc5BPEmw+6PVK9nPpdJiL6IxPX84LsJ/T1vMRNxlkFgEAN+3CZyx5q3ycMEQjOsBQGWny1HDeGuYeeYxRbg8PWMT+mx5uDampxqf66ztT1+PxpBx/+pgReSvWot5zGI1uN20Fiqav/n8VYF9x0wvYfFaSSGWeosjJ195MZDjq0cjWsy14lhGPbA839aZm+E6EQ3hmFzQULM4iR1sGu1OP87GhE6HbJ3Os4Gmsbo3XqWEy2puWSqcnZbkZvely5MGU6HDQ0L09EDMTG1PmmI3VmRiPUmJGxe+GtHaCmtJINsBrrbvjIki3TLSGwbIITKh5OEy5Y9My9H7WWZnzX8Dppkpqti1eUxh/GdtIZvLBve2N9nw65NRcx0sNp2knsO7Yk2+J2I9IrEwE8eC/AeBt7ii1ukCf1CSPNDj42GtqWgrQ15X85i7XCudmi2n4QfVL9/ZGOIjt95m8Ge+/o1Q4ltZBJ0wNgQPHClr12s/2H02BkmoJfUBlVQsGSc7yDz+cwPHLGb+tpjdPwENkm8yizTgK9/SJYa8gNLxFlJRa5MqZyMuye2A1mBQ==" + REVID_API_KEY: "AgBPAmDtdzfHMbudluOeUZS7RCixfJXaI6vBvEUPQhhtpbNW9sUfDv6waKzBdjgWxIf2EqI4QI7QUVqHxA7fMChSjZjt9Np9z6+nHZhKWTqCCKyVR4Lka8tnkU5M62e+x+T7QoHy6mKsB7FEyQ8/FPxUM/Ddp5ZPTj6sbLn3y2uv1SPxInbd6boXeLEwQQcN/Inrww/lzNzJPec4jlHNwPHugjhZJnlWotvyfhU33Fdt5IEusdqt6CM0vS5N7lkR8KTNAg56VLD89yXVRR2VOtkJWzaQJ4lNSztBgUFNGaYtl7SRNVYnMpT1jhyTcAeO/fAGP4O/8haTlAZbfSsOLub5Af9CIA5vtNpU4zoY0Q2MOtKOJ5OTtbbJxmlWex3zc2wpIwdTLCRyBHxiPphdSBXQPW12s9NX6GVR7WDc3Lcvhi0P4uo+y01kyL64JGRigjvBzCYCqhNGWMtJ+YOy4pwcE89Qaz2/EvHgh37P9O7TQhN3Vo8BGRV0+DlNe6uv3OBitgayub5M34nh+qnNHypErkm29SovnqY1fEFhdOib2nmnE2fEXylZMtMPonBVYtVX9iOJLERQMNOzwDxaKzwPdpNu4GhMNVG6joCDjDqKPp9BfnKDJsn0GgUt3oDl5kRWdYL75HLDa3LDWGj0UiAF1YeQE2SHJjlrIoAVJWDdjwTsFJ1x3sMZTt9gB8KiUIDK/hgt7to/kaIyBUTrQIUv/2hHNYI4KH5/nNFZu3TPJXNrxfU=" + ANTHROPIC_API_KEY: "AgB+40jZoawJ6HaeyyLZvDp2ByF4EPy2Ce806D/lekwJVmxpYXgkQdLJyav6bt9c1g5eDShJqezx1T+jGV+ApQbhSwmO403nJdYO825Fd3XVJ5K0xfFNt8DOTC9r2egWFvJZL40s/Y24kpr2Mmsqp+Sk9DxMNdYG/Z4PnT8PLWgb3yIYGGPVjlWlHL82gn4/B1bVTk14/cGXX9eSr0ktKKmS2OGLMYUwLT3oYGy4bRq9bH91XwjjdW6vMluNBGYibpi2f4h3nYORaQn42OhzTqON3XUdvNmsw1ZH0raMAJq47SU0lC6Ar9MzwbtUWY3tF6BlTmyx3gPavjQCnXg5cRxmY8JklrynDoyN+SBludzaWDzdAjr4vGPpkOo56RBY+28tnNjmxgyttGIYfFa8DEsrrJJgZZxSUvRqwJc0TWIKRFP1aIHkQ5DclUilFtNfPMezxwcFqrsYTEvtDjsls/E8uTNUN99cVQ2x0PxDsLKr9xVKAKkzzOBEvKEAJy0t5RtRV9A6kc0b16YbjIkFphip4e7HJTWKRvavknw+MXjGXXQrz9+xp8LrjRcgCyZp3BqSo+gsX8KQJSnhiFfKvgt7RdVaUVUA+sn5fIQGPWA5IkbI4gS12BRFDw59+Doc5FbCGUip4jDL8I2bPuNKQZLmSMx93Nu/60WBRhKXYz+GNzLzvhk0IpEI3d2GeWvC61p/f5eKnsLKNLDrc3k8rFHiUmXXhB+oQXMRSUFqq4hen32VVPWRhzT8nefww5Tud21CBg5+87x6WHOnB/A4vw+VuKD3fdeo9tn4HlD3w2funOVu9yv+NaP+MTeHus2PBeab/OtKLH09ezxnhmA=" + OPENAI_API_KEY: "AgAjPjhje52qw5YSXjRAwoXU0WyDEIAHnz2CjFtSjkpbsvvXFPlPMlOd/y7/dvABoyZHB9Ukxjna6opqV/hK/vHR9ncp9i7cDYX3Rekj+mkA6arMdqdJ0eikAGqWYPieu8RcBn6pHFGmoC8ZZPgk6Eh3Wyi4OCaPfH/O1bTq/RBQU5VDFvYfaeDZmYIu6SkD88pI0lT12Dklk1apsHlS+g3/rpQwDXgemE/pdmcNnt1zS6Ifu4isN7yg1pg1Thja+UiQnEkIiZkvmD39LO8HrwOFt8guJctRZ5gnVxPmSEdJLN089/fj5VXxTO1kTprbh1KeG9RKYS5LEPNYpgcl9/o884qMc/r0/+Cy7gL5R1THrEPHurVg8JfssCq8k0SaEtCElQ2081Scc/0p/k4URpXrsxUKZ8XUTIvYS0y2mEJPAAqaHAkwthY8sizhOwqWWnt8dGbCPwfQ11TiNSMikKIim9Bwm4tKM9aEolROSkivbGqFQQYSkensyp2mTqx7iFYlGBa7Z7PFRBZgPzD2FojWc6o5tLui5Xgi67ukO5WeaBhO6eMd2CuIlXqu+5x3+ixIytp9Jpke4mZKwbjYai4j3iELbzEwbGkjsnDyWNYn+1KnPOogd6i5+YPn09FbQO2Qvg2t3yUP/ePeX+fdRYk7AnS/o6nllqj9GLas48JFUlEx+KSO4qwrflRqPUmfmD3wPDTYR2q6yJzdatLYzdRQxEctFhgvco63uhW1YH+1ei1YuxutYPkIOqUwbgfIC3XiW7Tr3R8Gd3TimJLQM1etR6dwrEaEm0jTCIKUoZ+65OIAeVtcXIwWtwRjjUOtR8k9B2UdFoJOgtfIFzlxwYj4xUJrzRkCLdFD1W362n2+O5n7QdXDjYXn9KmxVUEph2vloeS8IGrBjM/l743A3trFD4CZ9g==" + DATABASE_URL: "AgCArShEXLoTAfghyAvdy8R62p0n7Qh3xSVz4ISZ/s94M+3H7rCWNZHpx+58DLAZRJXgkXu94sRiMsAa1SNjg7aAY2gMX5n37xDDDXyELW49SBIcRVPHGbVLZ6GFzXr7JbjsxrLJoOQ6mfbSbioqARj5UnDWxBxBaoLGf0YCHb6BHfT1Vw0a/Ca8GwA6UJHhS/umitNwyrnCsIQBuDgF+RSAyerIpGnppSSpM73AL/aam6S5VaUoyfa0YGr5SWp1pBmV+M39Uis4HkNM65yM6iSy7sGcFTpLOuFvWlZstttGCKyQO4PI+bY1In+/MPdKTl14fTs2uqOZ4XaYVzkz89myh6JPDvXYgYxIv04us0Y8x9at12yB5INvScJpCpLbq3Oa9wEh6guw3HvFU9LWO6zrlwDjAzFmvMHyvufvl6/oaFAFBemh1Umv46f/q15Jb89x889hDwnJZl9xmXRhubBHpLlvcoZvhZTN7nkOV49RwDG97enz29Z2YMlN7A2oK30yKzAjRpXBF5m5yKFZCNzEEgMDHxptfygRdN3Mf3W3Pk5C5IE2/htPnO5pxvlr2f6cI3VufxV0x6TEWD6a/88EAf362McGGBFu6Z0/DnJUMs4emDZTNsIsRZ6LNdEWbsF4eNSpIkghNLzfbeloeIuRZDHafhk1VCBYGEZmsNn3uEQ7wkcw1gcfawnuf/3kXQk=" + SUPABASE_JWT_SECRET: "AgDCNoyGjkV74NoJTSN+VDpiIl8B7sRzDK3WFAO2wBWdhFSwnO2x4cZ7F9YxiEQgvjslCEn5wCrgqBiO6L3EP4qd0EUibZrx+6xXIK5tRY3YACXf1pQEgRTl5fXTbdlRJgr0+2upe1bB30LecbM/G+goX+RprKmwSxNJfBo/AQQP1l1dJsl4v/yGbEj8WQFD7jTiyCGT8skIX07GUvzZVbAD+DaNmvucuENja90O7q3ACOIJ9VWX9rTJX1V5brrb7y4ge8Iv97bUisH/MtFtZMEBEK1csixdBUC47wtboxn3LnMUaE2OlJZD+9IzEf6TqTJGREyOd+h2V/8BmUYnKRZUVWPURsWLinfbDpyXPmGSBgnfYCd5ZKS5dvwvQwiR6ODlO9E2WOe4xoAHSq57uUxLopcrDsVzZcLiahA02613vYafwc9svg/8dJV2FokKrnQs/bRHlVCa51Vs8z/zCBnHzS6RBq2p2vMU/PbzMfMR2DjzQcvE6hOnyLMlOMpYe67FaHC2cZTayUqNzi5hDNUp19grEqwjdvannOenn/ewTX4yCOVaOoAQ+QBrv1o4g46E18wFnDMoYH+b7PJ0mUf3NSV0jXH+elbW5H6c5WdnmKT+nWQhaVTD4pMAlY8z2W6LddpA7XHfj/lAzboSj+VJqwCrx8AVMKJ4LTbYGTdu9RkcNZLVHkrtafEAYZNnYrIwNZT3SuLWO8X/dGKrrZmOoaaQJZkBuRy1bLdOGXKUIBvf+MDvmApjp/+ScDxl11KifiEO3tO65hNVa2YPjkIf36fJpJ6vtDchsmyowJ9cRhduZsu4PO4D" + SENTRY_DSN: "AgA+X2HkF9b3+p13JS4vG7VY+8p7su6qJ7smoPKqYh44Vpb7J5Eu9ksPNQkcFTDDPT8jAylqsHWUdI0A8u20+a4lqqGkmPN5tCgyBgAL1pIyvPUQjYUbL7A5lTQKlRLJJ+05h5XbkRU7cWR+G4yDUCDj2HcThne0CNDUbDao9D67ekSLUtp6/d0KO45Efao4MLuqISnypPUBGHmAdWGr2z/w7ItXjvUKt3RpH6pSCrGzjlKPKhenKdTsk/NX4Z+ew/JBbHiDQjKCdj0UlXFWH7Q4axaFy0T8tsqf/UN7n/QTalYE+v28isxrHvoR6h7kZETQV/gl0y7DdmTCi8/A1j1+e/9zUx6HvK+C/qGMsKMdNgaaVNSdfFp/yfMgXTUn4HGAls4gjVKSSRaIAbBq32NdKkIvRfocuAGsxInwbrDXLR0nzbHG/U/QhlvfL2gfqKRIVRJtEh99VW/KMMeXZUWR9dNt9gfTMtyzL7eta4oEV+g7sdO/9VjDn5wtic2/7eAxgA7wTEoDA8m0whpHH4VcPLHUfKLTHnRXVu6bykAfBgfEKhJBS8DghvPyu73qL5MREuYkGya4n0RQ73h5ja7mYwI0lsefQszP9Fz1lR+757dhJ6+/E7nNnOE/ShD/8xE0V54pd2IvrRoJmcOsIOZ5w+xWfmN8OyLn7wuEpqEuMHEoisLF9RSp2V5iKbB+fFB4o5P1/VqkNPEFBe0jA4K8DAGX+VdChMpjAI47wF22aj+jmTRf+EY+5l+aEvjyU0G7oUPVzzG8rYa6p+v56zeVsmU4SHIDO75J1cH7tnYDeOxk9fAYZgNplS4gKHVT0w==" + SUPABASE_SERVICE_ROLE_KEY: "AgC07IPlKFO0JYHzO7/H/SVmws9x4mKUd08OQ8VrrvTrwXTmmkKJ0nrbCR1tqSEQTGAFsoTbAtJjVmz04xDsBRbuBuTfbROcD057J+4nKSEvke0rUPnBESiziYQF1Xo0xC80li6OEpiz2ssp5yCF0oddqOkXGR5BfKJ8ZnOS+YkvNla4uE8fbzMUGJU0Erw+/DUOVdIIbF8/P/k55VXbhzPiafMuISc4+vH33/SLeSnUctUiVq43x42buYApt1qb/0cOKElRWtdI1YIx79mbhG9RbE3XinYQ11Fbvo/SeJmTI5YtatH8aesFKSHJy1svzULPEG1Fx6B1wvlROxtiu4Y3WV2YEHOLMXUbrM1CGsqO/W07ohyAGAF/KlhHfYCl/ZqAs+BtuBvPtXXPkxSEj0clqknAW8x8wdJBckPn3OVba0hsmBPcw4NNJPYf9X95jiYMMP+TrrpryTygL0TBcH4agRCu1AXukzdjelvQhRidzV6ZoRxP3e6QjMcqoFW3jx9TAKjj5iZcC9BIIiic3XYCWVv5ei2HuFG2jDBbVDNaNFIOrx/CyrqNIdNiyPX0DH+GilUY4AoZgN/k9syvmWi2sl81yLOt27gGDjGSJTX2whNztcJTDWLgl7t1snj9if+3KzROR/Kmz1XawaBGK2Md+JyiugludHmC6eOO+TKXrV/d02LEZKf0aKnAuAu+gfBGBBagHF5jjkgmCYOGQpALDZWsafqmUsHOIvHmrAEpnKwRCW1JX7Z1pU6SkFm8ceNwsEFPDqIeYbra3k/pHxoSMA5QAO/IafFQdp6NTnYPduJN5yjRh6MSJPIf2U2PFgLnNAug/3Uojk6I6NikcORZtBCHBGd9dtYH3ykQdBSh44ysS3m2o6QVqpbQRYAaUbKEU/wExtZYWK9NzlbuxmRoSKJDAXtjG7Lzgx66p+fZAxYU+MPgxzaoyM53kfqGtLfuikAxswIyvK1+mcq866tyqLFSOwHoQKfez6Q=" + REDIS_PASSWORD: "AgB7eiUuFQO88vVMI28xfmJsA2QzEb71r3NyDJ/KTNsjqn7ai1KpjVaaTDyr4Xzo1wOhwwwxlhIoeBwf26wPiraJtkjRU9z9Aotvy0u8SXFm05ObhMjJoY2dBvW6ga3KNaunWoTx5e6NbYPGRIgNtRBVN4PH5Lf7Ou5SZBjJBaVWgIT1x71tB2eD2XksOw2mrfaF0WODsQxXDOaF9BJ4Gn7yIT0Nh76Okn9uhesQxvojaqlAIeAKXyrZJwAH5qL3D772rYsISmbHC0bCBgx4dbbtvsr4YgiR387ri7KGfrEqoFH/jzUp5cwsJNyBpWG1n2O0QXYgbMIsmJP6rdD+KTZkLGBz0wgq/JySCZM9hj54dYtLE7LMmpZn7//EKZk7zsV1u9oSciQisWcJqW8El+IMOAZilqSR2NjpI4cb0xR7/gTLLQF33+wnZwbbHghbDwTowkzOZ0i7qt73YkR8MKrlLhLcCGHjhyb50xr1DJl9mVUoyHXvFOj2tQO/273sMNdKpJvNFi9EEhdirzbcuphnaRm5xXYF1CHKtXUp6EvdxgHqEuoGwh5Kt8dtGMJfSJ40LsARZXCFU7CC6g/faPq93K5QB/bwlOdABeOVF/odqXZQAADX3TQwIPMH36XuqwNggWQ8Igy5o1d3Hi84jVChmjid/Wk8DREmkntzDy+4Jxzqx1rPSThyoOvopirY8VA=" \ No newline at end of file diff --git a/autogpt_platform/infra/helm/autogpt-websocket-server/values.prod.yaml b/autogpt_platform/infra/helm/autogpt-websocket-server/values.prod.yaml index e8a3ca448b96..3f73140b7f46 100644 --- a/autogpt_platform/infra/helm/autogpt-websocket-server/values.prod.yaml +++ b/autogpt_platform/infra/helm/autogpt-websocket-server/values.prod.yaml @@ -80,4 +80,4 @@ env: BACKEND_CORS_ALLOW_ORIGINS: '["https://platform.agpt.co"]' secrets: - REDIS_PASSWORD: "AgAfjYznqRaf/teLvYmjk61r3N0hx3jUFcrvzOARUQokr79relW7V48COEpVBUZzv5212oXpAOdNL2boBfTGneVJ59ohh1PIW1Wm/zrLhYs/G7gIx1YZdeAFDaB++fdNU87MWpLrDXknf0bOj4VgeuoGQ5aph5sHH9ZNVU6KODyQiZK88ghgfuB6YLe0U7ng5X9m2pY+FZ/NlrZZTaI6Lmhzfk8ozXg70n9/pPpdLy3C7o79Y15mcMOrO5SVufsIH8jHJUKwG0T5Pjkzy7qImQQAVlH24No7J55fhyZHwo2TegWw9PDuPinjcW2LfoDqVSRMcW8Gs0b41OhrOriZss8vUG5PqB49/PdVt7a9R52WVeq1vWTOc5vBLdjq8xiOX1XzghVHvvt8HKaSCO4cb+nt5iPCv+1ZbTm1UVCG66okjCpJpW8fB3R/1i+HjH2gy1gzwW0ATQzDeRoa0ErBJfEbKfmEAgUU0uiqfSd4Ch9rJmEWgt4WdcKBUjvhKODk6mgX1LoQTLnuAivQV3AYw7837+nLwKXiwdWP+FvNNTdPjH7Im5UiwPqIs+rUnT+tm0UPhKjDg60Ylc2QIV3HmjU1qoa9h438hxufb8rURSLpPfI5d462ou6g3W67KR2UzqfNuX4o7PB1suWmLs/lQpegybFZ8i8ShbcTC+rfrsPD0d1g0SW5RCTj5wsCvuE6KOZLdcCw4kV69jS36QA3jg==" \ No newline at end of file + REDIS_PASSWORD: "AgBl/a138QK7k/GzlkjQHIElN+1GK4ao/kw9AgT7iRC48qlWu2xZQlJiC07r3y8MCaY8CljKpggBYN3CmtzYMoIer/FgKNK0pA7vKGSEMIajRJPKZmxMw9NcfXeLPDNz/9Irw3+7DYMWrATXGTsfuvsurVuxWZQQOSrjhzqmd0PyHsLlzflZXZrTncMOailMIBWggtPUoSFm3ytGHFCEp903XEwtoHzVc+LcV4ZOZ8x6GXx9RXwGzlMI3zy8/w9dw1YpeIR8w9yFMp5OnQjsxPP7leiyInD7HNlT/Edi0zWb+WeoVo4rNQt6spURK46FPJVeFyZX3AerM5oQx0ngAH3s55LktMCwFjEY9PtutudrKeXVk23gQ9C2U+7S3c1ebjOlY3f6sovosaXZDf5wbxxjdCAwfHLSqBlI+lTTnrOK9sijMdk1wdpmmap2cXy3QbQa9r0xzCzFHpwGBrtQhFVUyxQL9TENACXU/jBL7hv57MyUUGKfzYdVPMEy6FagBX5UapZxSyKwSR3Cm8Bo16v+y+I/j2zSoFheUQYLsi3JDjtaEDkZ6RLF1H/tecQ5HWtp6kb4YlC7WZhxR0xcKFoi7Bp5bUKSyDRzbkgVhK5LeRG6BhfvJguRSOevGYslB53GqBt/yH27gMW4QCrwGPeLfO2b3f2QVkmLbAghoHSCw/s79O1BMxGNac7Slo1YhJo=" \ No newline at end of file From 4730bf6f9549e0472c6c43d94dad74f1f78e570d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:59:33 -0500 Subject: [PATCH 19/42] build(deps): bump react-day-picker from 8.10.1 to 9.2.0 in /autogpt_platform/frontend (#8442) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicholas Tindle --- autogpt_platform/frontend/package.json | 2 +- .../src/components/monitor/FlowRunsStatus.tsx | 10 +- .../frontend/src/components/ui/calendar.tsx | 62 +- autogpt_platform/frontend/yarn.lock | 1130 ++++++++++------- 4 files changed, 685 insertions(+), 519 deletions(-) diff --git a/autogpt_platform/frontend/package.json b/autogpt_platform/frontend/package.json index 5c45a02b5c21..a6488f74f5f3 100644 --- a/autogpt_platform/frontend/package.json +++ b/autogpt_platform/frontend/package.json @@ -56,7 +56,7 @@ "next": "^14.2.13", "next-themes": "^0.3.0", "react": "^18", - "react-day-picker": "^8.10.1", + "react-day-picker": "^9.2.0", "react-dom": "^18", "react-hook-form": "^7.52.1", "react-icons": "^5.3.0", diff --git a/autogpt_platform/frontend/src/components/monitor/FlowRunsStatus.tsx b/autogpt_platform/frontend/src/components/monitor/FlowRunsStatus.tsx index cf4613494254..6b56554b0fb8 100644 --- a/autogpt_platform/frontend/src/components/monitor/FlowRunsStatus.tsx +++ b/autogpt_platform/frontend/src/components/monitor/FlowRunsStatus.tsx @@ -20,6 +20,7 @@ export const FlowRunsStatus: React.FC<{ /* "dateMin": since the first flow in the dataset * number > 0: custom date (unix timestamp) * number < 0: offset relative to Date.now() (in seconds) */ + const [selected, setSelected] = useState(); const [statsSince, setStatsSince] = useState(-24 * 3600); const statsSinceTimestamp = // unix timestamp or null typeof statsSince == "string" @@ -74,10 +75,11 @@ export const FlowRunsStatus: React.FC<{ - setStatsSince(selectedDay.getTime()) - } - initialFocus + selected={selected} + onSelect={(_, selectedDay) => { + setSelected(selectedDay); + setStatsSince(selectedDay.getTime()); + }} /> diff --git a/autogpt_platform/frontend/src/components/ui/calendar.tsx b/autogpt_platform/frontend/src/components/ui/calendar.tsx index c45c6266c046..04393f7dfc3c 100644 --- a/autogpt_platform/frontend/src/components/ui/calendar.tsx +++ b/autogpt_platform/frontend/src/components/ui/calendar.tsx @@ -1,7 +1,12 @@ "use client"; import * as React from "react"; -import { ChevronLeftIcon, ChevronRightIcon } from "@radix-ui/react-icons"; +import { + ChevronDownIcon, + ChevronLeftIcon, + ChevronRightIcon, + ChevronUpIcon, +} from "@radix-ui/react-icons"; import { DayPicker } from "react-day-picker"; import { cn } from "@/lib/utils"; @@ -22,47 +27,54 @@ function Calendar({ classNames={{ months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0", month: "space-y-4", - caption: "flex justify-center pt-1 relative items-center", + month_caption: "flex justify-center pt-1 relative items-center", caption_label: "text-sm font-medium", nav: "space-x-1 flex items-center", - nav_button: cn( - buttonVariants({ variant: "outline" }), - "h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100", - ), - nav_button_previous: "absolute left-1", - nav_button_next: "absolute right-1", - table: "w-full border-collapse space-y-1", - head_row: "flex", - head_cell: + button_previous: + "absolute left-1 h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100", + button_next: + "absolute right-1 h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100", + month_grid: "w-full border-collapse space-y-1", + weekdays: "flex", + weekday: "text-neutral-500 rounded-md w-8 font-normal text-[0.8rem] dark:text-neutral-400", - row: "flex w-full mt-2", - cell: cn( + week: "flex w-full mt-2", + day: cn( "relative p-0 text-center text-sm focus-within:relative focus-within:z-20 [&:has([aria-selected])]:bg-neutral-100 [&:has([aria-selected].day-outside)]:bg-neutral-100/50 [&:has([aria-selected].day-range-end)]:rounded-r-md dark:[&:has([aria-selected])]:bg-neutral-800 dark:[&:has([aria-selected].day-outside)]:bg-neutral-800/50", props.mode === "range" ? "[&:has(>.day-range-end)]:rounded-r-md [&:has(>.day-range-start)]:rounded-l-md first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md" : "[&:has([aria-selected])]:rounded-md", ), - day: cn( + day_button: cn( buttonVariants({ variant: "ghost" }), "h-8 w-8 p-0 font-normal aria-selected:opacity-100", ), - day_range_start: "day-range-start", - day_range_end: "day-range-end", - day_selected: - "bg-neutral-900 text-neutral-50 hover:bg-neutral-900 hover:text-neutral-50 focus:bg-neutral-900 focus:text-neutral-50 dark:bg-neutral-50 dark:text-neutral-900 dark:hover:bg-neutral-50 dark:hover:text-neutral-900 dark:focus:bg-neutral-50 dark:focus:text-neutral-900", - day_today: + range_start: "range-start", + range_end: "range-end", + selected: + "bg-neutral-900 text-neutral-50 hover:bg-neutral-900 hover:text-neutral-50 focus:bg-neutral-700 focus:text-neutral-50 dark:bg-neutral-50 dark:text-neutral-900 dark:hover:bg-neutral-50 dark:hover:text-neutral-900 dark:focus:bg-neutral-50 dark:focus:text-neutral-900", + today: "bg-neutral-100 text-neutral-900 dark:bg-neutral-800 dark:text-neutral-50", - day_outside: + outside: "day-outside text-neutral-500 opacity-50 aria-selected:bg-neutral-100/50 aria-selected:text-neutral-500 aria-selected:opacity-30 dark:text-neutral-400 dark:aria-selected:bg-neutral-800/50 dark:aria-selected:text-neutral-400", - day_disabled: "text-neutral-500 opacity-50 dark:text-neutral-400", - day_range_middle: + disabled: "text-neutral-500 opacity-50 dark:text-neutral-400", + range_middle: "aria-selected:bg-neutral-100 aria-selected:text-neutral-900 dark:aria-selected:bg-neutral-800 dark:aria-selected:text-neutral-50", - day_hidden: "invisible", + hidden: "invisible", ...classNames, }} components={{ - IconLeft: ({ ...props }) => , - IconRight: ({ ...props }) => , + Chevron: (props) => { + if (props.orientation === "left") { + return ; + } else if (props.orientation === "right") { + return ; + } else if (props.orientation === "down") { + return ; + } else { + return ; + } + }, }} {...props} /> diff --git a/autogpt_platform/frontend/yarn.lock b/autogpt_platform/frontend/yarn.lock index acd23198a52e..d28c78e38a28 100644 --- a/autogpt_platform/frontend/yarn.lock +++ b/autogpt_platform/frontend/yarn.lock @@ -33,7 +33,7 @@ resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.8.tgz" integrity sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA== -"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.11.6", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.13.0", "@babel/core@^7.18.5", "@babel/core@^7.18.9", "@babel/core@^7.22.5", "@babel/core@^7.23.9", "@babel/core@^7.24.4", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.7.5", "@babel/core@^7.8.0": +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.18.5", "@babel/core@^7.18.9", "@babel/core@^7.22.5", "@babel/core@^7.23.9", "@babel/core@^7.24.4", "@babel/core@^7.7.5": version "7.25.2" resolved "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz" integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== @@ -1031,11 +1031,138 @@ react-confetti "^6.1.0" strip-ansi "^7.1.0" +"@date-fns/tz@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@date-fns/tz/-/tz-1.1.2.tgz#c8036db48ae9e7165f40a951942a14070e0c6ec1" + integrity sha512-Xmg2cPmOPQieCLAdf62KtFPU9y7wbQDq1OAzrs/bEQFvhtCPXDiks1CHDE/sTXReRfh/MICVkw/vY6OANHUGiA== + +"@emnapi/runtime@^1.2.0": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.3.1.tgz#0fcaa575afc31f455fd33534c19381cfce6c6f60" + integrity sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw== + dependencies: + tslib "^2.4.0" + +"@esbuild/aix-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz#51299374de171dbd80bb7d838e1cfce9af36f353" + integrity sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ== + +"@esbuild/android-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz#58565291a1fe548638adb9c584237449e5e14018" + integrity sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw== + +"@esbuild/android-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.23.1.tgz#5eb8c652d4c82a2421e3395b808e6d9c42c862ee" + integrity sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ== + +"@esbuild/android-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.23.1.tgz#ae19d665d2f06f0f48a6ac9a224b3f672e65d517" + integrity sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg== + "@esbuild/darwin-arm64@0.23.1": version "0.23.1" resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz" integrity sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q== +"@esbuild/darwin-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz#c58353b982f4e04f0d022284b8ba2733f5ff0931" + integrity sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw== + +"@esbuild/freebsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz#f9220dc65f80f03635e1ef96cfad5da1f446f3bc" + integrity sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA== + +"@esbuild/freebsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz#69bd8511fa013b59f0226d1609ac43f7ce489730" + integrity sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g== + +"@esbuild/linux-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz#8050af6d51ddb388c75653ef9871f5ccd8f12383" + integrity sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g== + +"@esbuild/linux-arm@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz#ecaabd1c23b701070484990db9a82f382f99e771" + integrity sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ== + +"@esbuild/linux-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333" + integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ== + +"@esbuild/linux-loong64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz#a0fdf440b5485c81b0fbb316b08933d217f5d3ac" + integrity sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw== + +"@esbuild/linux-mips64el@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz#e11a2806346db8375b18f5e104c5a9d4e81807f6" + integrity sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q== + +"@esbuild/linux-ppc64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz#06a2744c5eaf562b1a90937855b4d6cf7c75ec96" + integrity sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw== + +"@esbuild/linux-riscv64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz#65b46a2892fc0d1af4ba342af3fe0fa4a8fe08e7" + integrity sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA== + +"@esbuild/linux-s390x@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz#e71ea18c70c3f604e241d16e4e5ab193a9785d6f" + integrity sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw== + +"@esbuild/linux-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz#d47f97391e80690d4dfe811a2e7d6927ad9eed24" + integrity sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ== + +"@esbuild/netbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz#44e743c9778d57a8ace4b72f3c6b839a3b74a653" + integrity sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA== + +"@esbuild/openbsd-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz#05c5a1faf67b9881834758c69f3e51b7dee015d7" + integrity sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q== + +"@esbuild/openbsd-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz#2e58ae511bacf67d19f9f2dcd9e8c5a93f00c273" + integrity sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA== + +"@esbuild/sunos-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz#adb022b959d18d3389ac70769cef5a03d3abd403" + integrity sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA== + +"@esbuild/win32-arm64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz#84906f50c212b72ec360f48461d43202f4c8b9a2" + integrity sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A== + +"@esbuild/win32-ia32@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz#5e3eacc515820ff729e90d0cb463183128e82fac" + integrity sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ== + +"@esbuild/win32-x64@0.23.1": + version "0.23.1" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz#81fd50d11e2c32b2d6241470e3185b70c7b30699" + integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg== + "@eslint-community/eslint-utils@^4.2.0": version "4.4.0" resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" @@ -1138,11 +1265,112 @@ optionalDependencies: "@img/sharp-libvips-darwin-arm64" "1.0.4" +"@img/sharp-darwin-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz#e03d3451cd9e664faa72948cc70a403ea4063d61" + integrity sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q== + optionalDependencies: + "@img/sharp-libvips-darwin-x64" "1.0.4" + "@img/sharp-libvips-darwin-arm64@1.0.4": version "1.0.4" resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz" integrity sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg== +"@img/sharp-libvips-darwin-x64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz#e0456f8f7c623f9dbfbdc77383caa72281d86062" + integrity sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ== + +"@img/sharp-libvips-linux-arm64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz#979b1c66c9a91f7ff2893556ef267f90ebe51704" + integrity sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA== + +"@img/sharp-libvips-linux-arm@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz#99f922d4e15216ec205dcb6891b721bfd2884197" + integrity sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g== + +"@img/sharp-libvips-linux-s390x@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz#f8a5eb1f374a082f72b3f45e2fb25b8118a8a5ce" + integrity sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA== + +"@img/sharp-libvips-linux-x64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz#d4c4619cdd157774906e15770ee119931c7ef5e0" + integrity sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw== + +"@img/sharp-libvips-linuxmusl-arm64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz#166778da0f48dd2bded1fa3033cee6b588f0d5d5" + integrity sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA== + +"@img/sharp-libvips-linuxmusl-x64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz#93794e4d7720b077fcad3e02982f2f1c246751ff" + integrity sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw== + +"@img/sharp-linux-arm64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz#edb0697e7a8279c9fc829a60fc35644c4839bb22" + integrity sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA== + optionalDependencies: + "@img/sharp-libvips-linux-arm64" "1.0.4" + +"@img/sharp-linux-arm@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz#422c1a352e7b5832842577dc51602bcd5b6f5eff" + integrity sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ== + optionalDependencies: + "@img/sharp-libvips-linux-arm" "1.0.5" + +"@img/sharp-linux-s390x@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz#f5c077926b48e97e4a04d004dfaf175972059667" + integrity sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q== + optionalDependencies: + "@img/sharp-libvips-linux-s390x" "1.0.4" + +"@img/sharp-linux-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz#d806e0afd71ae6775cc87f0da8f2d03a7c2209cb" + integrity sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA== + optionalDependencies: + "@img/sharp-libvips-linux-x64" "1.0.4" + +"@img/sharp-linuxmusl-arm64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz#252975b915894fb315af5deea174651e208d3d6b" + integrity sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-arm64" "1.0.4" + +"@img/sharp-linuxmusl-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz#3f4609ac5d8ef8ec7dadee80b560961a60fd4f48" + integrity sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-x64" "1.0.4" + +"@img/sharp-wasm32@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz#6f44f3283069d935bb5ca5813153572f3e6f61a1" + integrity sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg== + dependencies: + "@emnapi/runtime" "^1.2.0" + +"@img/sharp-win32-ia32@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz#1a0c839a40c5351e9885628c85f2e5dfd02b52a9" + integrity sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ== + +"@img/sharp-win32-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz#56f00962ff0c4e0eb93d34a047d29fa995e3e342" + integrity sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg== + "@isaacs/cliui@^8.0.2": version "8.0.2" resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" @@ -1434,6 +1662,46 @@ resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.13.tgz" integrity sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg== +"@next/swc-darwin-x64@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.13.tgz#1d4821d54bb01dacc6a6c32408f8468a4f4af269" + integrity sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog== + +"@next/swc-linux-arm64-gnu@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.13.tgz#79d9af8d3408df9990c8911889eca1ca6a308f19" + integrity sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg== + +"@next/swc-linux-arm64-musl@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.13.tgz#b13180645865b120591db2f1e831743ebc02ab36" + integrity sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg== + +"@next/swc-linux-x64-gnu@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.13.tgz#8cb8480dfeee512648e4e08c2095aac0461b876f" + integrity sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA== + +"@next/swc-linux-x64-musl@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.13.tgz#df5ca922fa1e1ee81b15a06a2d3d3ace0efd2bd7" + integrity sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg== + +"@next/swc-win32-arm64-msvc@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.13.tgz#8a7db6e71f526212587975f743b28e4d1cb829d1" + integrity sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ== + +"@next/swc-win32-ia32-msvc@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.13.tgz#6aa664f36f2d70c5ae6ffcbbc56784d33f24522d" + integrity sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw== + +"@next/swc-win32-x64-msvc@14.2.13": + version "14.2.13" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.13.tgz#5a920eea82a58affa6146192586716cec6c87fed" + integrity sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw== + "@next/third-parties@^14.2.5": version "14.2.6" resolved "https://registry.npmjs.org/@next/third-parties/-/third-parties-14.2.6.tgz" @@ -1449,7 +1717,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -1476,7 +1744,7 @@ dependencies: "@opentelemetry/api" "^1.0.0" -"@opentelemetry/api@^1.0.0", "@opentelemetry/api@^1.1.0", "@opentelemetry/api@^1.3.0", "@opentelemetry/api@^1.7.0", "@opentelemetry/api@^1.8", "@opentelemetry/api@^1.9.0", "@opentelemetry/api@>=1.0.0 <1.10.0", "@opentelemetry/api@>=1.3.0 <1.10.0": +"@opentelemetry/api@^1.0.0", "@opentelemetry/api@^1.8", "@opentelemetry/api@^1.9.0": version "1.9.0" resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz" integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== @@ -1486,7 +1754,7 @@ resolved "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.26.0.tgz" integrity sha512-HedpXXYzzbaoutw6DFLWLDket2FwLkLpil4hGCZ1xYEIMTcivdfwEOISgdbLEWyG3HW52gTq2V9mOVJrONgiwg== -"@opentelemetry/core@^1.1.0", "@opentelemetry/core@^1.25.1", "@opentelemetry/core@^1.8.0", "@opentelemetry/core@1.26.0": +"@opentelemetry/core@1.26.0", "@opentelemetry/core@^1.1.0", "@opentelemetry/core@^1.25.1", "@opentelemetry/core@^1.8.0": version "1.26.0" resolved "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz" integrity sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ== @@ -1629,23 +1897,23 @@ "@opentelemetry/instrumentation" "^0.53.0" "@opentelemetry/semantic-conventions" "^1.27.0" -"@opentelemetry/instrumentation-mysql@0.41.0": +"@opentelemetry/instrumentation-mysql2@0.41.0": version "0.41.0" - resolved "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.41.0.tgz" - integrity sha512-jnvrV6BsQWyHS2qb2fkfbfSb1R/lmYwqEZITwufuRl37apTopswu9izc0b1CYRp/34tUG/4k/V39PND6eyiNvw== + resolved "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.41.0.tgz" + integrity sha512-REQB0x+IzVTpoNgVmy5b+UnH1/mDByrneimP6sbDHkp1j8QOl1HyWOrBH/6YWR0nrbU3l825Em5PlybjT3232g== dependencies: "@opentelemetry/instrumentation" "^0.53.0" "@opentelemetry/semantic-conventions" "^1.27.0" - "@types/mysql" "2.15.26" + "@opentelemetry/sql-common" "^0.40.1" -"@opentelemetry/instrumentation-mysql2@0.41.0": +"@opentelemetry/instrumentation-mysql@0.41.0": version "0.41.0" - resolved "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.41.0.tgz" - integrity sha512-REQB0x+IzVTpoNgVmy5b+UnH1/mDByrneimP6sbDHkp1j8QOl1HyWOrBH/6YWR0nrbU3l825Em5PlybjT3232g== + resolved "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.41.0.tgz" + integrity sha512-jnvrV6BsQWyHS2qb2fkfbfSb1R/lmYwqEZITwufuRl37apTopswu9izc0b1CYRp/34tUG/4k/V39PND6eyiNvw== dependencies: "@opentelemetry/instrumentation" "^0.53.0" "@opentelemetry/semantic-conventions" "^1.27.0" - "@opentelemetry/sql-common" "^0.40.1" + "@types/mysql" "2.15.26" "@opentelemetry/instrumentation-nestjs-core@0.40.0": version "0.40.0" @@ -1683,25 +1951,25 @@ "@opentelemetry/core" "^1.8.0" "@opentelemetry/instrumentation" "^0.53.0" -"@opentelemetry/instrumentation@^0.49 || ^0.50 || ^0.51 || ^0.52.0": - version "0.52.1" - resolved "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.52.1.tgz" - integrity sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw== +"@opentelemetry/instrumentation@0.53.0", "@opentelemetry/instrumentation@^0.53.0": + version "0.53.0" + resolved "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz" + integrity sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A== dependencies: - "@opentelemetry/api-logs" "0.52.1" - "@types/shimmer" "^1.0.2" + "@opentelemetry/api-logs" "0.53.0" + "@types/shimmer" "^1.2.0" import-in-the-middle "^1.8.1" require-in-the-middle "^7.1.1" semver "^7.5.2" shimmer "^1.2.1" -"@opentelemetry/instrumentation@^0.53.0", "@opentelemetry/instrumentation@0.53.0": - version "0.53.0" - resolved "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz" - integrity sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A== +"@opentelemetry/instrumentation@^0.49 || ^0.50 || ^0.51 || ^0.52.0": + version "0.52.1" + resolved "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.52.1.tgz" + integrity sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw== dependencies: - "@opentelemetry/api-logs" "0.53.0" - "@types/shimmer" "^1.2.0" + "@opentelemetry/api-logs" "0.52.1" + "@types/shimmer" "^1.0.2" import-in-the-middle "^1.8.1" require-in-the-middle "^7.1.1" semver "^7.5.2" @@ -1712,7 +1980,7 @@ resolved "https://registry.npmjs.org/@opentelemetry/redis-common/-/redis-common-0.36.2.tgz" integrity sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g== -"@opentelemetry/resources@^1.26.0", "@opentelemetry/resources@1.26.0": +"@opentelemetry/resources@1.26.0", "@opentelemetry/resources@^1.26.0": version "1.26.0" resolved "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz" integrity sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw== @@ -1737,7 +2005,7 @@ "@opentelemetry/resources" "1.26.0" "@opentelemetry/semantic-conventions" "1.27.0" -"@opentelemetry/semantic-conventions@^1.27.0", "@opentelemetry/semantic-conventions@1.27.0": +"@opentelemetry/semantic-conventions@1.27.0", "@opentelemetry/semantic-conventions@^1.27.0": version "1.27.0" resolved "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz" integrity sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg== @@ -1754,7 +2022,7 @@ resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@playwright/test@^1.41.2", "@playwright/test@^1.47.1": +"@playwright/test@^1.47.1": version "1.47.2" resolved "https://registry.npmjs.org/@playwright/test/-/test-1.47.2.tgz" integrity sha512-jTXRsoSPONAs8Za9QEQdyjFn+0ZQFjCiIztAIF6bi1HqhBzG9Ma7g1WotyiGqFSBRZjIEqMdT8RUlbk1QVhzCQ== @@ -1896,26 +2164,6 @@ resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.1.tgz" integrity sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q== -"@radix-ui/react-dialog@^1.1.1": - version "1.1.1" - resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.1.tgz" - integrity sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg== - dependencies: - "@radix-ui/primitive" "1.1.0" - "@radix-ui/react-compose-refs" "1.1.0" - "@radix-ui/react-context" "1.1.0" - "@radix-ui/react-dismissable-layer" "1.1.0" - "@radix-ui/react-focus-guards" "1.1.0" - "@radix-ui/react-focus-scope" "1.1.0" - "@radix-ui/react-id" "1.1.0" - "@radix-ui/react-portal" "1.1.1" - "@radix-ui/react-presence" "1.1.0" - "@radix-ui/react-primitive" "2.0.0" - "@radix-ui/react-slot" "1.1.0" - "@radix-ui/react-use-controllable-state" "1.1.0" - aria-hidden "^1.1.1" - react-remove-scroll "2.5.7" - "@radix-ui/react-dialog@1.0.5": version "1.0.5" resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz" @@ -1937,6 +2185,26 @@ aria-hidden "^1.1.1" react-remove-scroll "2.5.5" +"@radix-ui/react-dialog@^1.1.1": + version "1.1.1" + resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.1.tgz" + integrity sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg== + dependencies: + "@radix-ui/primitive" "1.1.0" + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-context" "1.1.0" + "@radix-ui/react-dismissable-layer" "1.1.0" + "@radix-ui/react-focus-guards" "1.1.0" + "@radix-ui/react-focus-scope" "1.1.0" + "@radix-ui/react-id" "1.1.0" + "@radix-ui/react-portal" "1.1.1" + "@radix-ui/react-presence" "1.1.0" + "@radix-ui/react-primitive" "2.0.0" + "@radix-ui/react-slot" "1.1.0" + "@radix-ui/react-use-controllable-state" "1.1.0" + aria-hidden "^1.1.1" + react-remove-scroll "2.5.7" + "@radix-ui/react-direction@1.1.0": version "1.1.0" resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz" @@ -2265,13 +2533,6 @@ dependencies: "@radix-ui/react-primitive" "2.0.0" -"@radix-ui/react-slot@^1.1.0", "@radix-ui/react-slot@1.1.0": - version "1.1.0" - resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz" - integrity sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw== - dependencies: - "@radix-ui/react-compose-refs" "1.1.0" - "@radix-ui/react-slot@1.0.2": version "1.0.2" resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz" @@ -2280,6 +2541,13 @@ "@babel/runtime" "^7.13.10" "@radix-ui/react-compose-refs" "1.0.1" +"@radix-ui/react-slot@1.1.0", "@radix-ui/react-slot@^1.1.0": + version "1.1.0" + resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz" + integrity sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw== + dependencies: + "@radix-ui/react-compose-refs" "1.1.0" + "@radix-ui/react-switch@^1.1.0": version "1.1.0" resolved "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.1.0.tgz" @@ -2435,6 +2703,11 @@ estree-walker "^2.0.2" picomatch "^2.3.1" +"@rollup/rollup-linux-x64-gnu@^4.9.5": + version "4.24.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz#78144741993100f47bd3da72fce215e077ae036b" + integrity sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A== + "@rushstack/eslint-patch@^1.3.3": version "1.10.4" resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz" @@ -2520,6 +2793,36 @@ resolved "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.36.1.tgz" integrity sha512-JOHQjVD8Kqxm1jUKioAP5ohLOITf+Dh6+DBz4gQjCNdotsvNW5m63TKROwq2oB811p+Jzv5304ujmN4cAqW1Ww== +"@sentry/cli-linux-arm64@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.36.1.tgz#ff449d7e7e715166257998c02cf635ca02acbadd" + integrity sha512-R//3ZEkbzvoStr3IA7nxBZNiBYyxOljOqAhgiTnejXHmnuwDzM3TBA2n5vKPE/kBFxboEBEw0UTzTIRb1T0bgw== + +"@sentry/cli-linux-arm@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.36.1.tgz#1ae5d335a1b4cd217a34c2bd6c6f5e0670136eb3" + integrity sha512-gvEOKN0fWL2AVqUBKHNXPRZfJNvKTs8kQhS8cQqahZGgZHiPCI4BqW45cKMq+ZTt1UUbLmt6khx5Dz7wi+0i5A== + +"@sentry/cli-linux-i686@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.36.1.tgz#112b9e26357e918cbbba918114ec8cdab07cdf60" + integrity sha512-R7sW5Vk/HacVy2YgQoQB+PwccvFYf2CZVPSFSFm2z7MEfNe77UYHWUq+sjJ4vxWG6HDWGVmaX0fjxyDkE01JRA== + +"@sentry/cli-linux-x64@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.36.1.tgz#c3e5bdb0c9a4bb44c83927c62a3cd7e006709bf7" + integrity sha512-UMr3ik8ksA7zQfbzsfwCb+ztenLnaeAbX94Gp+bzANZwPfi/vVHf2bLyqsBs4OyVt9SPlN1bbM/RTGfMjZ3JOw== + +"@sentry/cli-win32-i686@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.36.1.tgz#819573320e885e1dbf59b0a01d3bd370c84c1708" + integrity sha512-CflvhnvxPEs5GWQuuDtYSLqPrBaPbcSJFlBuUIb+8WNzRxvVfjgw1qzfZmkQqABqiy/YEsEekllOoMFZAvCcVA== + +"@sentry/cli-win32-x64@2.36.1": + version "2.36.1" + resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.36.1.tgz#80779b4bffb4e2e32944eae72c60e6f40151b4dc" + integrity sha512-wWqht2xghcK3TGnooHZSzA3WSjdtno/xFjZLvWmw38rblGwgKMxLZnlxV6uDyS+OJ6CbfDTlCRay/0TIqA0N8g== + "@sentry/cli@^2.33.1": version "2.36.1" resolved "https://registry.npmjs.org/@sentry/cli/-/cli-2.36.1.tgz" @@ -2822,7 +3125,7 @@ dependencies: memoizerific "^1.11.3" -"@storybook/blocks@^8.3.5", "@storybook/blocks@8.3.5": +"@storybook/blocks@8.3.5", "@storybook/blocks@^8.3.5": version "8.3.5" resolved "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.3.5.tgz" integrity sha512-8cHTdTywolTHlgwN8I7YH7saWAIjGzV617AwjhJ95AKlC0VtpO1gAFcAgCqr4DU9eMc+LZuvbnaU/RSvA5eCCQ== @@ -3051,7 +3354,7 @@ resolved "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.3.5.tgz" integrity sha512-Hf0UitJ/K0C7ajooooUK/PxOR4ihUWqsC7iCV1Gqth8U37dTeLMbaEO4PBwu0VQ+Ufg0N8BJLWfg7o6G4hrODw== -"@storybook/react@^8.3.5", "@storybook/react@8.3.5": +"@storybook/react@8.3.5", "@storybook/react@^8.3.5": version "8.3.5" resolved "https://registry.npmjs.org/@storybook/react/-/react-8.3.5.tgz" integrity sha512-kuBPe/wBin10SWr4EWPKxiTRGQ4RD2etGEVWVQLqVpOuJp/J2hVvXQHtCfZXU4TZT5x4PBbPRswbr58+XlF+kQ== @@ -3105,7 +3408,7 @@ nyc "^15.1.0" playwright "^1.14.0" -"@storybook/test@^8.3.5", "@storybook/test@8.3.5": +"@storybook/test@8.3.5", "@storybook/test@^8.3.5": version "8.3.5" resolved "https://registry.npmjs.org/@storybook/test/-/test-8.3.5.tgz" integrity sha512-1BXWsUGWk9FiKKelZZ55FDJdeoL8uRBHbjTYBRM2xJLhdNSvGzI4Tb3bkmxPpGn72Ua6AyldhlTxr2BpUFKOHA== @@ -3139,7 +3442,7 @@ dependencies: "@supabase/node-fetch" "^2.6.14" -"@supabase/node-fetch@^2.6.14", "@supabase/node-fetch@2.6.15": +"@supabase/node-fetch@2.6.15", "@supabase/node-fetch@^2.6.14": version "2.6.15" resolved "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz" integrity sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ== @@ -3179,7 +3482,7 @@ dependencies: "@supabase/node-fetch" "^2.6.14" -"@supabase/supabase-js@^2.43.4", "@supabase/supabase-js@^2.45.0": +"@supabase/supabase-js@^2.45.0": version "2.45.1" resolved "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.45.1.tgz" integrity sha512-/PVe3lXmalazD8BGMIoI7+ttvT1mLXy13lNcoAPtjP1TDDY83g8csZbVR6l+0/RZtvJxl3LGXfTJT4bjWgC5Nw== @@ -3196,7 +3499,52 @@ resolved "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.35.tgz" integrity sha512-BQSSozVxjxS+SVQz6e3GC/+OBWGIK3jfe52pWdANmycdjF3ch7lrCKTHTU7eHwyoJ96mofszPf5AsiVJF34Fwg== -"@swc/core@*", "@swc/core@^1.5.22": +"@swc/core-darwin-x64@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.7.35.tgz#c15c0fb11fb44e748d86d949911a6e416c7d36c9" + integrity sha512-44TYdKN/EWtkU88foXR7IGki9JzhEJzaFOoPevfi9Xe7hjAD/x2+AJOWWqQNzDPMz9+QewLdUVLyR6s5okRgtg== + +"@swc/core-linux-arm-gnueabihf@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.35.tgz#e40a31cbbef31b4ec0fa294eae4c51bf28f1622b" + integrity sha512-ccfA5h3zxwioD+/z/AmYtkwtKz9m4rWTV7RoHq6Jfsb0cXHrd6tbcvgqRWXra1kASlE+cDWsMtEZygs9dJRtUQ== + +"@swc/core-linux-arm64-gnu@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.35.tgz#538d367d06d7f2cbee05b9e1357583574eb57601" + integrity sha512-hx65Qz+G4iG/IVtxJKewC5SJdki8PAPFGl6gC/57Jb0+jA4BIoGLD/J3Q3rCPeoHfdqpkCYpahtyUq8CKx41Jg== + +"@swc/core-linux-arm64-musl@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.35.tgz#752e6b74c10113e1759e418906f48138dfd01a9f" + integrity sha512-kL6tQL9No7UEoEvDRuPxzPTpxrvbwYteNRbdChSSP74j13/55G2/2hLmult5yFFaWuyoyU/2lvzjRL/i8OLZxg== + +"@swc/core-linux-x64-gnu@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.35.tgz#0cbade76e5abce7d13802d6c55dc0c21213f5d3d" + integrity sha512-Ke4rcLQSwCQ2LHdJX1FtnqmYNQ3IX6BddKlUtS7mcK13IHkQzZWp0Dcu6MgNA3twzb/dBpKX5GLy07XdGgfmyw== + +"@swc/core-linux-x64-musl@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.35.tgz#ac60b88972cdbd2856cbe7b5b5ef1a1f54d906f6" + integrity sha512-T30tlLnz0kYyDFyO5RQF5EQ4ENjW9+b56hEGgFUYmfhFhGA4E4V67iEx7KIG4u0whdPG7oy3qjyyIeTb7nElEw== + +"@swc/core-win32-arm64-msvc@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.35.tgz#366f3e8cc387c539579e91a4ccf8a2b9a0083889" + integrity sha512-CfM/k8mvtuMyX+okRhemfLt784PLS0KF7Q9djA8/Dtavk0L5Ghnq+XsGltO3d8B8+XZ7YOITsB14CrjehzeHsg== + +"@swc/core-win32-ia32-msvc@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.35.tgz#07fbda3ca8ac58f28cd441aa9ba082a3ea6d84fb" + integrity sha512-ATB3uuH8j/RmS64EXQZJSbo2WXfRNpTnQszHME/sGaexsuxeijrp3DTYSFAA3R2Bu6HbIIX6jempe1Au8I3j+A== + +"@swc/core-win32-x64-msvc@1.7.35": + version "1.7.35" + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.35.tgz#043a54aaeb9b24f4f2405ac2cfa48891508ff1a6" + integrity sha512-iDGfQO1571NqWUXtLYDhwIELA/wadH42ioGn+J9R336nWx40YICzy9UQyslWRhqzhQ5kT+QXAW/MoCWc058N6Q== + +"@swc/core@^1.5.22": version "1.7.35" resolved "https://registry.npmjs.org/@swc/core/-/core-1.7.35.tgz" integrity sha512-3cUteCTbr2r5jqfgx0r091sfq5Mgh6F1SQh8XAOnSvtKzwv2bC31mvBHVAieD1uPa2kHJhLav20DQgXOhpEitw== @@ -3220,7 +3568,7 @@ resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz" integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== -"@swc/helpers@*", "@swc/helpers@0.5.5": +"@swc/helpers@0.5.5": version "0.5.5" resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz" integrity sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A== @@ -3256,7 +3604,7 @@ resolved "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.20.5.tgz" integrity sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg== -"@testing-library/dom@>=7.21.4", "@testing-library/dom@10.4.0": +"@testing-library/dom@10.4.0": version "10.4.0" resolved "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz" integrity sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ== @@ -3608,7 +3956,7 @@ resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz" integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== -"@types/react-dom@*", "@types/react-dom@^18": +"@types/react-dom@^18": version "18.3.0" resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz" integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg== @@ -3622,7 +3970,7 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@^18", "@types/react@>=16", "@types/react@>=16.8", "@types/react@>=18": +"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^18": version "18.3.4" resolved "https://registry.npmjs.org/@types/react/-/react-18.3.4.tgz" integrity sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw== @@ -3838,15 +4186,6 @@ dependencies: tinyspy "^3.0.0" -"@vitest/utils@^2.0.5": - version "2.1.2" - resolved "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.2.tgz" - integrity sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ== - dependencies: - "@vitest/pretty-format" "2.1.2" - loupe "^3.1.1" - tinyrainbow "^1.2.0" - "@vitest/utils@2.0.5": version "2.0.5" resolved "https://registry.npmjs.org/@vitest/utils/-/utils-2.0.5.tgz" @@ -3857,7 +4196,16 @@ loupe "^3.1.1" tinyrainbow "^1.2.0" -"@webassemblyjs/ast@^1.12.1", "@webassemblyjs/ast@1.12.1": +"@vitest/utils@^2.0.5": + version "2.1.2" + resolved "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.2.tgz" + integrity sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ== + dependencies: + "@vitest/pretty-format" "2.1.2" + loupe "^3.1.1" + tinyrainbow "^1.2.0" + +"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": version "1.12.1" resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz" integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== @@ -3958,7 +4306,7 @@ "@webassemblyjs/wasm-gen" "1.12.1" "@webassemblyjs/wasm-parser" "1.12.1" -"@webassemblyjs/wasm-parser@^1.12.1", "@webassemblyjs/wasm-parser@1.12.1": +"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": version "1.12.1" resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz" integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== @@ -4040,16 +4388,16 @@ acorn-walk@^7.2.0: resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8, acorn@^8.12.1, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0: - version "8.12.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz" - integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== - acorn@^7.4.1: version "7.4.1" resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== +acorn@^8.12.1, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.12.1" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + adjust-sourcemap-loader@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz" @@ -4092,7 +4440,7 @@ ajv-keywords@^5.1.0: dependencies: fast-deep-equal "^3.1.3" -ajv@^6.12.4: +ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -4102,17 +4450,7 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^6.12.5, ajv@^6.9.1: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.0.0, ajv@^8.17.1, ajv@^8.8.2, ajv@^8.9.0: +ajv@^8.0.0, ajv@^8.17.1, ajv@^8.9.0: version "8.17.1" resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== @@ -4227,13 +4565,6 @@ aria-hidden@^1.1.1: dependencies: tslib "^2.0.0" -aria-query@^5.0.0, aria-query@~5.1.3: - version "5.1.3" - resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz" - integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== - dependencies: - deep-equal "^2.0.5" - aria-query@5.3.0: version "5.3.0" resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz" @@ -4241,6 +4572,13 @@ aria-query@5.3.0: dependencies: dequal "^2.0.3" +aria-query@^5.0.0, aria-query@~5.1.3: + version "5.1.3" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz" @@ -4537,17 +4875,7 @@ binary-extensions@^2.0.0: resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz" integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== -bn.js@^4.0.0: - version "4.12.0" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^4.1.0: - version "4.12.0" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^4.11.9: +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: version "4.12.0" resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== @@ -4675,7 +5003,7 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@^4.21.10, browserslist@^4.23.3, browserslist@^4.24.0, "browserslist@>= 4.21.0": +browserslist@^4.21.10, browserslist@^4.23.3, browserslist@^4.24.0: version "4.24.0" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz" integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A== @@ -4802,16 +5130,7 @@ chai@^5.1.1: loupe "^3.1.0" pathval "^2.0.0" -chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0, chalk@3.0.0: +chalk@3.0.0, chalk@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== @@ -4819,23 +5138,16 @@ chalk@^3.0.0, chalk@3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0: - version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chalk@^4.1.0: - version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" -chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -4973,16 +5285,16 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" -clsx@^2.0.0, clsx@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" - integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== - clsx@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz" integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q== +clsx@^2.0.0, clsx@^2.1.1: + version "2.1.1" + resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" + integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== + cmdk@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/cmdk/-/cmdk-1.0.0.tgz" @@ -5015,16 +5327,16 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@^1.0.0, color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - color-name@1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + color-string@^1.9.0: version "1.9.1" resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" @@ -5148,16 +5460,16 @@ cookie-signature@1.0.6: resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== -cookie@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" - integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== - cookie@0.7.1: version "0.7.1" resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz" integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== +cookie@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + core-js-compat@^3.38.0, core-js-compat@^3.38.1: version "3.38.1" resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz" @@ -5319,7 +5631,7 @@ cwd@^0.10.0: find-pkg "^0.1.2" fs-exists-sync "^0.1.0" -d3-array@^3.1.6, "d3-array@2 - 3", "d3-array@2.10.0 - 3": +"d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.1.6: version "3.2.4" resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz" integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== @@ -5336,7 +5648,7 @@ d3-array@^3.1.6, "d3-array@2 - 3", "d3-array@2.10.0 - 3": resolved "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz" integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg== -d3-drag@^3.0.0, "d3-drag@2 - 3": +"d3-drag@2 - 3", d3-drag@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz" integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg== @@ -5344,7 +5656,7 @@ d3-drag@^3.0.0, "d3-drag@2 - 3": d3-dispatch "1 - 3" d3-selection "3" -d3-ease@^3.0.1, "d3-ease@1 - 3": +"d3-ease@1 - 3", d3-ease@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz" integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== @@ -5354,7 +5666,7 @@ d3-ease@^3.0.1, "d3-ease@1 - 3": resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz" integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== -d3-interpolate@^3.0.1, "d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3": +"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz" integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== @@ -5377,7 +5689,7 @@ d3-scale@^4.0.2: d3-time "2.1.1 - 3" d3-time-format "2 - 4" -d3-selection@^3.0.0, "d3-selection@2 - 3", d3-selection@3: +"d3-selection@2 - 3", d3-selection@3, d3-selection@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz" integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== @@ -5396,14 +5708,14 @@ d3-shape@^3.1.0: dependencies: d3-time "1 - 3" -d3-time@^3.0.0, "d3-time@1 - 3", "d3-time@2.1.1 - 3": +"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@^3.0.0: version "3.1.0" resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz" integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== dependencies: d3-array "2 - 3" -d3-timer@^3.0.1, "d3-timer@1 - 3": +"d3-timer@1 - 3", d3-timer@^3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== @@ -5462,31 +5774,36 @@ data-view-byte-offset@^1.0.0: es-errors "^1.3.0" is-data-view "^1.0.1" -"date-fns@^2.28.0 || ^3.0.0", date-fns@^3.6.0: +date-fns@^3.6.0: version "3.6.0" resolved "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz" integrity sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww== -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== +date-fns@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-4.1.0.tgz#64b3d83fff5aa80438f5b1a633c2e83b8a1c2d14" + integrity sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg== + +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: - ms "^2.1.1" + ms "2.0.0" -debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@4: +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5: version "4.3.7" resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz" integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== dependencies: ms "^2.1.3" -debug@2.6.9: - version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: - ms "2.0.0" + ms "^2.1.1" decamelize@^1.2.0: version "1.2.0" @@ -5716,6 +6033,14 @@ dom-helpers@^5.0.1: "@babel/runtime" "^7.8.7" csstype "^3.0.2" +dom-serializer@0: + version "0.2.2" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + dom-serializer@^1.0.1: version "1.4.1" resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz" @@ -5725,20 +6050,12 @@ dom-serializer@^1.0.1: domhandler "^4.2.0" entities "^2.0.0" -dom-serializer@0: - version "0.2.2" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" - integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== - dependencies: - domelementtype "^2.0.1" - entities "^2.0.0" - domain-browser@^4.22.0: version "4.23.0" resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz" integrity sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA== -domelementtype@^1.3.1, domelementtype@1: +domelementtype@1, domelementtype@^1.3.1: version "1.3.1" resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== @@ -5770,16 +6087,7 @@ domutils@^1.5.1: dom-serializer "0" domelementtype "1" -domutils@^2.5.2: - version "2.8.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -domutils@^2.8.0: +domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== @@ -6053,7 +6361,7 @@ esbuild-register@^3.5.0: dependencies: debug "^4.3.4" -"esbuild@^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0", "esbuild@>=0.12 <1": +"esbuild@^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0": version "0.23.1" resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz" integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg== @@ -6163,7 +6471,7 @@ eslint-module-utils@^2.7.4, eslint-module-utils@^2.8.0: dependencies: debug "^3.2.7" -eslint-plugin-import@*, eslint-plugin-import@^2.28.1: +eslint-plugin-import@^2.28.1: version "2.29.1" resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz" integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== @@ -6247,7 +6555,7 @@ eslint-plugin-storybook@^0.9.0: requireindex "^1.2.0" ts-dedent "^2.2.0" -eslint-scope@^5.1.1: +eslint-scope@5.1.1, eslint-scope@^5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== @@ -6263,20 +6571,12 @@ eslint-scope@^7.2.2: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-scope@5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: version "3.4.3" resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== -eslint@*, "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^7.23.0 || ^8.0.0", eslint@^8, eslint@^8.56.0, eslint@>=6: +eslint@^8: version "8.57.0" resolved "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz" integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== @@ -6631,15 +6931,7 @@ find-process@^1.4.4: commander "^5.1.0" debug "^4.1.1" -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^4.1.0: +find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -6780,16 +7072,16 @@ fs.realpath@^1.0.0: resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^2.3.2, fsevents@~2.3.2: - version "2.3.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - fsevents@2.3.2: version "2.3.2" resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== +fsevents@^2.3.2, fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + function-bind@^1.1.2: version "1.1.2" resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" @@ -6867,7 +7159,7 @@ github-slugger@^2.0.0: resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz" integrity sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw== -glob-parent@^5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -6881,55 +7173,35 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - glob-to-regexp@^0.4.1: version "0.4.1" resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^10.3.10, glob@^10.4.1: - version "10.4.5" - resolved "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz" - integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== +glob@10.3.10: + version "10.3.10" + resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" + integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== dependencies: foreground-child "^3.1.0" - jackspeak "^3.1.2" - minimatch "^9.0.4" - minipass "^7.1.2" - package-json-from-dist "^1.0.0" - path-scurry "^1.11.1" - -glob@^7.1.3: - version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" + jackspeak "^2.3.5" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" -glob@^7.1.4: - version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== +glob@^10.3.10, glob@^10.4.1: + version "10.4.5" + resolved "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" -glob@^7.1.6: +glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -6951,17 +7223,6 @@ glob@^9.3.2: minipass "^4.2.4" path-scurry "^1.6.1" -glob@10.3.10: - version "10.3.10" - resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" - integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== - dependencies: - foreground-child "^3.1.0" - jackspeak "^2.3.5" - minimatch "^9.0.1" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - path-scurry "^1.10.1" - global-modules@^0.2.3: version "0.2.3" resolved "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz" @@ -7344,7 +7605,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4, inherits@2, inherits@2.0.4: +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -7810,7 +8071,7 @@ jest-changed-files@^29.7.0: jest-util "^29.7.0" p-limit "^3.1.0" -jest-circus@^29.3.1, jest-circus@^29.6.4, jest-circus@^29.7.0: +jest-circus@^29.6.4, jest-circus@^29.7.0: version "29.7.0" resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz" integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== @@ -7909,7 +8170,7 @@ jest-each@^29.7.0: jest-util "^29.7.0" pretty-format "^29.7.0" -jest-environment-node@^29.3.1, jest-environment-node@^29.6.4, jest-environment-node@^29.7.0: +jest-environment-node@^29.6.4, jest-environment-node@^29.7.0: version "29.7.0" resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz" integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== @@ -8043,7 +8304,7 @@ jest-resolve-dependencies@^29.7.0: jest-regex-util "^29.6.3" jest-snapshot "^29.7.0" -jest-resolve@*, jest-resolve@^29.7.0: +jest-resolve@^29.7.0: version "29.7.0" resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz" integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== @@ -8058,7 +8319,7 @@ jest-resolve@*, jest-resolve@^29.7.0: resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^29.3.1, jest-runner@^29.6.4, jest-runner@^29.7.0: +jest-runner@^29.6.4, jest-runner@^29.7.0: version "29.7.0" resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz" integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== @@ -8216,7 +8477,7 @@ jest-worker@^29.7.0: merge-stream "^2.0.0" supports-color "^8.0.0" -"jest@^27.0.0 || ^28.0.0 || ^29.0.0", jest@^29.3.1, jest@^29.6.4: +jest@^29.6.4: version "29.7.0" resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz" integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== @@ -8390,16 +8651,7 @@ loader-runner@^4.2.0: resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz" integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== -loader-utils@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - -loader-utils@^2.0.4: +loader-utils@^2.0.0, loader-utils@^2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== @@ -8500,13 +8752,6 @@ lz-string@^1.5.0: resolved "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz" integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== -magic-string@^0.30.3, magic-string@^0.30.5: - version "0.30.11" - resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz" - integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== - dependencies: - "@jridgewell/sourcemap-codec" "^1.5.0" - magic-string@0.30.8: version "0.30.8" resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz" @@ -8514,6 +8759,13 @@ magic-string@0.30.8: dependencies: "@jridgewell/sourcemap-codec" "^1.4.15" +magic-string@^0.30.3, magic-string@^0.30.5: + version "0.30.11" + resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz" + integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== + dependencies: + "@jridgewell/sourcemap-codec" "^1.5.0" + make-dir@^3.0.0, make-dir@^3.0.2: version "3.1.0" resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" @@ -8945,6 +9197,13 @@ minimalistic-crypto-utils@^1.0.1: resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== +minimatch@9.0.3: + version "9.0.3" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + dependencies: + brace-expansion "^2.0.1" + minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" @@ -8959,27 +9218,13 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.1: +minimatch@^9.0.1, minimatch@^9.0.4: version "9.0.5" resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.4: - version "9.0.5" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" - integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== - dependencies: - brace-expansion "^2.0.1" - -minimatch@9.0.3: - version "9.0.3" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== - dependencies: - brace-expansion "^2.0.1" - minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.8: version "1.2.8" resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" @@ -9010,16 +9255,16 @@ moment@^2.30.1: resolved "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz" integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== -ms@^2.1.1, ms@^2.1.3, ms@2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - ms@2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== +ms@2.1.3, ms@^2.1.1, ms@^2.1.3: + version "2.1.3" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + mz@^2.7.0: version "2.7.0" resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" @@ -9054,7 +9299,7 @@ next-themes@^0.3.0: resolved "https://registry.npmjs.org/next-themes/-/next-themes-0.3.0.tgz" integrity sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w== -"next@^13.0.0 || ^14.0.0", "next@^13.2.0 || ^14.0 || ^15.0.0-rc.0", "next@^13.5.0 || ^14.0.0", next@^14.2.13: +next@^14.2.13: version "14.2.13" resolved "https://registry.npmjs.org/next/-/next-14.2.13.tgz" integrity sha512-BseY9YNw8QJSwLYD7hlZzl6QVDoSFHL/URN5K64kVEVpCsSOWeyjbIGK+dZUaRViHTaMQX8aqmnn0PHBbGZezg== @@ -9591,12 +9836,12 @@ pkg-dir@^7.0.0: dependencies: find-up "^6.3.0" -playwright-core@>=1.2.0, playwright-core@1.47.2: +playwright-core@1.47.2, playwright-core@>=1.2.0: version "1.47.2" resolved "https://registry.npmjs.org/playwright-core/-/playwright-core-1.47.2.tgz" integrity sha512-3JvMfF+9LJfe16l7AbSmU555PaTl2tPyQsVInqm3id16pdDfvZ8TTZ/pyzmkbDrZTQefyzU7AIHlZqQnxpqHVQ== -playwright@^1.14.0, playwright@1.47.2: +playwright@1.47.2, playwright@^1.14.0: version "1.47.2" resolved "https://registry.npmjs.org/playwright/-/playwright-1.47.2.tgz" integrity sha512-nx1cLMmQWqmA3UsnjaaokyoUpdVaaDhJhMoxX2qj3McpjnsqFHs516QAKYhqHAgOP+oCFTEOCOAaD1RgD/RQfA== @@ -9705,15 +9950,6 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^ resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -"postcss@^7.0.0 || ^8.0.1", postcss@^8, postcss@^8.0.0, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.38, postcss@>=8.0.9: - version "8.4.41" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz" - integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== - dependencies: - nanoid "^3.3.7" - picocolors "^1.0.1" - source-map-js "^1.2.0" - postcss@8.4.31: version "8.4.31" resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" @@ -9723,6 +9959,15 @@ postcss@8.4.31: picocolors "^1.0.0" source-map-js "^1.0.2" +postcss@^8, postcss@^8.2.14, postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.38: + version "8.4.41" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz" + integrity sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + postgres-array@~2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz" @@ -9755,7 +10000,7 @@ prettier-plugin-tailwindcss@^0.6.6: resolved "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.6.6.tgz" integrity sha512-OPva5S7WAsPLEsOuOWXATi13QrCKACCiIonFgIR6V4lYv4QLp++UXVhZSzRbZxXGimkQtQT86CC6fQqTOybGng== -prettier@^3.0, prettier@^3.3.3: +prettier@^3.3.3: version "3.3.3" resolved "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz" integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== @@ -9870,7 +10115,7 @@ pure-rand@^6.0.0: resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz" integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== -qs@^6.12.3, qs@6.13.0: +qs@6.13.0, qs@^6.12.3: version "6.13.0" resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz" integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== @@ -9936,10 +10181,13 @@ react-confetti@^6.1.0: dependencies: tween-functions "^1.2.0" -react-day-picker@^8.10.1: - version "8.10.1" - resolved "https://registry.npmjs.org/react-day-picker/-/react-day-picker-8.10.1.tgz" - integrity sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA== +react-day-picker@^9.2.0: + version "9.2.0" + resolved "https://registry.yarnpkg.com/react-day-picker/-/react-day-picker-9.2.0.tgz#488086ea85d9f1072d21da7807350258ba699d4a" + integrity sha512-WGdI2tmGBG2SZRDNCTG9rNXC4e8iUpYQHUWBtFDREHC9zqatY+YhgCgMFFWXddpKHLvN4CtJ54o4UpNDs4jVpA== + dependencies: + "@date-fns/tz" "^1.1.2" + date-fns "^4.1.0" react-docgen-typescript@^2.2.2: version "2.2.2" @@ -9962,7 +10210,7 @@ react-docgen@^7.0.0: resolve "^1.22.1" strip-indent "^4.0.0" -"react-dom@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react-dom@^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", "react-dom@^16.0.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8 || ^17 || ^18", "react-dom@^16.8 || ^17.0 || ^18.0", "react-dom@^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", react-dom@^18, react-dom@^18.0.0, react-dom@^18.2.0, react-dom@>=16.6.0, react-dom@>=16.8, react-dom@>=16.8.0, react-dom@>=17: +"react-dom@^16.8.0 || ^17.0.0 || ^18.0.0", react-dom@^18: version "18.3.1" resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz" integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== @@ -9979,7 +10227,7 @@ react-element-to-jsx-string@^15.0.0: is-plain-object "5.0.0" react-is "18.1.0" -react-hook-form@^7.0.0, react-hook-form@^7.52.1: +react-hook-form@^7.52.1: version "7.52.2" resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.52.2.tgz" integrity sha512-pqfPEbERnxxiNMPd0bzmt1tuaPcVccywFDpyk2uV5xCIBphHV5T8SVnX9/o3kplPE1zzKt77+YIoq+EMwJp56A== @@ -9989,6 +10237,11 @@ react-icons@^5.3.0: resolved "https://registry.npmjs.org/react-icons/-/react-icons-5.3.0.tgz" integrity sha512-DnUk8aFbTyQPSkCfF8dbX6kQjXA9DktMeJqfjrg6cK9vwQVMxmcA3BfP4QoiztVmEHtwlTgLFsPuH2NskKT6eg== +react-is@18.1.0: + version "18.1.0" + resolved "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz" + integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== + react-is@^16.10.2, react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" @@ -10004,11 +10257,6 @@ react-is@^18.0.0: resolved "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== -react-is@18.1.0: - version "18.1.0" - resolved "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz" - integrity sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg== - react-lifecycles-compat@^3.0.0: version "3.0.4" resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" @@ -10040,7 +10288,7 @@ react-modal@^3.16.1: react-lifecycles-compat "^3.0.0" warning "^4.0.3" -react-refresh@^0.14.0, "react-refresh@>=0.10.0 <1.0.0": +react-refresh@^0.14.0: version "0.14.2" resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz" integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== @@ -10121,7 +10369,7 @@ react-transition-group@^4.4.5: loose-envify "^1.4.0" prop-types "^15.6.2" -react@*, "react@^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", "react@^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", "react@^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.14.0 || 17.x || 18.x || 19.x", "react@^16.3.0 || ^17.0.1 || ^18.0.0", "react@^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react@^16.8 || ^17 || ^18", "react@^16.8 || ^17.0 || ^18.0", "react@^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react@^16.8.0 || ^17 || ^18 || ^19", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", "react@^16.x || ^17.x || ^18.x", react@^18, react@^18.0.0, react@^18.2.0, react@^18.3.1, "react@>= 0.14.0", "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", "react@>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0", react@>=16, react@>=16.6.0, react@>=16.8, react@>=16.8.0, react@>=17, react@>=18: +"react@^16.8.0 || ^17.0.0 || ^18.0.0", react@^18: version "18.3.1" resolved "https://registry.npmjs.org/react/-/react-18.3.1.tgz" integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== @@ -10433,7 +10681,7 @@ resolve.exports@^2.0.0: resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.1.7, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4, resolve@^1.22.8, resolve@1.22.8: +resolve@1.22.8, resolve@^1.1.7, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4, resolve@^1.22.8: version "1.22.8" resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== @@ -10471,7 +10719,7 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rollup@^1.20.0||^2.0.0||^3.0.0||^4.0.0, rollup@^2.68.0||^3.0.0||^4.0.0, rollup@3.29.5: +rollup@3.29.5: version "3.29.5" resolved "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz" integrity sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w== @@ -10502,17 +10750,12 @@ safe-array-concat@^1.1.2: has-symbols "^1.0.3" isarray "^2.0.5" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0, safe-buffer@5.2.1: +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-buffer@~5.1.0: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@~5.1.1: +safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== @@ -10554,17 +10797,7 @@ schema-utils@^3.1.1, schema-utils@^3.2.0: ajv "^6.12.5" ajv-keywords "^3.5.2" -schema-utils@^4.0.0: - version "4.2.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz" - integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== - dependencies: - "@types/json-schema" "^7.0.9" - ajv "^8.9.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.1.0" - -schema-utils@^4.2.0: +schema-utils@^4.0.0, schema-utils@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz" integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== @@ -10574,17 +10807,7 @@ schema-utils@^4.2.0: ajv-formats "^2.1.1" ajv-keywords "^5.1.0" -semver@^6.0.0: - version "6.3.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== - -semver@^6.3.0: - version "6.3.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== - -semver@^6.3.1: +semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -10745,17 +10968,7 @@ side-channel@^1.0.4, side-channel@^1.0.6: get-intrinsic "^1.2.4" object-inspect "^1.13.1" -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^3.0.3: - version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^3.0.7: +signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== @@ -10792,14 +11005,6 @@ source-map-js@^1.0.2, source-map-js@^1.2.0: resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz" integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== -source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - source-map-support@0.5.13: version "0.5.13" resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" @@ -10808,7 +11013,15 @@ source-map-support@0.5.13: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1, source-map@0.6.1: +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: version "0.6.1" resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -10911,20 +11124,6 @@ streamsearch@^1.1.0: resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== -string_decoder@^1.1.1, string_decoder@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - string-length@^4.0.1: version "4.0.2" resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" @@ -10950,16 +11149,7 @@ string-length@^5.0.1: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^4.1.0, string-width@^4.2.0: - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -11039,6 +11229,20 @@ string.prototype.trimstart@^1.0.8: define-properties "^1.2.1" es-object-atoms "^1.0.0" +string_decoder@^1.1.1, string_decoder@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + stringify-entities@^4.0.0: version "4.0.4" resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz" @@ -11061,14 +11265,7 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" -strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-ansi@^7.1.0: +strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== @@ -11121,13 +11318,6 @@ style-to-object@^1.0.0: dependencies: inline-style-parser "0.2.3" -styled-jsx@^5.1.6: - version "5.1.6" - resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz" - integrity sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA== - dependencies: - client-only "0.0.1" - styled-jsx@5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" @@ -11135,6 +11325,13 @@ styled-jsx@5.1.1: dependencies: client-only "0.0.1" +styled-jsx@^5.1.6: + version "5.1.6" + resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz" + integrity sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA== + dependencies: + client-only "0.0.1" + sucrase@^3.32.0: version "3.35.0" resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz" @@ -11162,14 +11359,7 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.1.1: +supports-color@^8.0.0, supports-color@^8.1.1: version "8.1.1" resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== @@ -11191,7 +11381,7 @@ tailwindcss-animate@^1.0.7: resolved "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz" integrity sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA== -tailwindcss@^3.4.1, "tailwindcss@>=3.0.0 || insiders": +tailwindcss@^3.4.1: version "3.4.10" resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.10.tgz" integrity sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w== @@ -11388,25 +11578,7 @@ tsconfig-paths@^3.15.0: minimist "^1.2.6" strip-bom "^3.0.0" -tsconfig-paths@^4.0.0: - version "4.2.0" - resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz" - integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== - dependencies: - json5 "^2.2.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tsconfig-paths@^4.1.2: - version "4.2.0" - resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz" - integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== - dependencies: - json5 "^2.2.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tsconfig-paths@^4.2.0: +tsconfig-paths@^4.0.0, tsconfig-paths@^4.1.2, tsconfig-paths@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz" integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== @@ -11474,22 +11646,7 @@ type-fest@^0.8.0: resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^2.14.0: - version "2.19.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - -type-fest@^2.19.0: - version "2.19.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - -"type-fest@>=0.17.0 <5.0.0": - version "4.26.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-4.26.1.tgz" - integrity sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg== - -type-fest@~2.19: +type-fest@^2.14.0, type-fest@^2.19.0, type-fest@~2.19: version "2.19.0" resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== @@ -11553,7 +11710,7 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@^5, typescript@^5.0.0, "typescript@>= 4.2.x", "typescript@>= 4.3.x", "typescript@>= 4.x", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", typescript@>=3.3.1, typescript@>=4.2.0, typescript@>=4.9.5, typescript@>3.6.0: +typescript@^5: version "5.5.4" resolved "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz" integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== @@ -11660,19 +11817,11 @@ universalify@^2.0.0: resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== -unpipe@~1.0.0, unpipe@1.0.0: +unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -unplugin@^1.3.1: - version "1.14.1" - resolved "https://registry.npmjs.org/unplugin/-/unplugin-1.14.1.tgz" - integrity sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w== - dependencies: - acorn "^8.12.1" - webpack-virtual-modules "^0.6.2" - unplugin@1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/unplugin/-/unplugin-1.0.1.tgz" @@ -11683,6 +11832,14 @@ unplugin@1.0.1: webpack-sources "^3.2.3" webpack-virtual-modules "^0.5.0" +unplugin@^1.3.1: + version "1.14.1" + resolved "https://registry.npmjs.org/unplugin/-/unplugin-1.14.1.tgz" + integrity sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w== + dependencies: + acorn "^8.12.1" + webpack-virtual-modules "^0.6.2" + update-browserslist-db@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz" @@ -11881,7 +12038,7 @@ webpack-dev-middleware@^6.1.2: range-parser "^1.2.1" schema-utils "^4.0.0" -webpack-hot-middleware@^2.25.1, webpack-hot-middleware@2.x: +webpack-hot-middleware@^2.25.1: version "2.26.1" resolved "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz" integrity sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A== @@ -11890,7 +12047,7 @@ webpack-hot-middleware@^2.25.1, webpack-hot-middleware@2.x: html-entities "^2.1.0" strip-ansi "^6.0.0" -webpack-sources@^3, webpack-sources@^3.2.3: +webpack-sources@^3.2.3: version "3.2.3" resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== @@ -11900,17 +12057,12 @@ webpack-virtual-modules@^0.5.0: resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz" integrity sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw== -webpack-virtual-modules@^0.6.0: - version "0.6.2" - resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz" - integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== - -webpack-virtual-modules@^0.6.2: +webpack-virtual-modules@^0.6.0, webpack-virtual-modules@^0.6.2: version "0.6.2" resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz" integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== -webpack@^5.0.0, webpack@^5.1.0, webpack@^5.11.0, webpack@^5.20.0, "webpack@>= 4", webpack@>=4.40.0, "webpack@>=4.43.0 <6.0.0", webpack@>=5, webpack@>=5.0.0, webpack@5: +webpack@5: version "5.94.0" resolved "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz" integrity sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg== From 75f3092ba2848f7795d6b4ad8953e9574ad3e363 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 22:30:18 +0000 Subject: [PATCH 20/42] build(deps): bump actions/setup-python from 4 to 5 (#8438) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index 97013715db4d..15c21760e9df 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.11' diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 549eb0478115..1d24b453d4db 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.11' From cc17147a98b632fb16cfd1b58adfb0920330e101 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 22:34:30 +0000 Subject: [PATCH 21/42] build(deps-dev): bump the development-dependencies group in /autogpt_platform/market with 6 updates (#8434) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicholas Tindle --- autogpt_platform/market/poetry.lock | 120 +++++++++++++------------ autogpt_platform/market/pyproject.toml | 12 +-- 2 files changed, 67 insertions(+), 65 deletions(-) diff --git a/autogpt_platform/market/poetry.lock b/autogpt_platform/market/poetry.lock index 8801d1638fe9..ce71016591c7 100644 --- a/autogpt_platform/market/poetry.lock +++ b/autogpt_platform/market/poetry.lock @@ -52,33 +52,33 @@ url = "../autogpt_libs" [[package]] name = "black" -version = "24.8.0" +version = "24.10.0" description = "The uncompromising code formatter." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, - {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, - {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, - {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, - {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, - {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, - {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, - {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, - {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, - {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, - {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, - {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, - {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, - {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, - {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, - {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, - {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, - {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, - {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, - {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, - {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, - {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, + {file = "black-24.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6668650ea4b685440857138e5fe40cde4d652633b1bdffc62933d0db4ed9812"}, + {file = "black-24.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1c536fcf674217e87b8cc3657b81809d3c085d7bf3ef262ead700da345bfa6ea"}, + {file = "black-24.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:649fff99a20bd06c6f727d2a27f401331dc0cc861fb69cde910fe95b01b5928f"}, + {file = "black-24.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe4d6476887de70546212c99ac9bd803d90b42fc4767f058a0baa895013fbb3e"}, + {file = "black-24.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5a2221696a8224e335c28816a9d331a6c2ae15a2ee34ec857dcf3e45dbfa99ad"}, + {file = "black-24.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9da3333530dbcecc1be13e69c250ed8dfa67f43c4005fb537bb426e19200d50"}, + {file = "black-24.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4007b1393d902b48b36958a216c20c4482f601569d19ed1df294a496eb366392"}, + {file = "black-24.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:394d4ddc64782e51153eadcaaca95144ac4c35e27ef9b0a42e121ae7e57a9175"}, + {file = "black-24.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b5e39e0fae001df40f95bd8cc36b9165c5e2ea88900167bddf258bacef9bbdc3"}, + {file = "black-24.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d37d422772111794b26757c5b55a3eade028aa3fde43121ab7b673d050949d65"}, + {file = "black-24.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14b3502784f09ce2443830e3133dacf2c0110d45191ed470ecb04d0f5f6fcb0f"}, + {file = "black-24.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:30d2c30dc5139211dda799758559d1b049f7f14c580c409d6ad925b74a4208a8"}, + {file = "black-24.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cbacacb19e922a1d75ef2b6ccaefcd6e93a2c05ede32f06a21386a04cedb981"}, + {file = "black-24.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1f93102e0c5bb3907451063e08b9876dbeac810e7da5a8bfb7aeb5a9ef89066b"}, + {file = "black-24.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ddacb691cdcdf77b96f549cf9591701d8db36b2f19519373d60d31746068dbf2"}, + {file = "black-24.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:680359d932801c76d2e9c9068d05c6b107f2584b2a5b88831c83962eb9984c1b"}, + {file = "black-24.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:17374989640fbca88b6a448129cd1745c5eb8d9547b464f281b251dd00155ccd"}, + {file = "black-24.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:63f626344343083322233f175aaf372d326de8436f5928c042639a4afbbf1d3f"}, + {file = "black-24.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfa1d0cb6200857f1923b602f978386a3a2758a65b52e0950299ea014be6800"}, + {file = "black-24.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cd9c95431d94adc56600710f8813ee27eea544dd118d45896bb734e9d7a0dc7"}, + {file = "black-24.10.0-py3-none-any.whl", hash = "sha256:3bb2b7a1f7b685f85b11fed1ef10f8a9148bceb49853e47a294a3dd963c1dd7d"}, + {file = "black-24.10.0.tar.gz", hash = "sha256:846ea64c97afe3bc677b761787993be4991810ecc7a4a937816dd6bddedc4875"}, ] [package.dependencies] @@ -92,7 +92,7 @@ typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] -d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] +d = ["aiohttp (>=3.10)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] @@ -830,31 +830,33 @@ tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pyright" -version = "1.1.374" +version = "1.1.386" description = "Command line wrapper for pyright" optional = false python-versions = ">=3.7" files = [ - {file = "pyright-1.1.374-py3-none-any.whl", hash = "sha256:55752bcf7a3646d293cd76710a983b71e16f6128aab2d42468e6eb7e46c0a70d"}, - {file = "pyright-1.1.374.tar.gz", hash = "sha256:d01b2daf864ba5e0362e56b844984865970d7204158e61eb685e2dab7804cb82"}, + {file = "pyright-1.1.386-py3-none-any.whl", hash = "sha256:7071ac495593b2258ccdbbf495f1a5c0e5f27951f6b429bed4e8b296eb5cd21d"}, + {file = "pyright-1.1.386.tar.gz", hash = "sha256:8e9975e34948ba5f8e07792a9c9d2bdceb2c6c0b61742b068d2229ca2bc4a9d9"}, ] [package.dependencies] nodeenv = ">=1.6.0" +typing-extensions = ">=4.1" [package.extras] -all = ["twine (>=3.4.1)"] +all = ["nodejs-wheel-binaries", "twine (>=3.4.1)"] dev = ["twine (>=3.4.1)"] +nodejs = ["nodejs-wheel-binaries"] [[package]] name = "pytest" -version = "8.3.2" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"}, - {file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] @@ -870,17 +872,17 @@ dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments [[package]] name = "pytest-asyncio" -version = "0.23.8" +version = "0.24.0" description = "Pytest support for asyncio" optional = false python-versions = ">=3.8" files = [ - {file = "pytest_asyncio-0.23.8-py3-none-any.whl", hash = "sha256:50265d892689a5faefb84df80819d1ecef566eb3549cf915dfb33569359d1ce2"}, - {file = "pytest_asyncio-0.23.8.tar.gz", hash = "sha256:759b10b33a6dc61cce40a8bd5205e302978bbbcc00e279a8b61d9a6a3c82e4d3"}, + {file = "pytest_asyncio-0.24.0-py3-none-any.whl", hash = "sha256:a811296ed596b69bf0b6f3dc40f83bcaf341b155a269052d82efa2b25ac7037b"}, + {file = "pytest_asyncio-0.24.0.tar.gz", hash = "sha256:d081d828e576d85f875399194281e92bf8a68d60d72d1a2faf2feddb6c46b276"}, ] [package.dependencies] -pytest = ">=7.0.0,<9" +pytest = ">=8.2,<9" [package.extras] docs = ["sphinx (>=5.3)", "sphinx-rtd-theme (>=1.0)"] @@ -888,13 +890,13 @@ testing = ["coverage (>=6.2)", "hypothesis (>=5.7.1)"] [[package]] name = "pytest-watcher" -version = "0.4.2" +version = "0.4.3" description = "Automatically rerun your tests on file modifications" optional = false python-versions = "<4.0.0,>=3.7.0" files = [ - {file = "pytest_watcher-0.4.2-py3-none-any.whl", hash = "sha256:a43949ba67dd8d7e1fd0de5eea44a999081f0aec9f93b4e744264b4c6a3d9bbe"}, - {file = "pytest_watcher-0.4.2.tar.gz", hash = "sha256:7b292f025ca19617cd7567c228c6187b5087f2da9e4d2cf6e144e5764a0471b0"}, + {file = "pytest_watcher-0.4.3-py3-none-any.whl", hash = "sha256:d59b1e1396f33a65ea4949b713d6884637755d641646960056a90b267c3460f9"}, + {file = "pytest_watcher-0.4.3.tar.gz", hash = "sha256:0cb0e4661648c8c0ff2b2d25efa5a8e421784b9e4c60fcecbf9b7c30b2d731b3"}, ] [package.dependencies] @@ -1057,29 +1059,29 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "ruff" -version = "0.5.6" +version = "0.7.1" description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.5.6-py3-none-linux_armv6l.whl", hash = "sha256:a0ef5930799a05522985b9cec8290b185952f3fcd86c1772c3bdbd732667fdcd"}, - {file = "ruff-0.5.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b652dc14f6ef5d1552821e006f747802cc32d98d5509349e168f6bf0ee9f8f42"}, - {file = "ruff-0.5.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:80521b88d26a45e871f31e4b88938fd87db7011bb961d8afd2664982dfc3641a"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9bc8f328a9f1309ae80e4d392836e7dbc77303b38ed4a7112699e63d3b066ab"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4d394940f61f7720ad371ddedf14722ee1d6250fd8d020f5ea5a86e7be217daf"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111a99cdb02f69ddb2571e2756e017a1496c2c3a2aeefe7b988ddab38b416d36"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:e395daba77a79f6dc0d07311f94cc0560375ca20c06f354c7c99af3bf4560c5d"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c476acb43c3c51e3c614a2e878ee1589655fa02dab19fe2db0423a06d6a5b1b6"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2ff8003f5252fd68425fd53d27c1f08b201d7ed714bb31a55c9ac1d4c13e2eb"}, - {file = "ruff-0.5.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c94e084ba3eaa80c2172918c2ca2eb2230c3f15925f4ed8b6297260c6ef179ad"}, - {file = "ruff-0.5.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1f77c1c3aa0669fb230b06fb24ffa3e879391a3ba3f15e3d633a752da5a3e670"}, - {file = "ruff-0.5.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f908148c93c02873210a52cad75a6eda856b2cbb72250370ce3afef6fb99b1ed"}, - {file = "ruff-0.5.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:563a7ae61ad284187d3071d9041c08019975693ff655438d8d4be26e492760bd"}, - {file = "ruff-0.5.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:94fe60869bfbf0521e04fd62b74cbca21cbc5beb67cbb75ab33fe8c174f54414"}, - {file = "ruff-0.5.6-py3-none-win32.whl", hash = "sha256:e6a584c1de6f8591c2570e171cc7ce482bb983d49c70ddf014393cd39e9dfaed"}, - {file = "ruff-0.5.6-py3-none-win_amd64.whl", hash = "sha256:d7fe7dccb1a89dc66785d7aa0ac283b2269712d8ed19c63af908fdccca5ccc1a"}, - {file = "ruff-0.5.6-py3-none-win_arm64.whl", hash = "sha256:57c6c0dd997b31b536bff49b9eee5ed3194d60605a4427f735eeb1f9c1b8d264"}, - {file = "ruff-0.5.6.tar.gz", hash = "sha256:07c9e3c2a8e1fe377dd460371c3462671a728c981c3205a5217291422209f642"}, + {file = "ruff-0.7.1-py3-none-linux_armv6l.whl", hash = "sha256:cb1bc5ed9403daa7da05475d615739cc0212e861b7306f314379d958592aaa89"}, + {file = "ruff-0.7.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:27c1c52a8d199a257ff1e5582d078eab7145129aa02721815ca8fa4f9612dc35"}, + {file = "ruff-0.7.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:588a34e1ef2ea55b4ddfec26bbe76bc866e92523d8c6cdec5e8aceefeff02d99"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94fc32f9cdf72dc75c451e5f072758b118ab8100727168a3df58502b43a599ca"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:985818742b833bffa543a84d1cc11b5e6871de1b4e0ac3060a59a2bae3969250"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32f1e8a192e261366c702c5fb2ece9f68d26625f198a25c408861c16dc2dea9c"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:699085bf05819588551b11751eff33e9ca58b1b86a6843e1b082a7de40da1565"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:344cc2b0814047dc8c3a8ff2cd1f3d808bb23c6658db830d25147339d9bf9ea7"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4316bbf69d5a859cc937890c7ac7a6551252b6a01b1d2c97e8fc96e45a7c8b4a"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79d3af9dca4c56043e738a4d6dd1e9444b6d6c10598ac52d146e331eb155a8ad"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:c5c121b46abde94a505175524e51891f829414e093cd8326d6e741ecfc0a9112"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8422104078324ea250886954e48f1373a8fe7de59283d747c3a7eca050b4e378"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:56aad830af8a9db644e80098fe4984a948e2b6fc2e73891538f43bbe478461b8"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:658304f02f68d3a83c998ad8bf91f9b4f53e93e5412b8f2388359d55869727fd"}, + {file = "ruff-0.7.1-py3-none-win32.whl", hash = "sha256:b517a2011333eb7ce2d402652ecaa0ac1a30c114fbbd55c6b8ee466a7f600ee9"}, + {file = "ruff-0.7.1-py3-none-win_amd64.whl", hash = "sha256:f38c41fcde1728736b4eb2b18850f6d1e3eedd9678c914dede554a70d5241307"}, + {file = "ruff-0.7.1-py3-none-win_arm64.whl", hash = "sha256:19aa200ec824c0f36d0c9114c8ec0087082021732979a359d6f3c390a6ff2a37"}, + {file = "ruff-0.7.1.tar.gz", hash = "sha256:9d8a41d4aa2dad1575adb98a82870cf5db5f76b2938cf2206c22c940034a36f4"}, ] [[package]] @@ -1293,4 +1295,4 @@ watchmedo = ["PyYAML (>=3.10)"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "5e9494ca4690f58c633eece2260881d9462f32849d66fa503ec7caba28db7031" +content-hash = "19c9ea01b42caa67bb7fffe4f66c8f208e874886cd97279dfdf1f06dd7e3acf1" diff --git a/autogpt_platform/market/pyproject.toml b/autogpt_platform/market/pyproject.toml index c6c4bc6d3fd1..aff44b0f7c83 100644 --- a/autogpt_platform/market/pyproject.toml +++ b/autogpt_platform/market/pyproject.toml @@ -23,15 +23,15 @@ prometheus-fastapi-instrumentator = "^7.0.0" autogpt-libs = {path = "../autogpt_libs"} [tool.poetry.group.dev.dependencies] -pytest = "^8.2.1" -pytest-asyncio = "^0.23.7" +pytest = "^8.3.3" +pytest-asyncio = "^0.24.0" -pytest-watcher = "^0.4.2" +pytest-watcher = "^0.4.3" requests = "^2.32.3" -ruff = "^0.5.2" -pyright = "^1.1.371" +ruff = "^0.7.1" +pyright = "^1.1.386" isort = "^5.13.2" -black = "^24.4.2" +black = "^24.10.0" [build-system] requires = ["poetry-core"] From 2fa4d8042ce1cef1f6dce1dc67d63c9dd23a8184 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 17:43:36 -0500 Subject: [PATCH 22/42] build(deps): bump helm/chart-testing-action from 2.6.0 to 2.6.1 in the production-dependencies group (#8435) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autogpt-infra-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/platform-autogpt-infra-ci.yml b/.github/workflows/platform-autogpt-infra-ci.yml index 43ea1a2c4f3f..304650a869f1 100644 --- a/.github/workflows/platform-autogpt-infra-ci.yml +++ b/.github/workflows/platform-autogpt-infra-ci.yml @@ -41,7 +41,7 @@ jobs: version: v3.14.4 - name: Set up chart-testing - uses: helm/chart-testing-action@v2.6.0 + uses: helm/chart-testing-action@v2.6.1 - name: Run chart-testing (list-changed) id: list-changed From ca43f71fa866688c84764dd636f95edbd2f0e55b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 22:45:44 +0000 Subject: [PATCH 23/42] build(deps): bump azure/setup-helm from 1 to 4 (#8439) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- .github/workflows/platform-autogpt-infra-ci.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index 15c21760e9df..3a4ad5d79e7a 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -141,7 +141,7 @@ jobs: mv /tmp/.buildx-cache-new /tmp/.buildx-cache - name: Set up Helm - uses: azure/setup-helm@v1 + uses: azure/setup-helm@v4 with: version: v3.4.0 diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 1d24b453d4db..f2ba08e2f9bd 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -145,7 +145,7 @@ jobs: mv /tmp/.buildx-cache-new /tmp/.buildx-cache - name: Set up Helm - uses: azure/setup-helm@v1 + uses: azure/setup-helm@v4 with: version: v3.4.0 diff --git a/.github/workflows/platform-autogpt-infra-ci.yml b/.github/workflows/platform-autogpt-infra-ci.yml index 304650a869f1..b2d34ac0ab72 100644 --- a/.github/workflows/platform-autogpt-infra-ci.yml +++ b/.github/workflows/platform-autogpt-infra-ci.yml @@ -36,7 +36,7 @@ jobs: tflint_changed_only: false - name: Set up Helm - uses: azure/setup-helm@v4.2.0 + uses: azure/setup-helm@v4 with: version: v3.14.4 From 19dc2093dfcba2ebb3aa7ef3efe1f689a0fbd64c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 22:47:52 +0000 Subject: [PATCH 24/42] build(deps): bump docker/setup-buildx-action from 1 to 3 (#8436) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index 3a4ad5d79e7a..2344108d07fe 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -75,7 +75,7 @@ jobs: gcloud auth configure-docker us-east1-docker.pkg.dev - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Cache Docker layers uses: actions/cache@v2 diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index f2ba08e2f9bd..898c6e60630b 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -79,7 +79,7 @@ jobs: gcloud auth configure-docker us-east1-docker.pkg.dev - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Cache Docker layers uses: actions/cache@v2 From 8f5bd407916f833aee4e38091e0e0b66d9a472f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 17:53:14 -0500 Subject: [PATCH 25/42] build(deps): bump google-github-actions/get-gke-credentials from 1 to 2 (#8437) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index 2344108d07fe..d68147bbcd83 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -97,7 +97,7 @@ jobs: echo "market_changed=$MARKET_CHANGED" >> $GITHUB_OUTPUT - name: Get GKE credentials - uses: 'google-github-actions/get-gke-credentials@v1' + uses: 'google-github-actions/get-gke-credentials@v2' with: cluster_name: ${{ env.GKE_CLUSTER }} location: ${{ env.GKE_ZONE }} diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 898c6e60630b..01df5503f927 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -101,7 +101,7 @@ jobs: echo "market_changed=$MARKET_CHANGED" >> $GITHUB_OUTPUT - name: Get GKE credentials - uses: 'google-github-actions/get-gke-credentials@v1' + uses: 'google-github-actions/get-gke-credentials@v2' with: cluster_name: ${{ env.GKE_CLUSTER }} location: ${{ env.GKE_ZONE }} From 8a68516f0b40ac5b508152986f8d36058fa1f6ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 23:08:34 +0000 Subject: [PATCH 26/42] build(deps): bump the production-dependencies group in /autogpt_platform/autogpt_libs with 4 updates (#8432) build(deps): bump the production-dependencies group Bumps the production-dependencies group in /autogpt_platform/autogpt_libs with 4 updates: [google-cloud-logging](https://github.com/googleapis/python-logging), [pydantic](https://github.com/pydantic/pydantic), [pydantic-settings](https://github.com/pydantic/pydantic-settings) and [supabase](https://github.com/supabase/supabase-py). Updates `google-cloud-logging` from 3.11.2 to 3.11.3 - [Release notes](https://github.com/googleapis/python-logging/releases) - [Changelog](https://github.com/googleapis/python-logging/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/python-logging/compare/v3.11.2...v3.11.3) Updates `pydantic` from 2.9.1 to 2.9.2 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.9.1...v2.9.2) Updates `pydantic-settings` from 2.5.2 to 2.6.0 - [Release notes](https://github.com/pydantic/pydantic-settings/releases) - [Commits](https://github.com/pydantic/pydantic-settings/compare/v2.5.2...v2.6.0) Updates `supabase` from 2.7.4 to 2.9.1 - [Release notes](https://github.com/supabase/supabase-py/releases) - [Changelog](https://github.com/supabase/supabase-py/blob/main/CHANGELOG.md) - [Commits](https://github.com/supabase/supabase-py/compare/v2.7.4...v2.9.1) --- updated-dependencies: - dependency-name: google-cloud-logging dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: pydantic dependency-type: direct:production update-type: version-update:semver-patch dependency-group: production-dependencies - dependency-name: pydantic-settings dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies - dependency-name: supabase dependency-type: direct:production update-type: version-update:semver-minor dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/autogpt_libs/poetry.lock | 260 +++++++++---------- autogpt_platform/autogpt_libs/pyproject.toml | 8 +- 2 files changed, 134 insertions(+), 134 deletions(-) diff --git a/autogpt_platform/autogpt_libs/poetry.lock b/autogpt_platform/autogpt_libs/poetry.lock index 1fab0c2c8e3e..2041187ec40a 100644 --- a/autogpt_platform/autogpt_libs/poetry.lock +++ b/autogpt_platform/autogpt_libs/poetry.lock @@ -583,13 +583,13 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)", "grpcio-status (>=1.38.0,<2.0.dev0)"] [[package]] name = "google-cloud-logging" -version = "3.11.2" +version = "3.11.3" description = "Stackdriver Logging API client library" optional = false python-versions = ">=3.7" files = [ - {file = "google_cloud_logging-3.11.2-py2.py3-none-any.whl", hash = "sha256:0a755f04f184fbe77ad608258dc283a032485ebb4d0e2b2501964059ee9c898f"}, - {file = "google_cloud_logging-3.11.2.tar.gz", hash = "sha256:4897441c2b74f6eda9181c23a8817223b6145943314a821d64b729d30766cb2b"}, + {file = "google_cloud_logging-3.11.3-py2.py3-none-any.whl", hash = "sha256:b8ec23f2998f76a58f8492db26a0f4151dd500425c3f08448586b85972f3c494"}, + {file = "google_cloud_logging-3.11.3.tar.gz", hash = "sha256:0a73cd94118875387d4535371d9e9426861edef8e44fba1261e86782d5b8d54f"}, ] [package.dependencies] @@ -626,17 +626,17 @@ grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "gotrue" -version = "2.8.1" +version = "2.9.3" description = "Python Client Library for Supabase Auth" optional = false -python-versions = "<4.0,>=3.8" +python-versions = "<4.0,>=3.9" files = [ - {file = "gotrue-2.8.1-py3-none-any.whl", hash = "sha256:97dff077d71cca629f046c35ba34fae132b69c55fe271651766ddcf6d8132468"}, - {file = "gotrue-2.8.1.tar.gz", hash = "sha256:644d0096c4c390f7e36d9cb05271a7091c01e7dc6d506eb117b8fe8fc48eb8d9"}, + {file = "gotrue-2.9.3-py3-none-any.whl", hash = "sha256:9d2e9c74405d879f4828e0a7b94daf167a6e109c10ae6e5c59a0e21446f6e423"}, + {file = "gotrue-2.9.3.tar.gz", hash = "sha256:051551d80e642bdd2ab42cac78207745d89a2a08f429a1512d82624e675d8255"}, ] [package.dependencies] -httpx = {version = ">=0.24,<0.28", extras = ["http2"]} +httpx = {version = ">=0.26,<0.28", extras = ["http2"]} pydantic = ">=1.10,<3" [[package]] @@ -986,20 +986,20 @@ files = [ [[package]] name = "postgrest" -version = "0.16.11" +version = "0.17.2" description = "PostgREST client for Python. This library provides an ORM interface to PostgREST." optional = false -python-versions = "<4.0,>=3.8" +python-versions = "<4.0,>=3.9" files = [ - {file = "postgrest-0.16.11-py3-none-any.whl", hash = "sha256:22fb6b817ace1f68aa648fd4ce0f56d2786c9260fa4ed2cb9046191231a682b8"}, - {file = "postgrest-0.16.11.tar.gz", hash = "sha256:10af51b4c39e288ad7df2db92d6a61fb3c4683131b40561f473e3de116e83fa5"}, + {file = "postgrest-0.17.2-py3-none-any.whl", hash = "sha256:f7c4f448e5a5e2d4c1dcf192edae9d1007c4261e9a6fb5116783a0046846ece2"}, + {file = "postgrest-0.17.2.tar.gz", hash = "sha256:445cd4e4a191e279492549df0c4e827d32f9d01d0852599bb8a6efb0f07fcf78"}, ] [package.dependencies] deprecation = ">=2.1.0,<3.0.0" -httpx = {version = ">=0.24,<0.28", extras = ["http2"]} +httpx = {version = ">=0.26,<0.28", extras = ["http2"]} pydantic = ">=1.9,<3.0" -strenum = ">=0.4.9,<0.5.0" +strenum = {version = ">=0.4.9,<0.5.0", markers = "python_version < \"3.11\""} [[package]] name = "proto-plus" @@ -1065,18 +1065,18 @@ pyasn1 = ">=0.4.6,<0.7.0" [[package]] name = "pydantic" -version = "2.9.1" +version = "2.9.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.9.1-py3-none-any.whl", hash = "sha256:7aff4db5fdf3cf573d4b3c30926a510a10e19a0774d38fc4967f78beb6deb612"}, - {file = "pydantic-2.9.1.tar.gz", hash = "sha256:1363c7d975c7036df0db2b4a61f2e062fbc0aa5ab5f2772e0ffc7191a4f4bce2"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] annotated-types = ">=0.6.0" -pydantic-core = "2.23.3" +pydantic-core = "2.23.4" typing-extensions = [ {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, {version = ">=4.6.1", markers = "python_version < \"3.13\""}, @@ -1088,100 +1088,100 @@ timezone = ["tzdata"] [[package]] name = "pydantic-core" -version = "2.23.3" +version = "2.23.4" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.23.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7f10a5d1b9281392f1bf507d16ac720e78285dfd635b05737c3911637601bae6"}, - {file = "pydantic_core-2.23.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c09a7885dd33ee8c65266e5aa7fb7e2f23d49d8043f089989726391dd7350c5"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6470b5a1ec4d1c2e9afe928c6cb37eb33381cab99292a708b8cb9aa89e62429b"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9172d2088e27d9a185ea0a6c8cebe227a9139fd90295221d7d495944d2367700"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86fc6c762ca7ac8fbbdff80d61b2c59fb6b7d144aa46e2d54d9e1b7b0e780e01"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0cb80fd5c2df4898693aa841425ea1727b1b6d2167448253077d2a49003e0ed"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03667cec5daf43ac4995cefa8aaf58f99de036204a37b889c24a80927b629cec"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:047531242f8e9c2db733599f1c612925de095e93c9cc0e599e96cf536aaf56ba"}, - {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5499798317fff7f25dbef9347f4451b91ac2a4330c6669821c8202fd354c7bee"}, - {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bbb5e45eab7624440516ee3722a3044b83fff4c0372efe183fd6ba678ff681fe"}, - {file = "pydantic_core-2.23.3-cp310-none-win32.whl", hash = "sha256:8b5b3ed73abb147704a6e9f556d8c5cb078f8c095be4588e669d315e0d11893b"}, - {file = "pydantic_core-2.23.3-cp310-none-win_amd64.whl", hash = "sha256:2b603cde285322758a0279995b5796d64b63060bfbe214b50a3ca23b5cee3e83"}, - {file = "pydantic_core-2.23.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c889fd87e1f1bbeb877c2ee56b63bb297de4636661cc9bbfcf4b34e5e925bc27"}, - {file = "pydantic_core-2.23.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ea85bda3189fb27503af4c45273735bcde3dd31c1ab17d11f37b04877859ef45"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7f7f72f721223f33d3dc98a791666ebc6a91fa023ce63733709f4894a7dc611"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b2b55b0448e9da68f56b696f313949cda1039e8ec7b5d294285335b53104b61"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c24574c7e92e2c56379706b9a3f07c1e0c7f2f87a41b6ee86653100c4ce343e5"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2b05e6ccbee333a8f4b8f4d7c244fdb7a979e90977ad9c51ea31261e2085ce0"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2c409ce1c219c091e47cb03feb3c4ed8c2b8e004efc940da0166aaee8f9d6c8"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d965e8b325f443ed3196db890d85dfebbb09f7384486a77461347f4adb1fa7f8"}, - {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f56af3a420fb1ffaf43ece3ea09c2d27c444e7c40dcb7c6e7cf57aae764f2b48"}, - {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5b01a078dd4f9a52494370af21aa52964e0a96d4862ac64ff7cea06e0f12d2c5"}, - {file = "pydantic_core-2.23.3-cp311-none-win32.whl", hash = "sha256:560e32f0df04ac69b3dd818f71339983f6d1f70eb99d4d1f8e9705fb6c34a5c1"}, - {file = "pydantic_core-2.23.3-cp311-none-win_amd64.whl", hash = "sha256:c744fa100fdea0d000d8bcddee95213d2de2e95b9c12be083370b2072333a0fa"}, - {file = "pydantic_core-2.23.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:e0ec50663feedf64d21bad0809f5857bac1ce91deded203efc4a84b31b2e4305"}, - {file = "pydantic_core-2.23.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db6e6afcb95edbe6b357786684b71008499836e91f2a4a1e55b840955b341dbb"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ccd69edcf49f0875d86942f4418a4e83eb3047f20eb897bffa62a5d419c8fa"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a678c1ac5c5ec5685af0133262103defb427114e62eafeda12f1357a12140162"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01491d8b4d8db9f3391d93b0df60701e644ff0894352947f31fff3e52bd5c801"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fcf31facf2796a2d3b7fe338fe8640aa0166e4e55b4cb108dbfd1058049bf4cb"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7200fd561fb3be06827340da066df4311d0b6b8eb0c2116a110be5245dceb326"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dc1636770a809dee2bd44dd74b89cc80eb41172bcad8af75dd0bc182c2666d4c"}, - {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:67a5def279309f2e23014b608c4150b0c2d323bd7bccd27ff07b001c12c2415c"}, - {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:748bdf985014c6dd3e1e4cc3db90f1c3ecc7246ff5a3cd4ddab20c768b2f1dab"}, - {file = "pydantic_core-2.23.3-cp312-none-win32.whl", hash = "sha256:255ec6dcb899c115f1e2a64bc9ebc24cc0e3ab097775755244f77360d1f3c06c"}, - {file = "pydantic_core-2.23.3-cp312-none-win_amd64.whl", hash = "sha256:40b8441be16c1e940abebed83cd006ddb9e3737a279e339dbd6d31578b802f7b"}, - {file = "pydantic_core-2.23.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6daaf5b1ba1369a22c8b050b643250e3e5efc6a78366d323294aee54953a4d5f"}, - {file = "pydantic_core-2.23.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d015e63b985a78a3d4ccffd3bdf22b7c20b3bbd4b8227809b3e8e75bc37f9cb2"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3fc572d9b5b5cfe13f8e8a6e26271d5d13f80173724b738557a8c7f3a8a3791"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f6bd91345b5163ee7448bee201ed7dd601ca24f43f439109b0212e296eb5b423"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc379c73fd66606628b866f661e8785088afe2adaba78e6bbe80796baf708a63"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbdce4b47592f9e296e19ac31667daed8753c8367ebb34b9a9bd89dacaa299c9"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3cf31edf405a161a0adad83246568647c54404739b614b1ff43dad2b02e6d5"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8e22b477bf90db71c156f89a55bfe4d25177b81fce4aa09294d9e805eec13855"}, - {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0a0137ddf462575d9bce863c4c95bac3493ba8e22f8c28ca94634b4a1d3e2bb4"}, - {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:203171e48946c3164fe7691fc349c79241ff8f28306abd4cad5f4f75ed80bc8d"}, - {file = "pydantic_core-2.23.3-cp313-none-win32.whl", hash = "sha256:76bdab0de4acb3f119c2a4bff740e0c7dc2e6de7692774620f7452ce11ca76c8"}, - {file = "pydantic_core-2.23.3-cp313-none-win_amd64.whl", hash = "sha256:37ba321ac2a46100c578a92e9a6aa33afe9ec99ffa084424291d84e456f490c1"}, - {file = "pydantic_core-2.23.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d063c6b9fed7d992bcbebfc9133f4c24b7a7f215d6b102f3e082b1117cddb72c"}, - {file = "pydantic_core-2.23.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6cb968da9a0746a0cf521b2b5ef25fc5a0bee9b9a1a8214e0a1cfaea5be7e8a4"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edbefe079a520c5984e30e1f1f29325054b59534729c25b874a16a5048028d16"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cbaaf2ef20d282659093913da9d402108203f7cb5955020bd8d1ae5a2325d1c4"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb539d7e5dc4aac345846f290cf504d2fd3c1be26ac4e8b5e4c2b688069ff4cf"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6f33503c5495059148cc486867e1d24ca35df5fc064686e631e314d959ad5b"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04b07490bc2f6f2717b10c3969e1b830f5720b632f8ae2f3b8b1542394c47a8e"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03795b9e8a5d7fda05f3873efc3f59105e2dcff14231680296b87b80bb327295"}, - {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c483dab0f14b8d3f0df0c6c18d70b21b086f74c87ab03c59250dbf6d3c89baba"}, - {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8b2682038e255e94baf2c473dca914a7460069171ff5cdd4080be18ab8a7fd6e"}, - {file = "pydantic_core-2.23.3-cp38-none-win32.whl", hash = "sha256:f4a57db8966b3a1d1a350012839c6a0099f0898c56512dfade8a1fe5fb278710"}, - {file = "pydantic_core-2.23.3-cp38-none-win_amd64.whl", hash = "sha256:13dd45ba2561603681a2676ca56006d6dee94493f03d5cadc055d2055615c3ea"}, - {file = "pydantic_core-2.23.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82da2f4703894134a9f000e24965df73cc103e31e8c31906cc1ee89fde72cbd8"}, - {file = "pydantic_core-2.23.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd9be0a42de08f4b58a3cc73a123f124f65c24698b95a54c1543065baca8cf0e"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89b731f25c80830c76fdb13705c68fef6a2b6dc494402987c7ea9584fe189f5d"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6de1ec30c4bb94f3a69c9f5f2182baeda5b809f806676675e9ef6b8dc936f28"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb68b41c3fa64587412b104294b9cbb027509dc2f6958446c502638d481525ef"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c3980f2843de5184656aab58698011b42763ccba11c4a8c35936c8dd6c7068c"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94f85614f2cba13f62c3c6481716e4adeae48e1eaa7e8bac379b9d177d93947a"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:510b7fb0a86dc8f10a8bb43bd2f97beb63cffad1203071dc434dac26453955cd"}, - {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1eba2f7ce3e30ee2170410e2171867ea73dbd692433b81a93758ab2de6c64835"}, - {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4b259fd8409ab84b4041b7b3f24dcc41e4696f180b775961ca8142b5b21d0e70"}, - {file = "pydantic_core-2.23.3-cp39-none-win32.whl", hash = "sha256:40d9bd259538dba2f40963286009bf7caf18b5112b19d2b55b09c14dde6db6a7"}, - {file = "pydantic_core-2.23.3-cp39-none-win_amd64.whl", hash = "sha256:5a8cd3074a98ee70173a8633ad3c10e00dcb991ecec57263aacb4095c5efb958"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f399e8657c67313476a121a6944311fab377085ca7f490648c9af97fc732732d"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:6b5547d098c76e1694ba85f05b595720d7c60d342f24d5aad32c3049131fa5c4"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dda0290a6f608504882d9f7650975b4651ff91c85673341789a476b1159f211"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b6e5da855e9c55a0c67f4db8a492bf13d8d3316a59999cfbaf98cc6e401961"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:09e926397f392059ce0afdcac920df29d9c833256354d0c55f1584b0b70cf07e"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:87cfa0ed6b8c5bd6ae8b66de941cece179281239d482f363814d2b986b79cedc"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e61328920154b6a44d98cabcb709f10e8b74276bc709c9a513a8c37a18786cc4"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce3317d155628301d649fe5e16a99528d5680af4ec7aa70b90b8dacd2d725c9b"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e89513f014c6be0d17b00a9a7c81b1c426f4eb9224b15433f3d98c1a071f8433"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4f62c1c953d7ee375df5eb2e44ad50ce2f5aff931723b398b8bc6f0ac159791a"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2718443bc671c7ac331de4eef9b673063b10af32a0bb385019ad61dcf2cc8f6c"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0d90e08b2727c5d01af1b5ef4121d2f0c99fbee692c762f4d9d0409c9da6541"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b676583fc459c64146debea14ba3af54e540b61762dfc0613dc4e98c3f66eeb"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:50e4661f3337977740fdbfbae084ae5693e505ca2b3130a6d4eb0f2281dc43b8"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:68f4cf373f0de6abfe599a38307f4417c1c867ca381c03df27c873a9069cda25"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:59d52cf01854cb26c46958552a21acb10dd78a52aa34c86f284e66b209db8cab"}, - {file = "pydantic_core-2.23.3.tar.gz", hash = "sha256:3cb0f65d8b4121c1b015c60104a685feb929a29d7cf204387c7f2688c7974690"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, ] [package.dependencies] @@ -1189,13 +1189,13 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pydantic-settings" -version = "2.5.2" +version = "2.6.0" description = "Settings management using Pydantic" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_settings-2.5.2-py3-none-any.whl", hash = "sha256:2c912e55fd5794a59bf8c832b9de832dcfdf4778d79ff79b708744eed499a907"}, - {file = "pydantic_settings-2.5.2.tar.gz", hash = "sha256:f90b139682bee4d2065273d5185d71d37ea46cfe57e1b5ae184fc6a0b2484ca0"}, + {file = "pydantic_settings-2.6.0-py3-none-any.whl", hash = "sha256:4a819166f119b74d7f8c765196b165f95cc7487ce58ea27dec8a5a26be0970e0"}, + {file = "pydantic_settings-2.6.0.tar.gz", hash = "sha256:44a1804abffac9e6a30372bb45f6cafab945ef5af25e66b1c634c01dd39e0188"}, ] [package.dependencies] @@ -1346,17 +1346,17 @@ files = [ [[package]] name = "storage3" -version = "0.7.7" +version = "0.8.2" description = "Supabase Storage client for Python." optional = false -python-versions = "<4.0,>=3.8" +python-versions = "<4.0,>=3.9" files = [ - {file = "storage3-0.7.7-py3-none-any.whl", hash = "sha256:ed80a2546cd0b5c22e2c30ea71096db6c99268daf2958c603488e7d72efb8426"}, - {file = "storage3-0.7.7.tar.gz", hash = "sha256:9fba680cf761d139ad764f43f0e91c245d1ce1af2cc3afe716652f835f48f83e"}, + {file = "storage3-0.8.2-py3-none-any.whl", hash = "sha256:f2e995b18c77a2a9265d1a33047d43e4d6abb11eb3ca5067959f68281c305de3"}, + {file = "storage3-0.8.2.tar.gz", hash = "sha256:db05d3fe8fb73bd30c814c4c4749664f37a5dfc78b629e8c058ef558c2b89f5a"}, ] [package.dependencies] -httpx = {version = ">=0.24,<0.28", extras = ["http2"]} +httpx = {version = ">=0.26,<0.28", extras = ["http2"]} python-dateutil = ">=2.8.2,<3.0.0" typing-extensions = ">=4.2.0,<5.0.0" @@ -1378,36 +1378,36 @@ test = ["pylint", "pytest", "pytest-black", "pytest-cov", "pytest-pylint"] [[package]] name = "supabase" -version = "2.7.4" +version = "2.9.1" description = "Supabase client for Python." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "supabase-2.7.4-py3-none-any.whl", hash = "sha256:01815fbc30cac753933d4a44a2529fd13cb7634b56c705c65b12a02c8e75982b"}, - {file = "supabase-2.7.4.tar.gz", hash = "sha256:5a979c7711b3c5ce688514fa0afc015780522569494e1a9a9d25d03b7c3d654b"}, + {file = "supabase-2.9.1-py3-none-any.whl", hash = "sha256:a96f857a465712cb551679c1df66ba772c834f861756ce4aa2aa4cb703f6aeb7"}, + {file = "supabase-2.9.1.tar.gz", hash = "sha256:51fce39c9eb50573126dabb342541ec5e1f13e7476938768f4b0ccfdb8c522cd"}, ] [package.dependencies] -gotrue = ">=1.3,<3.0" -httpx = ">=0.24,<0.28" -postgrest = ">=0.14,<0.17.0" +gotrue = ">=2.9.0,<3.0.0" +httpx = ">=0.26,<0.28" +postgrest = ">=0.17.0,<0.18.0" realtime = ">=2.0.0,<3.0.0" -storage3 = ">=0.5.3,<0.8.0" -supafunc = ">=0.3.1,<0.6.0" +storage3 = ">=0.8.0,<0.9.0" +supafunc = ">=0.6.0,<0.7.0" [[package]] name = "supafunc" -version = "0.5.1" +version = "0.6.2" description = "Library for Supabase Functions" optional = false -python-versions = "<4.0,>=3.8" +python-versions = "<4.0,>=3.9" files = [ - {file = "supafunc-0.5.1-py3-none-any.whl", hash = "sha256:b05e99a2b41270211a3f90ec843c04c5f27a5618f2d2d2eb8e07f41eb962a910"}, - {file = "supafunc-0.5.1.tar.gz", hash = "sha256:1ae9dce6bd935939c561650e86abb676af9665ecf5d4ffc1c7ec3c4932c84334"}, + {file = "supafunc-0.6.2-py3-none-any.whl", hash = "sha256:101b30616b0a1ce8cf938eca1df362fa4cf1deacb0271f53ebbd674190fb0da5"}, + {file = "supafunc-0.6.2.tar.gz", hash = "sha256:c7dfa20db7182f7fe4ae436e94e05c06cd7ed98d697fed75d68c7b9792822adc"}, ] [package.dependencies] -httpx = {version = ">=0.24,<0.28", extras = ["http2"]} +httpx = {version = ">=0.26,<0.28", extras = ["http2"]} [[package]] name = "typing-extensions" @@ -1724,4 +1724,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.10,<4.0" -content-hash = "ad9a4c8b399f6480a9f70319d13df810f92f63b532d4e10503d283f0948bed6c" +content-hash = "44af7722ca3d2788fc817129ac43477b71eea9921d51502a63f755cb04e3f254" diff --git a/autogpt_platform/autogpt_libs/pyproject.toml b/autogpt_platform/autogpt_libs/pyproject.toml index 13a4cbcf798b..caf4ac1e354a 100644 --- a/autogpt_platform/autogpt_libs/pyproject.toml +++ b/autogpt_platform/autogpt_libs/pyproject.toml @@ -9,13 +9,13 @@ packages = [{ include = "autogpt_libs" }] [tool.poetry.dependencies] colorama = "^0.4.6" expiringdict = "^1.2.2" -google-cloud-logging = "^3.8.0" -pydantic = "^2.8.2" -pydantic-settings = "^2.5.2" +google-cloud-logging = "^3.11.3" +pydantic = "^2.9.2" +pydantic-settings = "^2.6.0" pyjwt = "^2.8.0" python = ">=3.10,<4.0" python-dotenv = "^1.0.1" -supabase = "^2.7.2" +supabase = "^2.9.1" [tool.poetry.group.dev.dependencies] redis = "^5.0.8" From 1e620fdb1304806be581856fa7dfd80ab9fb381d Mon Sep 17 00:00:00 2001 From: Zamil Majdy Date: Sun, 27 Oct 2024 23:49:33 +0700 Subject: [PATCH 27/42] feat(backend): RedisEventQueue into Pub/Sub (#8387) --- .../backend/backend/data/queue.py | 140 +++++++++++++++--- .../backend/backend/data/redis.py | 46 +++++- .../backend/backend/executor/database.py | 6 +- .../backend/backend/server/ws_api.py | 12 +- .../backend/backend/util/settings.py | 5 + 5 files changed, 170 insertions(+), 39 deletions(-) diff --git a/autogpt_platform/backend/backend/data/queue.py b/autogpt_platform/backend/backend/data/queue.py index dd4b9e16cefb..3b3db57ecd66 100644 --- a/autogpt_platform/backend/backend/data/queue.py +++ b/autogpt_platform/backend/backend/data/queue.py @@ -2,11 +2,18 @@ import logging from abc import ABC, abstractmethod from datetime import datetime +from typing import Any, AsyncGenerator, Generator, Generic, TypeVar + +from pydantic import BaseModel +from redis.asyncio.client import PubSub as AsyncPubSub +from redis.client import PubSub from backend.data import redis from backend.data.execution import ExecutionResult +from backend.util.settings import Config logger = logging.getLogger(__name__) +config = Config() class DateTimeEncoder(json.JSONEncoder): @@ -16,35 +23,122 @@ def default(self, o): return super().default(o) -class AbstractEventQueue(ABC): - @abstractmethod - def put(self, execution_result: ExecutionResult): - pass +M = TypeVar("M", bound=BaseModel) + +class BaseRedisEventBus(Generic[M], ABC): + Model: type[M] + + @property @abstractmethod - def get(self) -> ExecutionResult | None: + def event_bus_name(self) -> str: pass + def _serialize_message(self, item: M, channel_key: str) -> tuple[str, str]: + message = json.dumps(item.model_dump(), cls=DateTimeEncoder) + channel_name = f"{self.event_bus_name}-{channel_key}" + logger.info(f"[{channel_name}] Publishing an event to Redis {message}") + return message, channel_name + + def _deserialize_message(self, msg: Any, channel_key: str) -> M | None: + message_type = "pmessage" if "*" in channel_key else "message" + if msg["type"] != message_type: + return None + try: + data = json.loads(msg["data"]) + logger.info(f"Consuming an event from Redis {data}") + return self.Model(**data) + except Exception as e: + logger.error(f"Failed to parse event result from Redis {msg} {e}") + + def _subscribe( + self, connection: redis.Redis | redis.AsyncRedis, channel_key: str + ) -> tuple[PubSub | AsyncPubSub, str]: + channel_name = f"{self.event_bus_name}-{channel_key}" + pubsub = connection.pubsub() + return pubsub, channel_name -class RedisEventQueue(AbstractEventQueue): - def __init__(self): - self.queue_name = redis.QUEUE_NAME + +class RedisEventBus(BaseRedisEventBus[M], ABC): + Model: type[M] @property - def connection(self): + def connection(self) -> redis.Redis: return redis.get_redis() - def put(self, execution_result: ExecutionResult): - message = json.dumps(execution_result.model_dump(), cls=DateTimeEncoder) - logger.info(f"Putting execution result to Redis {message}") - self.connection.lpush(self.queue_name, message) - - def get(self) -> ExecutionResult | None: - message = self.connection.rpop(self.queue_name) - if message is not None and isinstance(message, (str, bytes, bytearray)): - data = json.loads(message) - logger.info(f"Getting execution result from Redis {data}") - return ExecutionResult(**data) - elif message is not None: - logger.error(f"Failed to get execution result from Redis {message}") - return None + def publish_event(self, event: M, channel_key: str): + message, channel_name = self._serialize_message(event, channel_key) + self.connection.publish(channel_name, message) + + def listen_events(self, channel_key: str) -> Generator[M, None, None]: + pubsub, channel_name = self._subscribe(self.connection, channel_key) + assert isinstance(pubsub, PubSub) + + if "*" in channel_key: + pubsub.psubscribe(channel_name) + else: + pubsub.subscribe(channel_name) + + for message in pubsub.listen(): + if event := self._deserialize_message(message, channel_key): + yield event + + +class AsyncRedisEventBus(BaseRedisEventBus[M], ABC): + Model: type[M] + + @property + async def connection(self) -> redis.AsyncRedis: + return await redis.get_redis_async() + + async def publish_event(self, event: M, channel_key: str): + message, channel_name = self._serialize_message(event, channel_key) + connection = await self.connection + await connection.publish(channel_name, message) + + async def listen_events(self, channel_key: str) -> AsyncGenerator[M, None]: + pubsub, channel_name = self._subscribe(await self.connection, channel_key) + assert isinstance(pubsub, AsyncPubSub) + + if "*" in channel_key: + await pubsub.psubscribe(channel_name) + else: + await pubsub.subscribe(channel_name) + + async for message in pubsub.listen(): + if event := self._deserialize_message(message, channel_key): + yield event + + +class RedisExecutionEventBus(RedisEventBus[ExecutionResult]): + Model = ExecutionResult + + @property + def event_bus_name(self) -> str: + return config.execution_event_bus_name + + def publish(self, res: ExecutionResult): + self.publish_event(res, f"{res.graph_id}-{res.graph_exec_id}") + + def listen( + self, graph_id: str = "*", graph_exec_id: str = "*" + ) -> Generator[ExecutionResult, None, None]: + for execution_result in self.listen_events(f"{graph_id}-{graph_exec_id}"): + yield execution_result + + +class AsyncRedisExecutionEventBus(AsyncRedisEventBus[ExecutionResult]): + Model = ExecutionResult + + @property + def event_bus_name(self) -> str: + return config.execution_event_bus_name + + async def publish(self, res: ExecutionResult): + await self.publish_event(res, f"{res.graph_id}-{res.graph_exec_id}") + + async def listen( + self, graph_id: str = "*", graph_exec_id: str = "*" + ) -> AsyncGenerator[ExecutionResult, None]: + async for execution_result in self.listen_events(f"{graph_id}-{graph_exec_id}"): + yield execution_result diff --git a/autogpt_platform/backend/backend/data/redis.py b/autogpt_platform/backend/backend/data/redis.py index af03a4db275b..36410fe29cb2 100644 --- a/autogpt_platform/backend/backend/data/redis.py +++ b/autogpt_platform/backend/backend/data/redis.py @@ -3,6 +3,7 @@ from dotenv import load_dotenv from redis import Redis +from redis.asyncio import Redis as AsyncRedis from backend.util.retry import conn_retry @@ -11,10 +12,10 @@ HOST = os.getenv("REDIS_HOST", "localhost") PORT = int(os.getenv("REDIS_PORT", "6379")) PASSWORD = os.getenv("REDIS_PASSWORD", "password") -QUEUE_NAME = os.getenv("REDIS_QUEUE", "execution_events") logger = logging.getLogger(__name__) connection: Redis | None = None +connection_async: AsyncRedis | None = None @conn_retry("Redis", "Acquiring connection") @@ -42,7 +43,42 @@ def disconnect(): connection = None -def get_redis() -> Redis: - if not connection: - raise RuntimeError("Redis connection is not established") - return connection +def get_redis(auto_connect: bool = True) -> Redis: + if connection: + return connection + if auto_connect: + return connect() + raise RuntimeError("Redis connection is not established") + + +@conn_retry("AsyncRedis", "Acquiring connection") +async def connect_async() -> AsyncRedis: + global connection_async + if connection_async: + return connection_async + + c = AsyncRedis( + host=HOST, + port=PORT, + password=PASSWORD, + decode_responses=True, + ) + await c.ping() + connection_async = c + return connection_async + + +@conn_retry("AsyncRedis", "Releasing connection") +async def disconnect_async(): + global connection_async + if connection_async: + await connection_async.close() + connection_async = None + + +async def get_redis_async(auto_connect: bool = True) -> AsyncRedis: + if connection_async: + return connection_async + if auto_connect: + return await connect_async() + raise RuntimeError("AsyncRedis connection is not established") diff --git a/autogpt_platform/backend/backend/executor/database.py b/autogpt_platform/backend/backend/executor/database.py index b404ac6ecf17..0d33c28460c1 100644 --- a/autogpt_platform/backend/backend/executor/database.py +++ b/autogpt_platform/backend/backend/executor/database.py @@ -15,7 +15,7 @@ upsert_execution_output, ) from backend.data.graph import get_graph, get_node -from backend.data.queue import RedisEventQueue +from backend.data.queue import RedisExecutionEventBus from backend.data.user import get_user_metadata, update_user_metadata from backend.util.service import AppService, expose from backend.util.settings import Config @@ -30,7 +30,7 @@ def __init__(self): super().__init__() self.use_db = True self.use_redis = True - self.event_queue = RedisEventQueue() + self.event_queue = RedisExecutionEventBus() @classmethod def get_port(cls) -> int: @@ -38,7 +38,7 @@ def get_port(cls) -> int: @expose def send_execution_update(self, execution_result_dict: dict[Any, Any]): - self.event_queue.put(ExecutionResult(**execution_result_dict)) + self.event_queue.publish(ExecutionResult(**execution_result_dict)) @staticmethod def exposed_run_and_wait( diff --git a/autogpt_platform/backend/backend/server/ws_api.py b/autogpt_platform/backend/backend/server/ws_api.py index 8cbda22e1ed1..2800182c2c80 100644 --- a/autogpt_platform/backend/backend/server/ws_api.py +++ b/autogpt_platform/backend/backend/server/ws_api.py @@ -8,7 +8,7 @@ from fastapi.middleware.cors import CORSMiddleware from backend.data import redis -from backend.data.queue import RedisEventQueue +from backend.data.queue import AsyncRedisExecutionEventBus from backend.data.user import DEFAULT_USER_ID from backend.server.conn_manager import ConnectionManager from backend.server.model import ExecutionSubscription, Methods, WsMessage @@ -51,13 +51,9 @@ def get_connection_manager(): async def event_broadcaster(manager: ConnectionManager): try: redis.connect() - event_queue = RedisEventQueue() - while True: - event = event_queue.get() - if event: - await manager.send_execution_result(event) - else: - await asyncio.sleep(0.1) + event_queue = AsyncRedisExecutionEventBus() + async for event in event_queue.listen(): + await manager.send_execution_result(event) except Exception as e: logger.exception(f"Event broadcaster error: {e}") raise diff --git a/autogpt_platform/backend/backend/util/settings.py b/autogpt_platform/backend/backend/util/settings.py index f521bf104f7d..6cca5e5469ff 100644 --- a/autogpt_platform/backend/backend/util/settings.py +++ b/autogpt_platform/backend/backend/util/settings.py @@ -148,6 +148,11 @@ class Config(UpdateTrackingModel["Config"], BaseSettings): description="What environment to behave as: local or cloud", ) + execution_event_bus_name: str = Field( + default="execution_event", + description="Name of the event bus", + ) + backend_cors_allow_origins: List[str] = Field(default_factory=list) @field_validator("backend_cors_allow_origins") From 8938209d0d603dd50746a7d5a3f1c57e5483cb62 Mon Sep 17 00:00:00 2001 From: Zamil Majdy Date: Sun, 27 Oct 2024 23:54:38 +0700 Subject: [PATCH 28/42] fix(backend): Avoid long synchronous call to block FastAPI event-loop (#8429) --- .../store.py | 7 ++--- .../autogpt_libs/autogpt_libs/utils/cache.py | 9 +------ .../backend/backend/executor/scheduler.py | 5 ++-- .../backend/server/integrations/router.py | 12 ++++----- .../backend/backend/server/rest_api.py | 27 +++++++++++++------ .../backend/backend/usecases/block_autogen.py | 2 +- .../backend/usecases/reddit_marketing.py | 2 +- .../backend/backend/usecases/sample.py | 2 +- .../backend/test/executor/test_manager.py | 2 +- 9 files changed, 37 insertions(+), 31 deletions(-) diff --git a/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/store.py b/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/store.py index 787683623313..6a4bb354fc87 100644 --- a/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/store.py +++ b/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/store.py @@ -6,7 +6,7 @@ from redis import Redis from backend.executor.database import DatabaseManager -from autogpt_libs.utils.cache import thread_cached_property +from autogpt_libs.utils.cache import thread_cached from autogpt_libs.utils.synchronize import RedisKeyedMutex from .types import ( @@ -21,8 +21,9 @@ class SupabaseIntegrationCredentialsStore: def __init__(self, redis: "Redis"): self.locks = RedisKeyedMutex(redis) - - @thread_cached_property + + @property + @thread_cached def db_manager(self) -> "DatabaseManager": from backend.executor.database import DatabaseManager from backend.util.service import get_service_client diff --git a/autogpt_platform/autogpt_libs/autogpt_libs/utils/cache.py b/autogpt_platform/autogpt_libs/autogpt_libs/utils/cache.py index b4506dda47b8..9c69da9411e2 100644 --- a/autogpt_platform/autogpt_libs/autogpt_libs/utils/cache.py +++ b/autogpt_platform/autogpt_libs/autogpt_libs/utils/cache.py @@ -1,8 +1,6 @@ +from typing import Callable, TypeVar, ParamSpec import threading -from functools import wraps -from typing import Callable, ParamSpec, TypeVar -T = TypeVar("T") P = ParamSpec("P") R = TypeVar("R") @@ -10,7 +8,6 @@ def thread_cached(func: Callable[P, R]) -> Callable[P, R]: thread_local = threading.local() - @wraps(func) def wrapper(*args: P.args, **kwargs: P.kwargs) -> R: cache = getattr(thread_local, "cache", None) if cache is None: @@ -21,7 +18,3 @@ def wrapper(*args: P.args, **kwargs: P.kwargs) -> R: return cache[key] return wrapper - - -def thread_cached_property(func: Callable[[T], R]) -> property: - return property(thread_cached(func)) diff --git a/autogpt_platform/backend/backend/executor/scheduler.py b/autogpt_platform/backend/backend/executor/scheduler.py index 979631c0585e..5080e16031bf 100644 --- a/autogpt_platform/backend/backend/executor/scheduler.py +++ b/autogpt_platform/backend/backend/executor/scheduler.py @@ -4,7 +4,7 @@ from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.triggers.cron import CronTrigger -from autogpt_libs.utils.cache import thread_cached_property +from autogpt_libs.utils.cache import thread_cached from backend.data.block import BlockInput from backend.data.schedule import ( @@ -37,7 +37,8 @@ def __init__(self, refresh_interval=10): def get_port(cls) -> int: return Config().execution_scheduler_port - @thread_cached_property + @property + @thread_cached def execution_client(self) -> ExecutionManager: return get_service_client(ExecutionManager) diff --git a/autogpt_platform/backend/backend/server/integrations/router.py b/autogpt_platform/backend/backend/server/integrations/router.py index 5163de0b2fa3..1e3d01e0bfc0 100644 --- a/autogpt_platform/backend/backend/server/integrations/router.py +++ b/autogpt_platform/backend/backend/server/integrations/router.py @@ -29,7 +29,7 @@ class LoginResponse(BaseModel): @router.get("/{provider}/login") -async def login( +def login( provider: Annotated[str, Path(title="The provider to initiate an OAuth flow for")], user_id: Annotated[str, Depends(get_user_id)], request: Request, @@ -60,7 +60,7 @@ class CredentialsMetaResponse(BaseModel): @router.post("/{provider}/callback") -async def callback( +def callback( provider: Annotated[str, Path(title="The target provider for this OAuth exchange")], code: Annotated[str, Body(title="Authorization code acquired by user login")], state_token: Annotated[str, Body(title="Anti-CSRF nonce")], @@ -115,7 +115,7 @@ async def callback( @router.get("/{provider}/credentials") -async def list_credentials( +def list_credentials( provider: Annotated[str, Path(title="The provider to list credentials for")], user_id: Annotated[str, Depends(get_user_id)], ) -> list[CredentialsMetaResponse]: @@ -133,7 +133,7 @@ async def list_credentials( @router.get("/{provider}/credentials/{cred_id}") -async def get_credential( +def get_credential( provider: Annotated[str, Path(title="The provider to retrieve credentials for")], cred_id: Annotated[str, Path(title="The ID of the credentials to retrieve")], user_id: Annotated[str, Depends(get_user_id)], @@ -149,7 +149,7 @@ async def get_credential( @router.post("/{provider}/credentials", status_code=201) -async def create_api_key_credentials( +def create_api_key_credentials( user_id: Annotated[str, Depends(get_user_id)], provider: Annotated[str, Path(title="The provider to create credentials for")], api_key: Annotated[str, Body(title="The API key to store")], @@ -184,7 +184,7 @@ class CredentialsDeletionResponse(BaseModel): @router.delete("/{provider}/credentials/{cred_id}") -async def delete_credentials( +def delete_credentials( request: Request, provider: Annotated[str, Path(title="The provider to delete credentials for")], cred_id: Annotated[str, Path(title="The ID of the credentials to delete")], diff --git a/autogpt_platform/backend/backend/server/rest_api.py b/autogpt_platform/backend/backend/server/rest_api.py index f0d922c19686..8c3ed3dcba14 100644 --- a/autogpt_platform/backend/backend/server/rest_api.py +++ b/autogpt_platform/backend/backend/server/rest_api.py @@ -1,3 +1,4 @@ +import asyncio import inspect import logging from collections import defaultdict @@ -7,7 +8,7 @@ import uvicorn from autogpt_libs.auth.middleware import auth_middleware -from autogpt_libs.utils.cache import thread_cached_property +from autogpt_libs.utils.cache import thread_cached from fastapi import APIRouter, Body, Depends, FastAPI, HTTPException, Request from fastapi.middleware.cors import CORSMiddleware from fastapi.responses import JSONResponse @@ -307,11 +308,13 @@ async def wrapper(*args, **kwargs): return wrapper - @thread_cached_property + @property + @thread_cached def execution_manager_client(self) -> ExecutionManager: return get_service_client(ExecutionManager) - @thread_cached_property + @property + @thread_cached def execution_scheduler_client(self) -> ExecutionScheduler: return get_service_client(ExecutionScheduler) @@ -516,7 +519,7 @@ async def set_graph_active_version( user_id=user_id, ) - async def execute_graph( + def execute_graph( self, graph_id: str, node_input: dict[Any, Any], @@ -539,7 +542,9 @@ async def stop_graph_run( 404, detail=f"Agent execution #{graph_exec_id} not found" ) - self.execution_manager_client.cancel_execution(graph_exec_id) + await asyncio.to_thread( + lambda: self.execution_manager_client.cancel_execution(graph_exec_id) + ) # Retrieve & return canceled graph execution in its final state return await execution_db.get_execution_results(graph_exec_id) @@ -614,10 +619,16 @@ async def create_schedule( graph = await graph_db.get_graph(graph_id, user_id=user_id) if not graph: raise HTTPException(status_code=404, detail=f"Graph #{graph_id} not found.") - execution_scheduler = self.execution_scheduler_client + return { - "id": execution_scheduler.add_execution_schedule( - graph_id, graph.version, cron, input_data, user_id=user_id + "id": await asyncio.to_thread( + lambda: self.execution_scheduler_client.add_execution_schedule( + graph_id=graph_id, + graph_version=graph.version, + cron=cron, + input_data=input_data, + user_id=user_id, + ) ) } diff --git a/autogpt_platform/backend/backend/usecases/block_autogen.py b/autogpt_platform/backend/backend/usecases/block_autogen.py index 55fdece6b463..9f5ae435286d 100644 --- a/autogpt_platform/backend/backend/usecases/block_autogen.py +++ b/autogpt_platform/backend/backend/usecases/block_autogen.py @@ -252,7 +252,7 @@ async def block_autogen_agent(): test_user = await create_test_user() test_graph = await create_graph(create_test_graph(), user_id=test_user.id) input_data = {"input": "Write me a block that writes a string into a file."} - response = await server.agent_server.execute_graph( + response = server.agent_server.execute_graph( test_graph.id, input_data, test_user.id ) print(response) diff --git a/autogpt_platform/backend/backend/usecases/reddit_marketing.py b/autogpt_platform/backend/backend/usecases/reddit_marketing.py index 54413b1eef1f..1d297d5bc9ac 100644 --- a/autogpt_platform/backend/backend/usecases/reddit_marketing.py +++ b/autogpt_platform/backend/backend/usecases/reddit_marketing.py @@ -156,7 +156,7 @@ async def reddit_marketing_agent(): test_user = await create_test_user() test_graph = await create_graph(create_test_graph(), user_id=test_user.id) input_data = {"subreddit": "AutoGPT"} - response = await server.agent_server.execute_graph( + response = server.agent_server.execute_graph( test_graph.id, input_data, test_user.id ) print(response) diff --git a/autogpt_platform/backend/backend/usecases/sample.py b/autogpt_platform/backend/backend/usecases/sample.py index 3b4087a5bd54..37fa7407de59 100644 --- a/autogpt_platform/backend/backend/usecases/sample.py +++ b/autogpt_platform/backend/backend/usecases/sample.py @@ -78,7 +78,7 @@ async def sample_agent(): test_user = await create_test_user() test_graph = await create_graph(create_test_graph(), test_user.id) input_data = {"input_1": "Hello", "input_2": "World"} - response = await server.agent_server.execute_graph( + response = server.agent_server.execute_graph( test_graph.id, input_data, test_user.id ) print(response) diff --git a/autogpt_platform/backend/test/executor/test_manager.py b/autogpt_platform/backend/test/executor/test_manager.py index cabb5cad0491..5f5c3c358351 100644 --- a/autogpt_platform/backend/test/executor/test_manager.py +++ b/autogpt_platform/backend/test/executor/test_manager.py @@ -22,7 +22,7 @@ async def execute_graph( num_execs: int = 4, ) -> str: # --- Test adding new executions --- # - response = await agent_server.execute_graph(test_graph.id, input_data, test_user.id) + response = agent_server.execute_graph(test_graph.id, input_data, test_user.id) graph_exec_id = response["id"] # Execution queue should be empty From b2972cc9c6cd0398b73ac0122f38891c5d59d206 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:51:51 +0000 Subject: [PATCH 29/42] fix(ci): Fix the prod workload identity pool defined in the prod yaml (#8456) fix project id --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index d68147bbcd83..99c6ed1b9166 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -62,7 +62,7 @@ jobs: - id: 'auth' uses: 'google-github-actions/auth@v1' with: - workload_identity_provider: 'projects/638488734936/locations/global/workloadIdentityPools/prod-pool/providers/github' + workload_identity_provider: 'projects/1021527134101/locations/global/workloadIdentityPools/prod-pool/providers/github' service_account: 'prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com' token_format: 'access_token' create_credentials_file: true From 525b89461862cfc46a25cccaf55a4db7ad792cc8 Mon Sep 17 00:00:00 2001 From: Aarushi <50577581+aarushik93@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:03:02 +0000 Subject: [PATCH 30/42] feat(platform/frontend) Remove dotenv (#8459) remove dotenv --- autogpt_platform/frontend/next.config.mjs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/autogpt_platform/frontend/next.config.mjs b/autogpt_platform/frontend/next.config.mjs index 2204c43a805d..7dd19b52676a 100644 --- a/autogpt_platform/frontend/next.config.mjs +++ b/autogpt_platform/frontend/next.config.mjs @@ -1,16 +1,7 @@ import { withSentryConfig } from "@sentry/nextjs"; -import dotenv from "dotenv"; - -// Load environment variables -dotenv.config(); /** @type {import('next').NextConfig} */ const nextConfig = { - env: { - NEXT_PUBLIC_AGPT_SERVER_URL: process.env.NEXT_PUBLIC_AGPT_SERVER_URL, - NEXT_PUBLIC_AGPT_MARKETPLACE_URL: - process.env.NEXT_PUBLIC_AGPT_MARKETPLACE_URL, - }, images: { domains: ["images.unsplash.com"], }, From b9551db5164d9a4d2fbc267655ab5001bdd1278e Mon Sep 17 00:00:00 2001 From: Kaitlyn Barnard Date: Mon, 28 Oct 2024 09:21:16 -0700 Subject: [PATCH 31/42] Updating docs nav structure to make Platform first class citizen v2 (#8448) * docs updates * text changes * resolving merge conflicts --------- Co-authored-by: Kaitlyn Barnard Co-authored-by: Toran Bruce Richards --- docs/content/AutoGPT/index.md | 29 - .../configuration/options.md | 0 .../configuration/search.md | 0 .../configuration/voice.md | 0 docs/content/classic/index.md | 142 +++ .../{AutoGPT => classic}/setup/docker.md | 0 .../setup/for-developers.md | 0 .../setup/get-repo-dialog.png | Bin .../{AutoGPT => classic}/setup/index.md | 0 .../{AutoGPT => classic}/share-your-logs.md | 0 docs/content/{AutoGPT => classic}/testing.md | 0 docs/content/{AutoGPT => classic}/usage.md | 0 docs/content/{docs => contribute}/index.md | 0 docs/content/index.md | 148 ++- .../{server => platform}/advanced_setup.md | 4 +- .../blocks/ai_shortform_video_block.md | 0 .../{server => platform}/blocks/basic.md | 0 .../{server => platform}/blocks/blocks.md | 0 .../{server => platform}/blocks/branching.md | 0 .../{server => platform}/blocks/csv.md | 0 .../blocks/decoder_block.md | 0 .../{server => platform}/blocks/discord.md | 0 .../blocks/email_block.md | 0 .../blocks/github/issues.md | 0 .../blocks/github/pull_requests.md | 0 .../blocks/github/repo.md | 0 .../blocks/google/gmail.md | 0 .../blocks/google/sheet.md | 0 .../blocks/google_maps.md | 0 .../{server => platform}/blocks/http.md | 0 .../{server => platform}/blocks/ideogram.md | 0 .../{server => platform}/blocks/iteration.md | 0 .../{server => platform}/blocks/llm.md | 0 .../{server => platform}/blocks/maths.md | 0 .../{server => platform}/blocks/medium.md | 0 .../{server => platform}/blocks/reddit.md | 0 .../blocks/replicate_flux_advanced.md | 0 .../{server => platform}/blocks/rss.md | 0 .../{server => platform}/blocks/sampling.md | 0 .../{server => platform}/blocks/search.md | 0 .../blocks/talking_head.md | 0 .../{server => platform}/blocks/text.md | 0 .../blocks/text_to_speech_block.md | 0 .../blocks/time_blocks.md | 0 .../{server => platform}/blocks/youtube.md | 0 docs/content/{server => platform}/d_id.md | 0 .../setup.md => platform/getting-started.md} | 22 +- .../{server => platform}/new_blocks.md | 864 +++++++++--------- docs/content/{server => platform}/ollama.md | 0 docs/mkdocs.yml | 69 +- docs/overrides/assets/favicon.png | Bin 26841 -> 47680 bytes 51 files changed, 674 insertions(+), 604 deletions(-) delete mode 100644 docs/content/AutoGPT/index.md rename docs/content/{AutoGPT => classic}/configuration/options.md (100%) rename docs/content/{AutoGPT => classic}/configuration/search.md (100%) rename docs/content/{AutoGPT => classic}/configuration/voice.md (100%) create mode 100644 docs/content/classic/index.md rename docs/content/{AutoGPT => classic}/setup/docker.md (100%) rename docs/content/{AutoGPT => classic}/setup/for-developers.md (100%) rename docs/content/{AutoGPT => classic}/setup/get-repo-dialog.png (100%) rename docs/content/{AutoGPT => classic}/setup/index.md (100%) rename docs/content/{AutoGPT => classic}/share-your-logs.md (100%) rename docs/content/{AutoGPT => classic}/testing.md (100%) rename docs/content/{AutoGPT => classic}/usage.md (100%) rename docs/content/{docs => contribute}/index.md (100%) rename docs/content/{server => platform}/advanced_setup.md (86%) rename docs/content/{server => platform}/blocks/ai_shortform_video_block.md (100%) rename docs/content/{server => platform}/blocks/basic.md (100%) rename docs/content/{server => platform}/blocks/blocks.md (100%) rename docs/content/{server => platform}/blocks/branching.md (100%) rename docs/content/{server => platform}/blocks/csv.md (100%) rename docs/content/{server => platform}/blocks/decoder_block.md (100%) rename docs/content/{server => platform}/blocks/discord.md (100%) rename docs/content/{server => platform}/blocks/email_block.md (100%) rename docs/content/{server => platform}/blocks/github/issues.md (100%) rename docs/content/{server => platform}/blocks/github/pull_requests.md (100%) rename docs/content/{server => platform}/blocks/github/repo.md (100%) rename docs/content/{server => platform}/blocks/google/gmail.md (100%) rename docs/content/{server => platform}/blocks/google/sheet.md (100%) rename docs/content/{server => platform}/blocks/google_maps.md (100%) rename docs/content/{server => platform}/blocks/http.md (100%) rename docs/content/{server => platform}/blocks/ideogram.md (100%) rename docs/content/{server => platform}/blocks/iteration.md (100%) rename docs/content/{server => platform}/blocks/llm.md (100%) rename docs/content/{server => platform}/blocks/maths.md (100%) rename docs/content/{server => platform}/blocks/medium.md (100%) rename docs/content/{server => platform}/blocks/reddit.md (100%) rename docs/content/{server => platform}/blocks/replicate_flux_advanced.md (100%) rename docs/content/{server => platform}/blocks/rss.md (100%) rename docs/content/{server => platform}/blocks/sampling.md (100%) rename docs/content/{server => platform}/blocks/search.md (100%) rename docs/content/{server => platform}/blocks/talking_head.md (100%) rename docs/content/{server => platform}/blocks/text.md (100%) rename docs/content/{server => platform}/blocks/text_to_speech_block.md (100%) rename docs/content/{server => platform}/blocks/time_blocks.md (100%) rename docs/content/{server => platform}/blocks/youtube.md (100%) rename docs/content/{server => platform}/d_id.md (100%) rename docs/content/{server/setup.md => platform/getting-started.md} (83%) rename docs/content/{server => platform}/new_blocks.md (98%) rename docs/content/{server => platform}/ollama.md (100%) diff --git a/docs/content/AutoGPT/index.md b/docs/content/AutoGPT/index.md deleted file mode 100644 index 8d541d48891a..000000000000 --- a/docs/content/AutoGPT/index.md +++ /dev/null @@ -1,29 +0,0 @@ -# AutoGPT Agent - -[🔧 **Setup**](setup/index.md) - |  -[💻 **User guide**](./usage.md) - |  -[🐙 **GitHub**](https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt) - -**Location:** `classic/original_autogpt/` in the GitHub repo - -AutoGPT was conceived when OpenAI published their GPT-4 model accompanied by a paper -outlining the advanced reasoning and task-solving abilities of the model. The concept -was (and still is) fairly simple: let an LLM decide what to do over and over, while -feeding the results of its actions back into the prompt. This allows the program to -iteratively and incrementally work towards its objective. - -The fact that this program is able to execute actions on behalf of its user makes -it an **agent**. In the case of AutoGPT, the user still has to authorize every action, -but as the project progresses we'll be able to give the agent more autonomy and only -require consent for select actions. - -AutoGPT is a **generalist agent**, meaning it is not designed with a specific task in -mind. Instead, it is designed to be able to execute a wide range of tasks across many -disciplines, as long as it can be done on a computer. - -## Coming soon -* How does AutoGPT work? -* What can I use AutoGPT for? -* What does the future of AutoGPT look like? diff --git a/docs/content/AutoGPT/configuration/options.md b/docs/content/classic/configuration/options.md similarity index 100% rename from docs/content/AutoGPT/configuration/options.md rename to docs/content/classic/configuration/options.md diff --git a/docs/content/AutoGPT/configuration/search.md b/docs/content/classic/configuration/search.md similarity index 100% rename from docs/content/AutoGPT/configuration/search.md rename to docs/content/classic/configuration/search.md diff --git a/docs/content/AutoGPT/configuration/voice.md b/docs/content/classic/configuration/voice.md similarity index 100% rename from docs/content/AutoGPT/configuration/voice.md rename to docs/content/classic/configuration/voice.md diff --git a/docs/content/classic/index.md b/docs/content/classic/index.md new file mode 100644 index 000000000000..deb794d2c59d --- /dev/null +++ b/docs/content/classic/index.md @@ -0,0 +1,142 @@ +# AutoGPT Agent + +[🔧 **Setup**](setup/index.md) + |  +[💻 **User guide**](./usage.md) + |  +[🐙 **GitHub**](https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt) + +**Location:** `classic/original_autogpt/` in the GitHub repo + +AutoGPT was conceived when OpenAI published their GPT-4 model accompanied by a paper +outlining the advanced reasoning and task-solving abilities of the model. The concept +was (and still is) fairly simple: let an LLM decide what to do over and over, while +feeding the results of its actions back into the prompt. This allows the program to +iteratively and incrementally work towards its objective. + +The fact that this program is able to execute actions on behalf of its user makes +it an **agent**. In the case of AutoGPT, the user still has to authorize every action, +but as the project progresses we'll be able to give the agent more autonomy and only +require consent for select actions. + +AutoGPT is a **generalist agent**, meaning it is not designed with a specific task in +mind. Instead, it is designed to be able to execute a wide range of tasks across many +disciplines, as long as it can be done on a computer. + +## Coming soon +* How does AutoGPT work? +* What can I use AutoGPT for? +* What does the future of AutoGPT look like? + +# AutoGPT Classic Documentation + +Welcome to the AutoGPT Classic Documentation. + +The AutoGPT project consists of four main components: + +- The [Agent](#agent) – also known as just "AutoGPT" +- The [Benchmark](#benchmark) – AKA `agbenchmark` +- The [Forge](#forge) +- The [Frontend](#frontend) + +To tie these together, we also have a [CLI] at the root of the project. + +## 🤖 Agent + +**[📖 About AutoGPT](#autogpt-agent)** + |  +**[🔧 Setup](setup/index.md)** + |  +**[💻 Usage](./usage.md)** + +The heart of AutoGPT, and the project that kicked it all off: a semi-autonomous agent powered by LLMs to execute any task for you*. + +We continue to develop this project with the goal of providing access to AI assistance to the masses, and building the future transparently and together. + +- 💡 **Explore** - See what AI can do and be inspired by a glimpse of the future. + +- 🚀 **Build with us** - We welcome any input, whether it's code or ideas for new features or improvements! Join us on [Discord](https://discord.gg/autogpt) and find out how you can join in on the action. + +* it isn't quite there yet, but that is the ultimate goal that we are still pursuing + +--- + +## 🎯 Benchmark + +**[🗒️ Readme](https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/benchmark/README.md)** + +Measure your agent's performance! The `agbenchmark` can be used with any agent that supports the agent protocol, and the integration with the project's [CLI] makes it even easier to use with AutoGPT and forge-based agents. The benchmark offers a stringent testing environment. Our framework allows for autonomous, objective performance evaluations, ensuring your agents are primed for real-world action. + + + +- 📦 [**`agbenchmark`**](https://pypi.org/project/agbenchmark/) on Pypi + +- 🔌 **Agent Protocol Standardization** - AutoGPT uses the agent protocol from the AI Engineer Foundation to ensure compatibility with many agents, both from within and outside the project. + +--- + +## 🏗️ Forge + +**[📖 Introduction](../forge/get-started.md)** + |  +**[🚀 Quickstart](https://github.com/Significant-Gravitas/AutoGPT/blob/master/QUICKSTART.md)** + + + +Forge your own agent! The Forge is a ready-to-go template for your agent application. All the boilerplate code is already handled, letting you channel all your creativity into the things that set *your* agent apart. + +- 🛠️ **Building with Ease** - We've set the groundwork so you can focus on your agent's personality and capabilities. Comprehensive tutorials are available [here](https://aiedge.medium.com/autogpt-forge-e3de53cc58ec). + +--- + +## 💻 Frontend + +**[🗒️ Readme](https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/frontend/README.md)** + +An easy-to-use and open source frontend for any Agent Protocol-compliant agent. + +- 🎮 **User-Friendly Interface** - Manage your agents effortlessly. + +- 🔄 **Seamless Integration** - Smooth connectivity between your agent and our benchmarking system. + +--- + +## 🔧 CLI +[CLI]: #cli + +The project CLI makes it easy to use all of the components in the repo, separately or +together. To install its dependencies, simply run `./run setup`, and you're ready to go! + +```shell +$ ./run +Usage: cli.py [OPTIONS] COMMAND [ARGS]... + +Options: + --help Show this message and exit. + +Commands: + agent Commands to create, start and stop agents + benchmark Commands to start the benchmark and list tests and categories + setup Installs dependencies needed for your system. +``` + +Common commands: + +* `./run agent start autogpt` – [runs](./usage.md#serve-agent-protocol-mode-with-ui) the AutoGPT agent +* `./run agent create ` – creates a new Forge-based agent project at `agents/` +* `./run benchmark start ` – benchmarks the specified agent + +--- + +🤔 Join the AutoGPT Discord server for any queries: +[discord.gg/autogpt](https://discord.gg/autogpt) + +### Glossary of Terms + +- **Repository**: Space where your project resides. +- **Forking**: Copying a repository under your account. +- **Cloning**: Making a local copy of a repository. +- **Agent**: The AutoGPT you'll create and develop. +- **Benchmarking**: Testing your agent's skills in the Forge. +- **Forge**: The template for building your AutoGPT agent. +- **Frontend**: The UI for tasks, logs, and task history. diff --git a/docs/content/AutoGPT/setup/docker.md b/docs/content/classic/setup/docker.md similarity index 100% rename from docs/content/AutoGPT/setup/docker.md rename to docs/content/classic/setup/docker.md diff --git a/docs/content/AutoGPT/setup/for-developers.md b/docs/content/classic/setup/for-developers.md similarity index 100% rename from docs/content/AutoGPT/setup/for-developers.md rename to docs/content/classic/setup/for-developers.md diff --git a/docs/content/AutoGPT/setup/get-repo-dialog.png b/docs/content/classic/setup/get-repo-dialog.png similarity index 100% rename from docs/content/AutoGPT/setup/get-repo-dialog.png rename to docs/content/classic/setup/get-repo-dialog.png diff --git a/docs/content/AutoGPT/setup/index.md b/docs/content/classic/setup/index.md similarity index 100% rename from docs/content/AutoGPT/setup/index.md rename to docs/content/classic/setup/index.md diff --git a/docs/content/AutoGPT/share-your-logs.md b/docs/content/classic/share-your-logs.md similarity index 100% rename from docs/content/AutoGPT/share-your-logs.md rename to docs/content/classic/share-your-logs.md diff --git a/docs/content/AutoGPT/testing.md b/docs/content/classic/testing.md similarity index 100% rename from docs/content/AutoGPT/testing.md rename to docs/content/classic/testing.md diff --git a/docs/content/AutoGPT/usage.md b/docs/content/classic/usage.md similarity index 100% rename from docs/content/AutoGPT/usage.md rename to docs/content/classic/usage.md diff --git a/docs/content/docs/index.md b/docs/content/contribute/index.md similarity index 100% rename from docs/content/docs/index.md rename to docs/content/contribute/index.md diff --git a/docs/content/index.md b/docs/content/index.md index f04a1a158f8b..243b56ea4193 100644 --- a/docs/content/index.md +++ b/docs/content/index.md @@ -2,126 +2,84 @@ Welcome to the AutoGPT Documentation. -The AutoGPT project consists of four main components: +## What is the AutoGPT Platform? -- The [Server](#server) – known as the "AutoGPT Platform" -- The [Agent](#agent) – also known as just "AutoGPT" -- The [Benchmark](#benchmark) – AKA `agbenchmark` -- The [Forge](#forge) -- The [Frontend](#frontend) +The AutoGPT Platform is a groundbreaking system that revolutionizes AI utilization for businesses and individuals. It enables the creation, deployment, and management of continuous agents that work tirelessly on your behalf, bringing unprecedented efficiency and innovation to your workflows. -To tie these together, we also have a [CLI] at the root of the project. +### Key Features -## 🌐 Server +- **Seamless Integration and Low-Code Workflows**: Rapidly create complex workflows without extensive coding knowledge. +- **Autonomous Operation and Continuous Agents**: Deploy cloud-based assistants that run indefinitely, activating on relevant triggers. +- **Intelligent Automation and Maximum Efficiency**: Streamline workflows by automating repetitive processes. +- **Reliable Performance and Predictable Execution**: Enjoy consistent and dependable long-running processes. - +## Platform Architecture -**[📖 Setup](server/setup.md)** - |  -**[📖 Advanced Setup](server/advanced_setup.md)** - |  -**[📖 Making New Blocks](server/new_blocks.md)** +The AutoGPT Platform consists of two main components: -The server is the backbone of the New AutoGPT project. It provides the infrastructure for the agents to run, and the UI for you to interact with them. It integrates with the Forge, Agent, and a bespoke UI to provide a seamless experience. +### 1. AutoGPT Server ---- +The powerhouse of our platform, containing: -## 🤖 Agent +- **Source Code**: Core logic driving agents and automation processes. +- **Infrastructure**: Robust systems ensuring reliable and scalable performance. +- **Marketplace**: A comprehensive marketplace for pre-built agents. -**[📖 About AutoGPT](AutoGPT/index.md)** - |  -**[🔧 Setup](AutoGPT/setup/index.md)** - |  -**[💻 Usage](AutoGPT/usage.md)** +### 2. AutoGPT Frontend -The heart of AutoGPT, and the project that kicked it all off: a semi-autonomous agent powered by LLMs to execute any task for you*. +The user interface where you interact with the platform: -We continue to develop this project with the goal of providing access to AI assistance to the masses, and building the future transparently and together. +- **Agent Builder**: Design and configure your own AI agents. +- **Workflow Management**: Build, modify, and optimize automation workflows. +- **Deployment Controls**: Manage the lifecycle of your agents. +- **Ready-to-Use Agents**: Select from pre-configured agents. +- **Agent Interaction**: Run and interact with agents through a user-friendly interface. +- **Monitoring and Analytics**: Track agent performance and gain insights. -- 💡 **Explore** - See what AI can do and be inspired by a glimpse of the future. +## Platform Components -- 🚀 **Build with us** - We welcome any input, whether it's code or ideas for new features or improvements! Join us on [Discord](https://discord.gg/autogpt) and find out how you can join in on the action. +### Agents and Workflows -* it isn't quite there yet, but that is the ultimate goal that we are still pursuing +In the platform, you can create highly customized workflows to build agents. An agent is essentially an automated workflow that you design to perform specific tasks or processes. Create customized workflows to build agents for various tasks, including: ---- +- Data processing and analysis +- Task scheduling and management +- Communication and notification systems +- Integration between different software tools +- AI-powered decision making and content generation -## 🎯 Benchmark +### Blocks as Integrations -**[🗒️ Readme](https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/benchmark/README.md)** +Blocks represent actions and are the building blocks of your workflows, including: -Measure your agent's performance! The `agbenchmark` can be used with any agent that supports the agent protocol, and the integration with the project's [CLI] makes it even easier to use with AutoGPT and forge-based agents. The benchmark offers a stringent testing environment. Our framework allows for autonomous, objective performance evaluations, ensuring your agents are primed for real-world action. +- Connections to external services +- Data processing tools +- AI models for various tasks +- Custom scripts or functions +- Conditional logic and decision-making components - +You can learn more under: [Build your own Blocks](platform/new_blocks.md) -- 📦 [**`agbenchmark`**](https://pypi.org/project/agbenchmark/) on Pypi +## Available Language Models -- 🔌 **Agent Protocol Standardization** - AutoGPT uses the agent protocol from the AI Engineer Foundation to ensure compatibility with many agents, both from within and outside the project. +The platform comes pre-integrated with cutting-edge LLM providers: ---- +- OpenAI +- Anthropic +- Groq +- Llama -## 🏗️ Forge +## License Overview -**[📖 Introduction](forge/get-started.md)** - |  -**[🚀 Quickstart](https://github.com/Significant-Gravitas/AutoGPT/blob/master/QUICKSTART.md)** +We've adopted a dual-license approach to balance open collaboration with sustainable development: - +- **MIT License**: The majority of the AutoGPT repository remains under this license. +- **Polyform Shield License**: Applies to the new `autogpt_platform` folder. -Forge your own agent! The Forge is a ready-to-go template for your agent application. All the boilerplate code is already handled, letting you channel all your creativity into the things that set *your* agent apart. +This strategy allows us to share previously closed-source components, fostering a vibrant ecosystem of developers and users. -- 🛠️ **Building with Ease** - We've set the groundwork so you can focus on your agent's personality and capabilities. Comprehensive tutorials are available [here](https://aiedge.medium.com/autogpt-forge-e3de53cc58ec). +## Ready to Get Started? ---- - -## 💻 Frontend - -**[🗒️ Readme](https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/frontend/README.md)** - -An easy-to-use and open source frontend for any Agent Protocol-compliant agent. - -- 🎮 **User-Friendly Interface** - Manage your agents effortlessly. - -- 🔄 **Seamless Integration** - Smooth connectivity between your agent and our benchmarking system. - ---- - -## 🔧 CLI -[CLI]: #cli - -The project CLI makes it easy to use all of the components in the repo, separately or -together. To install its dependencies, simply run `./run setup`, and you're ready to go! - -```shell -$ ./run -Usage: cli.py [OPTIONS] COMMAND [ARGS]... - -Options: - --help Show this message and exit. - -Commands: - agent Commands to create, start and stop agents - benchmark Commands to start the benchmark and list tests and categories - setup Installs dependencies needed for your system. -``` - -Common commands: - -* `./run agent start autogpt` – [runs](./AutoGPT/usage.md#serve-agent-protocol-mode-with-ui) the AutoGPT agent -* `./run agent create ` – creates a new Forge-based agent project at `agents/` -* `./run benchmark start ` – benchmarks the specified agent - ---- - -🤔 Join the AutoGPT Discord server for any queries: -[discord.gg/autogpt](https://discord.gg/autogpt) - -### Glossary of Terms - -- **Repository**: Space where your project resides. -- **Forking**: Copying a repository under your account. -- **Cloning**: Making a local copy of a repository. -- **Agent**: The AutoGPT you'll create and develop. -- **Benchmarking**: Testing your agent's skills in the Forge. -- **Forge**: The template for building your AutoGPT agent. -- **Frontend**: The UI for tasks, logs, and task history. +- Read the [Getting Started docs](https://docs.agpt.co/platform/getting-started/) to self-host +- [Join the waitlist](https://agpt.co/waitlist) for the cloud-hosted beta +- [Contribute](contribute/index.md) \ No newline at end of file diff --git a/docs/content/server/advanced_setup.md b/docs/content/platform/advanced_setup.md similarity index 86% rename from docs/content/server/advanced_setup.md rename to docs/content/platform/advanced_setup.md index 74b63892f961..9bb413b70a51 100644 --- a/docs/content/server/advanced_setup.md +++ b/docs/content/platform/advanced_setup.md @@ -1,10 +1,10 @@ # Advanced Setup -The advanced steps below are intended for people with sysadmin experience. If you are not comfortable with these steps, please refer to the [basic setup guide](setup.md). +The advanced steps below are intended for people with sysadmin experience. If you are not comfortable with these steps, please refer to the [basic setup guide](../platform/getting-started.md). ## Introduction -For the advanced setup, first follow the [basic setup guide](setup.md) to get the server up and running. Once you have the server running, you can follow the steps below to configure the server for your specific needs. +For the advanced setup, first follow the [basic setup guide](../platform/getting-started.md) to get the server up and running. Once you have the server running, you can follow the steps below to configure the server for your specific needs. ## Configuration diff --git a/docs/content/server/blocks/ai_shortform_video_block.md b/docs/content/platform/blocks/ai_shortform_video_block.md similarity index 100% rename from docs/content/server/blocks/ai_shortform_video_block.md rename to docs/content/platform/blocks/ai_shortform_video_block.md diff --git a/docs/content/server/blocks/basic.md b/docs/content/platform/blocks/basic.md similarity index 100% rename from docs/content/server/blocks/basic.md rename to docs/content/platform/blocks/basic.md diff --git a/docs/content/server/blocks/blocks.md b/docs/content/platform/blocks/blocks.md similarity index 100% rename from docs/content/server/blocks/blocks.md rename to docs/content/platform/blocks/blocks.md diff --git a/docs/content/server/blocks/branching.md b/docs/content/platform/blocks/branching.md similarity index 100% rename from docs/content/server/blocks/branching.md rename to docs/content/platform/blocks/branching.md diff --git a/docs/content/server/blocks/csv.md b/docs/content/platform/blocks/csv.md similarity index 100% rename from docs/content/server/blocks/csv.md rename to docs/content/platform/blocks/csv.md diff --git a/docs/content/server/blocks/decoder_block.md b/docs/content/platform/blocks/decoder_block.md similarity index 100% rename from docs/content/server/blocks/decoder_block.md rename to docs/content/platform/blocks/decoder_block.md diff --git a/docs/content/server/blocks/discord.md b/docs/content/platform/blocks/discord.md similarity index 100% rename from docs/content/server/blocks/discord.md rename to docs/content/platform/blocks/discord.md diff --git a/docs/content/server/blocks/email_block.md b/docs/content/platform/blocks/email_block.md similarity index 100% rename from docs/content/server/blocks/email_block.md rename to docs/content/platform/blocks/email_block.md diff --git a/docs/content/server/blocks/github/issues.md b/docs/content/platform/blocks/github/issues.md similarity index 100% rename from docs/content/server/blocks/github/issues.md rename to docs/content/platform/blocks/github/issues.md diff --git a/docs/content/server/blocks/github/pull_requests.md b/docs/content/platform/blocks/github/pull_requests.md similarity index 100% rename from docs/content/server/blocks/github/pull_requests.md rename to docs/content/platform/blocks/github/pull_requests.md diff --git a/docs/content/server/blocks/github/repo.md b/docs/content/platform/blocks/github/repo.md similarity index 100% rename from docs/content/server/blocks/github/repo.md rename to docs/content/platform/blocks/github/repo.md diff --git a/docs/content/server/blocks/google/gmail.md b/docs/content/platform/blocks/google/gmail.md similarity index 100% rename from docs/content/server/blocks/google/gmail.md rename to docs/content/platform/blocks/google/gmail.md diff --git a/docs/content/server/blocks/google/sheet.md b/docs/content/platform/blocks/google/sheet.md similarity index 100% rename from docs/content/server/blocks/google/sheet.md rename to docs/content/platform/blocks/google/sheet.md diff --git a/docs/content/server/blocks/google_maps.md b/docs/content/platform/blocks/google_maps.md similarity index 100% rename from docs/content/server/blocks/google_maps.md rename to docs/content/platform/blocks/google_maps.md diff --git a/docs/content/server/blocks/http.md b/docs/content/platform/blocks/http.md similarity index 100% rename from docs/content/server/blocks/http.md rename to docs/content/platform/blocks/http.md diff --git a/docs/content/server/blocks/ideogram.md b/docs/content/platform/blocks/ideogram.md similarity index 100% rename from docs/content/server/blocks/ideogram.md rename to docs/content/platform/blocks/ideogram.md diff --git a/docs/content/server/blocks/iteration.md b/docs/content/platform/blocks/iteration.md similarity index 100% rename from docs/content/server/blocks/iteration.md rename to docs/content/platform/blocks/iteration.md diff --git a/docs/content/server/blocks/llm.md b/docs/content/platform/blocks/llm.md similarity index 100% rename from docs/content/server/blocks/llm.md rename to docs/content/platform/blocks/llm.md diff --git a/docs/content/server/blocks/maths.md b/docs/content/platform/blocks/maths.md similarity index 100% rename from docs/content/server/blocks/maths.md rename to docs/content/platform/blocks/maths.md diff --git a/docs/content/server/blocks/medium.md b/docs/content/platform/blocks/medium.md similarity index 100% rename from docs/content/server/blocks/medium.md rename to docs/content/platform/blocks/medium.md diff --git a/docs/content/server/blocks/reddit.md b/docs/content/platform/blocks/reddit.md similarity index 100% rename from docs/content/server/blocks/reddit.md rename to docs/content/platform/blocks/reddit.md diff --git a/docs/content/server/blocks/replicate_flux_advanced.md b/docs/content/platform/blocks/replicate_flux_advanced.md similarity index 100% rename from docs/content/server/blocks/replicate_flux_advanced.md rename to docs/content/platform/blocks/replicate_flux_advanced.md diff --git a/docs/content/server/blocks/rss.md b/docs/content/platform/blocks/rss.md similarity index 100% rename from docs/content/server/blocks/rss.md rename to docs/content/platform/blocks/rss.md diff --git a/docs/content/server/blocks/sampling.md b/docs/content/platform/blocks/sampling.md similarity index 100% rename from docs/content/server/blocks/sampling.md rename to docs/content/platform/blocks/sampling.md diff --git a/docs/content/server/blocks/search.md b/docs/content/platform/blocks/search.md similarity index 100% rename from docs/content/server/blocks/search.md rename to docs/content/platform/blocks/search.md diff --git a/docs/content/server/blocks/talking_head.md b/docs/content/platform/blocks/talking_head.md similarity index 100% rename from docs/content/server/blocks/talking_head.md rename to docs/content/platform/blocks/talking_head.md diff --git a/docs/content/server/blocks/text.md b/docs/content/platform/blocks/text.md similarity index 100% rename from docs/content/server/blocks/text.md rename to docs/content/platform/blocks/text.md diff --git a/docs/content/server/blocks/text_to_speech_block.md b/docs/content/platform/blocks/text_to_speech_block.md similarity index 100% rename from docs/content/server/blocks/text_to_speech_block.md rename to docs/content/platform/blocks/text_to_speech_block.md diff --git a/docs/content/server/blocks/time_blocks.md b/docs/content/platform/blocks/time_blocks.md similarity index 100% rename from docs/content/server/blocks/time_blocks.md rename to docs/content/platform/blocks/time_blocks.md diff --git a/docs/content/server/blocks/youtube.md b/docs/content/platform/blocks/youtube.md similarity index 100% rename from docs/content/server/blocks/youtube.md rename to docs/content/platform/blocks/youtube.md diff --git a/docs/content/server/d_id.md b/docs/content/platform/d_id.md similarity index 100% rename from docs/content/server/d_id.md rename to docs/content/platform/d_id.md diff --git a/docs/content/server/setup.md b/docs/content/platform/getting-started.md similarity index 83% rename from docs/content/server/setup.md rename to docs/content/platform/getting-started.md index d6ffa7842258..bbb9278bc7a0 100644 --- a/docs/content/server/setup.md +++ b/docs/content/platform/getting-started.md @@ -1,7 +1,8 @@ -# Setting up the server +# Getting Started with AutoGPT: Self-Hosting Guide -- [Introduction](#introduction) -- [Prerequisites](#prerequisites) +This tutorial will walk you through the process of setting up AutoGPT locally on your machine. + +
## Introduction @@ -22,7 +23,7 @@ To setup the server, you need to have the following installed: - [Docker](https://docs.docker.com/get-docker/) - [Git](https://git-scm.com/downloads) -### Checking if you have Node.js & NPM installed +#### Checking if you have Node.js & NPM installed We use Node.js to run our frontend application. @@ -41,7 +42,7 @@ npm -v Once you have Node.js installed, you can proceed to the next step. -### Checking if you have Docker & Docker Compose installed +#### Checking if you have Docker & Docker Compose installed Docker containerizes applications, while Docker Compose orchestrates multi-container Docker applications. @@ -60,7 +61,7 @@ docker-compose -v Once you have Docker and Docker Compose installed, you can proceed to the next step. -## Cloning the Repository +### Cloning the Repository The first step is cloning the AutoGPT repository to your computer. To do this, open a terminal window in a folder on your computer and run: ``` @@ -70,7 +71,7 @@ If you get stuck, follow [this guide](https://docs.github.com/en/repositories/cr Once that's complete you can close this terminal window. -## Running the backend services +### Running the backend services To run the backend services, follow these steps: @@ -94,7 +95,7 @@ To run the backend services, follow these steps: This command will start all the necessary backend services defined in the `docker-compose.combined.yml` file in detached mode. -## Running the frontend application +### Running the frontend application To run the frontend application, follow these steps: @@ -116,11 +117,12 @@ To run the frontend application, follow these steps: ``` This command will install the necessary dependencies and start the frontend application in development mode. -## Checking if the application is running +### Checking if the application is running You can check if the server is running by visiting [http://localhost:3000](http://localhost:3000) in your browser. -### Notes: +**Notes:** + By default the application for different services run on the following ports: Frontend UI Server: 3000 diff --git a/docs/content/server/new_blocks.md b/docs/content/platform/new_blocks.md similarity index 98% rename from docs/content/server/new_blocks.md rename to docs/content/platform/new_blocks.md index 1c7c3684cf7f..32ccd5b7404d 100644 --- a/docs/content/server/new_blocks.md +++ b/docs/content/platform/new_blocks.md @@ -1,432 +1,432 @@ -# Contributing to AutoGPT Agent Server: Creating and Testing Blocks - -This guide will walk you through the process of creating and testing a new block for the AutoGPT Agent Server, using the WikipediaSummaryBlock as an example. - -## Understanding Blocks and Testing - -Blocks are reusable components that can be connected to form a graph representing an agent's behavior. Each block has inputs, outputs, and a specific function. Proper testing is crucial to ensure blocks work correctly and consistently. - -## Creating and Testing a New Block - -Follow these steps to create and test a new block: - -1. **Create a new Python file** in the `backend/blocks` directory. Name it descriptively and use snake_case. For example: `get_wikipedia_summary.py`. - -2. **Import necessary modules and create a class that inherits from `Block`**. Make sure to include all necessary imports for your block. - - Every block should contain the following: - - ```python - from backend.data.block import Block, BlockSchema, BlockOutput - ``` - - Example for the Wikipedia summary block: - - ```python - from backend.data.block import Block, BlockSchema, BlockOutput - from backend.utils.get_request import GetRequest - import requests - - class WikipediaSummaryBlock(Block, GetRequest): - # Block implementation will go here - ``` - -3. **Define the input and output schemas** using `BlockSchema`. These schemas specify the data structure that the block expects to receive (input) and produce (output). - - - The input schema defines the structure of the data the block will process. Each field in the schema represents a required piece of input data. - - The output schema defines the structure of the data the block will return after processing. Each field in the schema represents a piece of output data. - - Example: - - ```python - class Input(BlockSchema): - topic: str # The topic to get the Wikipedia summary for - - class Output(BlockSchema): - summary: str # The summary of the topic from Wikipedia - error: str # Any error message if the request fails, error field needs to be named `error`. - ``` - -4. **Implement the `__init__` method, including test data and mocks:** - - !!! important - Use UUID generator (e.g. https://www.uuidgenerator.net/) for every new block `id` and *do not* make up your own. Alternatively, you can run this python code to generate an uuid: `print(__import__('uuid').uuid4())` - - ```python - def __init__(self): - super().__init__( - # Unique ID for the block, used across users for templates - # If you are an AI leave it as is or change to "generate-proper-uuid" - id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", - input_schema=WikipediaSummaryBlock.Input, # Assign input schema - output_schema=WikipediaSummaryBlock.Output, # Assign output schema - - # Provide sample input, output and test mock for testing the block - - test_input={"topic": "Artificial Intelligence"}, - test_output=("summary", "summary content"), - test_mock={"get_request": lambda url, json: {"extract": "summary content"}}, - ) - ``` - - - `id`: A unique identifier for the block. - - - `input_schema` and `output_schema`: Define the structure of the input and output data. - - Let's break down the testing components: - - - `test_input`: This is a sample input that will be used to test the block. It should be a valid input according to your Input schema. - - - `test_output`: This is the expected output when running the block with the `test_input`. It should match your Output schema. For non-deterministic outputs or when you only want to assert the type, you can use Python types instead of specific values. In this example, `("summary", str)` asserts that the output key is "summary" and its value is a string. - - - `test_mock`: This is crucial for blocks that make network calls. It provides a mock function that replaces the actual network call during testing. - - In this case, we're mocking the `get_request` method to always return a dictionary with an 'extract' key, simulating a successful API response. This allows us to test the block's logic without making actual network requests, which could be slow, unreliable, or rate-limited. - -5. **Implement the `run` method with error handling:**, this should contain the main logic of the block: - - ```python - def run(self, input_data: Input, **kwargs) -> BlockOutput: - try: - topic = input_data.topic - url = f"https://en.wikipedia.org/api/rest_v1/page/summary/{topic}" - - response = self.get_request(url, json=True) - yield "summary", response['extract'] - - except requests.exceptions.HTTPError as http_err: - raise RuntimeError(f"HTTP error occurred: {http_err}") - ``` - - - **Try block**: Contains the main logic to fetch and process the Wikipedia summary. - - **API request**: Send a GET request to the Wikipedia API. - - **Error handling**: Handle various exceptions that might occur during the API request and data processing. We don't need to catch all exceptions, only the ones we expect and can handle. The uncaught exceptions will be automatically yielded as `error` in the output. Any block that raises an exception (or yields an `error` output) will be marked as failed. Prefer raising exceptions over yielding `error`, as it will stop the execution immediately. - - **Yield**: Use `yield` to output the results. Prefer to output one result object at a time. If you are calling a function that returns a list, you can yield each item in the list separately. You can also yield the whole list as well, but do both rather than yielding the list. For example: If you were writing a block that outputs emails, you'd yield each email as a separate result object, but you could also yield the whole list as an additional single result object. Yielding output named `error` will break the execution right away and mark the block execution as failed. - -### Blocks with authentication - -Our system supports auth offloading for API keys and OAuth2 authorization flows. -Adding a block with API key authentication is straight-forward, as is adding a block -for a service that we already have OAuth2 support for. - -Implementing the block itself is relatively simple. On top of the instructions above, -you're going to add a `credentials` parameter to the `Input` model and the `run` method: - -```python -from autogpt_libs.supabase_integration_credentials_store.types import ( - APIKeyCredentials, - OAuth2Credentials, - Credentials, -) - -from backend.data.block import Block, BlockOutput, BlockSchema -from backend.data.model import CredentialsField - - -# API Key auth: -class BlockWithAPIKeyAuth(Block): - class Input(BlockSchema): - # Note that the type hint below is require or you will get a type error. - # The first argument is the provider name, the second is the credential type. - credentials: CredentialsMetaInput[Literal['github'], Literal['api_key']] = CredentialsField( - provider="github", - supported_credential_types={"api_key"}, - description="The GitHub integration can be used with " - "any API key with sufficient permissions for the blocks it is used on.", - ) - - # ... - - def run( - self, - input_data: Input, - *, - credentials: APIKeyCredentials, - **kwargs, - ) -> BlockOutput: - ... - -# OAuth: -class BlockWithOAuth(Block): - class Input(BlockSchema): - # Note that the type hint below is require or you will get a type error. - # The first argument is the provider name, the second is the credential type. - credentials: CredentialsMetaInput[Literal['github'], Literal['oauth2']] = CredentialsField( - provider="github", - supported_credential_types={"oauth2"}, - required_scopes={"repo"}, - description="The GitHub integration can be used with OAuth.", - ) - - # ... - - def run( - self, - input_data: Input, - *, - credentials: OAuth2Credentials, - **kwargs, - ) -> BlockOutput: - ... - -# API Key auth + OAuth: -class BlockWithAPIKeyAndOAuth(Block): - class Input(BlockSchema): - # Note that the type hint below is require or you will get a type error. - # The first argument is the provider name, the second is the credential type. - credentials: CredentialsMetaInput[Literal['github'], Literal['api_key', 'oauth2']] = CredentialsField( - provider="github", - supported_credential_types={"api_key", "oauth2"}, - required_scopes={"repo"}, - description="The GitHub integration can be used with OAuth, " - "or any API key with sufficient permissions for the blocks it is used on.", - ) - - # ... - - def run( - self, - input_data: Input, - *, - credentials: Credentials, - **kwargs, - ) -> BlockOutput: - ... -``` - -The credentials will be automagically injected by the executor in the back end. - -The `APIKeyCredentials` and `OAuth2Credentials` models are defined [here](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/types.py). -To use them in e.g. an API request, you can either access the token directly: - -```python -# credentials: APIKeyCredentials -response = requests.post( - url, - headers={ - "Authorization": f"Bearer {credentials.api_key.get_secret_value()})", - }, -) - -# credentials: OAuth2Credentials -response = requests.post( - url, - headers={ - "Authorization": f"Bearer {credentials.access_token.get_secret_value()})", - }, -) -``` - -or use the shortcut `credentials.bearer()`: - -```python -# credentials: APIKeyCredentials | OAuth2Credentials -response = requests.post( - url, - headers={"Authorization": credentials.bearer()}, -) -``` - -#### Adding an OAuth2 service integration - -To add support for a new OAuth2-authenticated service, you'll need to add an `OAuthHandler`. -All our existing handlers and the base class can be found [here][OAuth2 handlers]. - -Every handler must implement the following parts of the [`BaseOAuthHandler`] interface: - -```python title="autogpt_platform/backend/backend/integrations/oauth/base.py" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler1" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler2" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler3" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler4" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler5" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler6" -``` - -As you can see, this is modeled after the standard OAuth2 flow. - -Aside from implementing the `OAuthHandler` itself, adding a handler into the system requires two more things: - -- Adding the handler class to `HANDLERS_BY_NAME` under [`integrations/oauth/__init__.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/__init__.py) - -```python title="autogpt_platform/backend/backend/integrations/oauth/__init__.py" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/__init__.py:HANDLERS_BY_NAMEExample" -``` - -- Adding `{provider}_client_id` and `{provider}_client_secret` to the application's `Secrets` under [`util/settings.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/util/settings.py) - -```python title="autogpt_platform/backend/backend/util/settings.py" ---8<-- "autogpt_platform/backend/backend/util/settings.py:OAuthServerCredentialsExample" -``` - -[OAuth2 handlers]: https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt_platform/backend/backend/integrations/oauth -[`BaseOAuthHandler`]: https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/base.py - -#### Adding to the frontend - -You will need to add the provider (api or oauth) to the `CredentialsInput` component in [`frontend/src/components/integrations/credentials-input.tsx`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx). - -```ts title="frontend/src/components/integrations/credentials-input.tsx" ---8<-- "autogpt_platform/frontend/src/components/integrations/credentials-input.tsx:ProviderIconsEmbed" -``` - -You will also need to add the provider to the `CredentialsProvider` component in [`frontend/src/components/integrations/credentials-provider.tsx`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx). - -```ts title="frontend/src/components/integrations/credentials-provider.tsx" ---8<-- "autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx:CredentialsProviderNames" -``` - -Finally you will need to add the provider to the `CredentialsType` enum in [`frontend/src/lib/autogpt-server-api/types.ts`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts). - -```ts title="frontend/src/lib/autogpt-server-api/types.ts" ---8<-- "autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts:BlockIOCredentialsSubSchema" -``` - -#### Example: GitHub integration - -- GitHub blocks with API key + OAuth2 support: [`blocks/github`](https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt_platform/backend/backend/blocks/github/) - -```python title="blocks/github/issues.py" ---8<-- "autogpt_platform/backend/backend/blocks/github/issues.py:GithubCommentBlockExample" -``` - -- GitHub OAuth2 handler: [`integrations/oauth/github.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/github.py) - -```python title="blocks/github/github.py" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/github.py:GithubOAuthHandlerExample" -``` - -#### Example: Google integration - -- Google OAuth2 handler: [`integrations/oauth/google.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/google.py) - -```python title="integrations/oauth/google.py" ---8<-- "autogpt_platform/backend/backend/integrations/oauth/google.py:GoogleOAuthHandlerExample" -``` - -You can see that google has defined a `DEFAULT_SCOPES` variable, this is used to set the scopes that are requested no matter what the user asks for. - -```python title="blocks/google/_auth.py" ---8<-- "autogpt_platform/backend/backend/blocks/google/_auth.py:GoogleOAuthIsConfigured" -``` - -You can also see that `GOOGLE_OAUTH_IS_CONFIGURED` is used to disable the blocks that require OAuth if the oauth is not configured. This is in the `__init__` method of each block. This is because there is no api key fallback for google blocks so we need to make sure that the oauth is configured before we allow the user to use the blocks. - -## Key Points to Remember - -- **Unique ID**: Give your block a unique ID in the **init** method. -- **Input and Output Schemas**: Define clear input and output schemas. -- **Error Handling**: Implement error handling in the `run` method. -- **Output Results**: Use `yield` to output results in the `run` method. -- **Testing**: Provide test input and output in the **init** method for automatic testing. - -## Understanding the Testing Process - -The testing of blocks is handled by `test_block.py`, which does the following: - -1. It calls the block with the provided `test_input`. - If the block has a `credentials` field, `test_credentials` is passed in as well. -2. If a `test_mock` is provided, it temporarily replaces the specified methods with the mock functions. -3. It then asserts that the output matches the `test_output`. - -For the WikipediaSummaryBlock: - -- The test will call the block with the topic "Artificial Intelligence". -- Instead of making a real API call, it will use the mock function, which returns `{"extract": "summary content"}`. -- It will then check if the output key is "summary" and its value is a string. - -This approach allows us to test the block's logic comprehensively without relying on external services, while also accommodating non-deterministic outputs. - -## Tips for Effective Block Testing - -1. **Provide realistic test_input**: Ensure your test input covers typical use cases. - -2. **Define appropriate test_output**: - - - For deterministic outputs, use specific expected values. - - For non-deterministic outputs or when only the type matters, use Python types (e.g., `str`, `int`, `dict`). - - You can mix specific values and types, e.g., `("key1", str), ("key2", 42)`. - -3. **Use test_mock for network calls**: This prevents tests from failing due to network issues or API changes. - -4. **Consider omitting test_mock for blocks without external dependencies**: If your block doesn't make network calls or use external resources, you might not need a mock. - -5. **Consider edge cases**: Include tests for potential error conditions in your `run` method. - -6. **Update tests when changing block behavior**: If you modify your block, ensure the tests are updated accordingly. - -By following these steps, you can create new blocks that extend the functionality of the AutoGPT Agent Server. - -## Blocks we want to see - -Below is a list of blocks that we would like to see implemented in the AutoGPT Agent Server. If you're interested in contributing, feel free to pick one of these blocks or chose your own. - -If you would like to implement one of these blocks, open a pull request and we will start the review process. - -### Consumer Services/Platforms - -- Google sheets - [~~Read/Append~~](https://github.com/Significant-Gravitas/AutoGPT/pull/8236) -- Email - Read/Send with [~~Gmail~~](https://github.com/Significant-Gravitas/AutoGPT/pull/8236), Outlook, Yahoo, Proton, etc -- Calendar - Read/Write with Google Calendar, Outlook Calendar, etc -- Home Assistant - Call Service, Get Status -- Dominos - Order Pizza, Track Order -- Uber - Book Ride, Track Ride -- Notion - Create/Read Page, Create/Append/Read DB -- Google drive - read/write/overwrite file/folder - -### Social Media - -- Twitter - Post, Reply, Get Replies, Get Comments, Get Followers, Get Following, Get Tweets, Get Mentions -- Instagram - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts -- TikTok - Post, Reply, Get Comments, Get Followers, Get Following, Get Videos, Get Mentions, Get Trending Videos -- LinkedIn - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts -- YouTube - Transcribe Videos/Shorts, Post Videos/Shorts, Read/Reply/React to Comments, Update Thumbnails, Update Description, Update Tags, Update Titles, Get Views, Get Likes, Get Dislikes, Get Subscribers, Get Comments, Get Shares, Get Watch Time, Get Revenue, Get Trending Videos, Get Top Videos, Get Top Channels -- Reddit - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts -- Treatwell (and related Platforms) - Book, Cancel, Review, Get Recommendations -- Substack - Read/Subscribe/Unsubscribe, Post/Reply, Get Recommendations -- Discord - Read/Post/Reply, Moderation actions -- GoodReads - Read/Post/Reply, Get Recommendations - -### E-commerce - -- Airbnb - Book, Cancel, Review, Get Recommendations -- Amazon - Order, Track Order, Return, Review, Get Recommendations -- eBay - Order, Track Order, Return, Review, Get Recommendations -- Upwork - Post Jobs, Hire Freelancer, Review Freelancer, Fire Freelancer - -### Business Tools - -- External Agents - Call other agents similar to AutoGPT -- Trello - Create/Read/Update/Delete Cards, Lists, Boards -- Jira - Create/Read/Update/Delete Issues, Projects, Boards -- Linear - Create/Read/Update/Delete Issues, Projects, Boards -- Excel - Read/Write/Update/Delete Rows, Columns, Sheets -- Slack - Read/Post/Reply to Messages, Create Channels, Invite Users -- ERPNext - Create/Read/Update/Delete Invoices, Orders, Customers, Products -- Salesforce - Create/Read/Update/Delete Leads, Opportunities, Accounts -- HubSpot - Create/Read/Update/Delete Contacts, Deals, Companies -- Zendesk - Create/Read/Update/Delete Tickets, Users, Organizations -- Odoo - Create/Read/Update/Delete Sales Orders, Invoices, Customers -- Shopify - Create/Read/Update/Delete Products, Orders, Customers -- WooCommerce - Create/Read/Update/Delete Products, Orders, Customers -- Squarespace - Create/Read/Update/Delete Pages, Products, Orders - -## Agent Templates we want to see - -### Data/Information - -- Summarize top news of today, of this week, this month via Apple News or other large media outlets BBC, TechCrunch, hackernews, etc -- Create, read, and summarize substack newsletters or any newsletters (blog writer vs blog reader) -- Get/read/summarize the most viral Twitter, Instagram, TikTok (general social media accounts) of the day, week, month -- Get/Read any LinkedIn posts or profile that mention AI Agents -- Read/Summarize discord (might not be able to do this because you need access) -- Read / Get most read books in a given month, year, etc from GoodReads or Amazon Books, etc -- Get dates for specific shows across all streaming services - - Suggest/Recommend/Get most watched shows in a given month, year, etc across all streaming platforms -- Data analysis from xlsx data set - - Gather via Excel or Google Sheets data > Sample the data randomly (sample block takes top X, bottom X, randomly, etc) > pass that to LLM Block to generate a script for analysis of the full data > Python block to run the script> making a loop back through LLM Fix Block on error > create chart/visualization (potentially in the code block?) > show the image as output (this may require frontend changes to show) -- Tiktok video search and download - -### Marketing - -- Portfolio site design and enhancements +# Contributing to AutoGPT Agent Server: Creating and Testing Blocks + +This guide will walk you through the process of creating and testing a new block for the AutoGPT Agent Server, using the WikipediaSummaryBlock as an example. + +## Understanding Blocks and Testing + +Blocks are reusable components that can be connected to form a graph representing an agent's behavior. Each block has inputs, outputs, and a specific function. Proper testing is crucial to ensure blocks work correctly and consistently. + +## Creating and Testing a New Block + +Follow these steps to create and test a new block: + +1. **Create a new Python file** in the `backend/blocks` directory. Name it descriptively and use snake_case. For example: `get_wikipedia_summary.py`. + +2. **Import necessary modules and create a class that inherits from `Block`**. Make sure to include all necessary imports for your block. + + Every block should contain the following: + + ```python + from backend.data.block import Block, BlockSchema, BlockOutput + ``` + + Example for the Wikipedia summary block: + + ```python + from backend.data.block import Block, BlockSchema, BlockOutput + from backend.utils.get_request import GetRequest + import requests + + class WikipediaSummaryBlock(Block, GetRequest): + # Block implementation will go here + ``` + +3. **Define the input and output schemas** using `BlockSchema`. These schemas specify the data structure that the block expects to receive (input) and produce (output). + + - The input schema defines the structure of the data the block will process. Each field in the schema represents a required piece of input data. + - The output schema defines the structure of the data the block will return after processing. Each field in the schema represents a piece of output data. + + Example: + + ```python + class Input(BlockSchema): + topic: str # The topic to get the Wikipedia summary for + + class Output(BlockSchema): + summary: str # The summary of the topic from Wikipedia + error: str # Any error message if the request fails, error field needs to be named `error`. + ``` + +4. **Implement the `__init__` method, including test data and mocks:** + + !!! important + Use UUID generator (e.g. https://www.uuidgenerator.net/) for every new block `id` and *do not* make up your own. Alternatively, you can run this python code to generate an uuid: `print(__import__('uuid').uuid4())` + + ```python + def __init__(self): + super().__init__( + # Unique ID for the block, used across users for templates + # If you are an AI leave it as is or change to "generate-proper-uuid" + id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + input_schema=WikipediaSummaryBlock.Input, # Assign input schema + output_schema=WikipediaSummaryBlock.Output, # Assign output schema + + # Provide sample input, output and test mock for testing the block + + test_input={"topic": "Artificial Intelligence"}, + test_output=("summary", "summary content"), + test_mock={"get_request": lambda url, json: {"extract": "summary content"}}, + ) + ``` + + - `id`: A unique identifier for the block. + + - `input_schema` and `output_schema`: Define the structure of the input and output data. + + Let's break down the testing components: + + - `test_input`: This is a sample input that will be used to test the block. It should be a valid input according to your Input schema. + + - `test_output`: This is the expected output when running the block with the `test_input`. It should match your Output schema. For non-deterministic outputs or when you only want to assert the type, you can use Python types instead of specific values. In this example, `("summary", str)` asserts that the output key is "summary" and its value is a string. + + - `test_mock`: This is crucial for blocks that make network calls. It provides a mock function that replaces the actual network call during testing. + + In this case, we're mocking the `get_request` method to always return a dictionary with an 'extract' key, simulating a successful API response. This allows us to test the block's logic without making actual network requests, which could be slow, unreliable, or rate-limited. + +5. **Implement the `run` method with error handling:**, this should contain the main logic of the block: + + ```python + def run(self, input_data: Input, **kwargs) -> BlockOutput: + try: + topic = input_data.topic + url = f"https://en.wikipedia.org/api/rest_v1/page/summary/{topic}" + + response = self.get_request(url, json=True) + yield "summary", response['extract'] + + except requests.exceptions.HTTPError as http_err: + raise RuntimeError(f"HTTP error occurred: {http_err}") + ``` + + - **Try block**: Contains the main logic to fetch and process the Wikipedia summary. + - **API request**: Send a GET request to the Wikipedia API. + - **Error handling**: Handle various exceptions that might occur during the API request and data processing. We don't need to catch all exceptions, only the ones we expect and can handle. The uncaught exceptions will be automatically yielded as `error` in the output. Any block that raises an exception (or yields an `error` output) will be marked as failed. Prefer raising exceptions over yielding `error`, as it will stop the execution immediately. + - **Yield**: Use `yield` to output the results. Prefer to output one result object at a time. If you are calling a function that returns a list, you can yield each item in the list separately. You can also yield the whole list as well, but do both rather than yielding the list. For example: If you were writing a block that outputs emails, you'd yield each email as a separate result object, but you could also yield the whole list as an additional single result object. Yielding output named `error` will break the execution right away and mark the block execution as failed. + +### Blocks with authentication + +Our system supports auth offloading for API keys and OAuth2 authorization flows. +Adding a block with API key authentication is straight-forward, as is adding a block +for a service that we already have OAuth2 support for. + +Implementing the block itself is relatively simple. On top of the instructions above, +you're going to add a `credentials` parameter to the `Input` model and the `run` method: + +```python +from autogpt_libs.supabase_integration_credentials_store.types import ( + APIKeyCredentials, + OAuth2Credentials, + Credentials, +) + +from backend.data.block import Block, BlockOutput, BlockSchema +from backend.data.model import CredentialsField + + +# API Key auth: +class BlockWithAPIKeyAuth(Block): + class Input(BlockSchema): + # Note that the type hint below is require or you will get a type error. + # The first argument is the provider name, the second is the credential type. + credentials: CredentialsMetaInput[Literal['github'], Literal['api_key']] = CredentialsField( + provider="github", + supported_credential_types={"api_key"}, + description="The GitHub integration can be used with " + "any API key with sufficient permissions for the blocks it is used on.", + ) + + # ... + + def run( + self, + input_data: Input, + *, + credentials: APIKeyCredentials, + **kwargs, + ) -> BlockOutput: + ... + +# OAuth: +class BlockWithOAuth(Block): + class Input(BlockSchema): + # Note that the type hint below is require or you will get a type error. + # The first argument is the provider name, the second is the credential type. + credentials: CredentialsMetaInput[Literal['github'], Literal['oauth2']] = CredentialsField( + provider="github", + supported_credential_types={"oauth2"}, + required_scopes={"repo"}, + description="The GitHub integration can be used with OAuth.", + ) + + # ... + + def run( + self, + input_data: Input, + *, + credentials: OAuth2Credentials, + **kwargs, + ) -> BlockOutput: + ... + +# API Key auth + OAuth: +class BlockWithAPIKeyAndOAuth(Block): + class Input(BlockSchema): + # Note that the type hint below is require or you will get a type error. + # The first argument is the provider name, the second is the credential type. + credentials: CredentialsMetaInput[Literal['github'], Literal['api_key', 'oauth2']] = CredentialsField( + provider="github", + supported_credential_types={"api_key", "oauth2"}, + required_scopes={"repo"}, + description="The GitHub integration can be used with OAuth, " + "or any API key with sufficient permissions for the blocks it is used on.", + ) + + # ... + + def run( + self, + input_data: Input, + *, + credentials: Credentials, + **kwargs, + ) -> BlockOutput: + ... +``` + +The credentials will be automagically injected by the executor in the back end. + +The `APIKeyCredentials` and `OAuth2Credentials` models are defined [here](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/types.py). +To use them in e.g. an API request, you can either access the token directly: + +```python +# credentials: APIKeyCredentials +response = requests.post( + url, + headers={ + "Authorization": f"Bearer {credentials.api_key.get_secret_value()})", + }, +) + +# credentials: OAuth2Credentials +response = requests.post( + url, + headers={ + "Authorization": f"Bearer {credentials.access_token.get_secret_value()})", + }, +) +``` + +or use the shortcut `credentials.bearer()`: + +```python +# credentials: APIKeyCredentials | OAuth2Credentials +response = requests.post( + url, + headers={"Authorization": credentials.bearer()}, +) +``` + +#### Adding an OAuth2 service integration + +To add support for a new OAuth2-authenticated service, you'll need to add an `OAuthHandler`. +All our existing handlers and the base class can be found [here][OAuth2 handlers]. + +Every handler must implement the following parts of the [`BaseOAuthHandler`] interface: + +```python title="autogpt_platform/backend/backend/integrations/oauth/base.py" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler1" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler2" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler3" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler4" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler5" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/base.py:BaseOAuthHandler6" +``` + +As you can see, this is modeled after the standard OAuth2 flow. + +Aside from implementing the `OAuthHandler` itself, adding a handler into the system requires two more things: + +- Adding the handler class to `HANDLERS_BY_NAME` under [`integrations/oauth/__init__.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/__init__.py) + +```python title="autogpt_platform/backend/backend/integrations/oauth/__init__.py" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/__init__.py:HANDLERS_BY_NAMEExample" +``` + +- Adding `{provider}_client_id` and `{provider}_client_secret` to the application's `Secrets` under [`util/settings.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/util/settings.py) + +```python title="autogpt_platform/backend/backend/util/settings.py" +--8<-- "autogpt_platform/backend/backend/util/settings.py:OAuthServerCredentialsExample" +``` + +[OAuth2 handlers]: https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt_platform/backend/backend/integrations/oauth +[`BaseOAuthHandler`]: https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/base.py + +#### Adding to the frontend + +You will need to add the provider (api or oauth) to the `CredentialsInput` component in [`frontend/src/components/integrations/credentials-input.tsx`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/components/integrations/credentials-input.tsx). + +```ts title="frontend/src/components/integrations/credentials-input.tsx" +--8<-- "autogpt_platform/frontend/src/components/integrations/credentials-input.tsx:ProviderIconsEmbed" +``` + +You will also need to add the provider to the `CredentialsProvider` component in [`frontend/src/components/integrations/credentials-provider.tsx`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx). + +```ts title="frontend/src/components/integrations/credentials-provider.tsx" +--8<-- "autogpt_platform/frontend/src/components/integrations/credentials-provider.tsx:CredentialsProviderNames" +``` + +Finally you will need to add the provider to the `CredentialsType` enum in [`frontend/src/lib/autogpt-server-api/types.ts`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts). + +```ts title="frontend/src/lib/autogpt-server-api/types.ts" +--8<-- "autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts:BlockIOCredentialsSubSchema" +``` + +#### Example: GitHub integration + +- GitHub blocks with API key + OAuth2 support: [`blocks/github`](https://github.com/Significant-Gravitas/AutoGPT/tree/master/autogpt_platform/backend/backend/blocks/github/) + +```python title="blocks/github/issues.py" +--8<-- "autogpt_platform/backend/backend/blocks/github/issues.py:GithubCommentBlockExample" +``` + +- GitHub OAuth2 handler: [`integrations/oauth/github.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/github.py) + +```python title="blocks/github/github.py" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/github.py:GithubOAuthHandlerExample" +``` + +#### Example: Google integration + +- Google OAuth2 handler: [`integrations/oauth/google.py`](https://github.com/Significant-Gravitas/AutoGPT/blob/master/autogpt_platform/backend/backend/integrations/oauth/google.py) + +```python title="integrations/oauth/google.py" +--8<-- "autogpt_platform/backend/backend/integrations/oauth/google.py:GoogleOAuthHandlerExample" +``` + +You can see that google has defined a `DEFAULT_SCOPES` variable, this is used to set the scopes that are requested no matter what the user asks for. + +```python title="blocks/google/_auth.py" +--8<-- "autogpt_platform/backend/backend/blocks/google/_auth.py:GoogleOAuthIsConfigured" +``` + +You can also see that `GOOGLE_OAUTH_IS_CONFIGURED` is used to disable the blocks that require OAuth if the oauth is not configured. This is in the `__init__` method of each block. This is because there is no api key fallback for google blocks so we need to make sure that the oauth is configured before we allow the user to use the blocks. + +## Key Points to Remember + +- **Unique ID**: Give your block a unique ID in the **init** method. +- **Input and Output Schemas**: Define clear input and output schemas. +- **Error Handling**: Implement error handling in the `run` method. +- **Output Results**: Use `yield` to output results in the `run` method. +- **Testing**: Provide test input and output in the **init** method for automatic testing. + +## Understanding the Testing Process + +The testing of blocks is handled by `test_block.py`, which does the following: + +1. It calls the block with the provided `test_input`. + If the block has a `credentials` field, `test_credentials` is passed in as well. +2. If a `test_mock` is provided, it temporarily replaces the specified methods with the mock functions. +3. It then asserts that the output matches the `test_output`. + +For the WikipediaSummaryBlock: + +- The test will call the block with the topic "Artificial Intelligence". +- Instead of making a real API call, it will use the mock function, which returns `{"extract": "summary content"}`. +- It will then check if the output key is "summary" and its value is a string. + +This approach allows us to test the block's logic comprehensively without relying on external services, while also accommodating non-deterministic outputs. + +## Tips for Effective Block Testing + +1. **Provide realistic test_input**: Ensure your test input covers typical use cases. + +2. **Define appropriate test_output**: + + - For deterministic outputs, use specific expected values. + - For non-deterministic outputs or when only the type matters, use Python types (e.g., `str`, `int`, `dict`). + - You can mix specific values and types, e.g., `("key1", str), ("key2", 42)`. + +3. **Use test_mock for network calls**: This prevents tests from failing due to network issues or API changes. + +4. **Consider omitting test_mock for blocks without external dependencies**: If your block doesn't make network calls or use external resources, you might not need a mock. + +5. **Consider edge cases**: Include tests for potential error conditions in your `run` method. + +6. **Update tests when changing block behavior**: If you modify your block, ensure the tests are updated accordingly. + +By following these steps, you can create new blocks that extend the functionality of the AutoGPT Agent Server. + +## Blocks we want to see + +Below is a list of blocks that we would like to see implemented in the AutoGPT Agent Server. If you're interested in contributing, feel free to pick one of these blocks or chose your own. + +If you would like to implement one of these blocks, open a pull request and we will start the review process. + +### Consumer Services/Platforms + +- Google sheets - [~~Read/Append~~](https://github.com/Significant-Gravitas/AutoGPT/pull/8236) +- Email - Read/Send with [~~Gmail~~](https://github.com/Significant-Gravitas/AutoGPT/pull/8236), Outlook, Yahoo, Proton, etc +- Calendar - Read/Write with Google Calendar, Outlook Calendar, etc +- Home Assistant - Call Service, Get Status +- Dominos - Order Pizza, Track Order +- Uber - Book Ride, Track Ride +- Notion - Create/Read Page, Create/Append/Read DB +- Google drive - read/write/overwrite file/folder + +### Social Media + +- Twitter - Post, Reply, Get Replies, Get Comments, Get Followers, Get Following, Get Tweets, Get Mentions +- Instagram - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts +- TikTok - Post, Reply, Get Comments, Get Followers, Get Following, Get Videos, Get Mentions, Get Trending Videos +- LinkedIn - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts +- YouTube - Transcribe Videos/Shorts, Post Videos/Shorts, Read/Reply/React to Comments, Update Thumbnails, Update Description, Update Tags, Update Titles, Get Views, Get Likes, Get Dislikes, Get Subscribers, Get Comments, Get Shares, Get Watch Time, Get Revenue, Get Trending Videos, Get Top Videos, Get Top Channels +- Reddit - Post, Reply, Get Comments, Get Followers, Get Following, Get Posts, Get Mentions, Get Trending Posts +- Treatwell (and related Platforms) - Book, Cancel, Review, Get Recommendations +- Substack - Read/Subscribe/Unsubscribe, Post/Reply, Get Recommendations +- Discord - Read/Post/Reply, Moderation actions +- GoodReads - Read/Post/Reply, Get Recommendations + +### E-commerce + +- Airbnb - Book, Cancel, Review, Get Recommendations +- Amazon - Order, Track Order, Return, Review, Get Recommendations +- eBay - Order, Track Order, Return, Review, Get Recommendations +- Upwork - Post Jobs, Hire Freelancer, Review Freelancer, Fire Freelancer + +### Business Tools + +- External Agents - Call other agents similar to AutoGPT +- Trello - Create/Read/Update/Delete Cards, Lists, Boards +- Jira - Create/Read/Update/Delete Issues, Projects, Boards +- Linear - Create/Read/Update/Delete Issues, Projects, Boards +- Excel - Read/Write/Update/Delete Rows, Columns, Sheets +- Slack - Read/Post/Reply to Messages, Create Channels, Invite Users +- ERPNext - Create/Read/Update/Delete Invoices, Orders, Customers, Products +- Salesforce - Create/Read/Update/Delete Leads, Opportunities, Accounts +- HubSpot - Create/Read/Update/Delete Contacts, Deals, Companies +- Zendesk - Create/Read/Update/Delete Tickets, Users, Organizations +- Odoo - Create/Read/Update/Delete Sales Orders, Invoices, Customers +- Shopify - Create/Read/Update/Delete Products, Orders, Customers +- WooCommerce - Create/Read/Update/Delete Products, Orders, Customers +- Squarespace - Create/Read/Update/Delete Pages, Products, Orders + +## Agent Templates we want to see + +### Data/Information + +- Summarize top news of today, of this week, this month via Apple News or other large media outlets BBC, TechCrunch, hackernews, etc +- Create, read, and summarize substack newsletters or any newsletters (blog writer vs blog reader) +- Get/read/summarize the most viral Twitter, Instagram, TikTok (general social media accounts) of the day, week, month +- Get/Read any LinkedIn posts or profile that mention AI Agents +- Read/Summarize discord (might not be able to do this because you need access) +- Read / Get most read books in a given month, year, etc from GoodReads or Amazon Books, etc +- Get dates for specific shows across all streaming services + - Suggest/Recommend/Get most watched shows in a given month, year, etc across all streaming platforms +- Data analysis from xlsx data set + - Gather via Excel or Google Sheets data > Sample the data randomly (sample block takes top X, bottom X, randomly, etc) > pass that to LLM Block to generate a script for analysis of the full data > Python block to run the script> making a loop back through LLM Fix Block on error > create chart/visualization (potentially in the code block?) > show the image as output (this may require frontend changes to show) +- Tiktok video search and download + +### Marketing + +- Portfolio site design and enhancements diff --git a/docs/content/server/ollama.md b/docs/content/platform/ollama.md similarity index 100% rename from docs/content/server/ollama.md rename to docs/content/platform/ollama.md diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 9b1d7b6f5e38..2a8d91d22ab7 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -7,49 +7,46 @@ docs_dir: content nav: - Home: index.md - - The AutoGPT Server 🆕: - - Build your own Blocks: server/new_blocks.md - - Setup: server/setup.md - - Advanced Setup: server/advanced_setup.md - - Using Ollama: server/ollama.md - - Using D-ID: server/d_id.md - - Blocks: server/blocks/blocks.md + - The AutoGPT Platform 🆕: + - Getting Started: platform/getting-started.md + - Advanced Setup: platform/advanced_setup.md + - Build your own Blocks: platform/new_blocks.md + - Using Ollama: platform/ollama.md + - Using D-ID: platform/d_id.md + - Blocks: platform/blocks/blocks.md - - AutoGPT Agent: - - Introduction: AutoGPT/index.md + - AutoGPT Classic: + - Introduction: classic/index.md - Setup: - - Setting up AutoGPT: AutoGPT/setup/index.md - - Set up with Docker: AutoGPT/setup/docker.md - - For Developers: AutoGPT/setup/for-developers.md + - Setting up AutoGPT: classic/setup/index.md + - Set up with Docker: classic/setup/docker.md + - For Developers: classic/setup/for-developers.md - Configuration: - - Options: AutoGPT/configuration/options.md - - Search: AutoGPT/configuration/search.md - - Voice: AutoGPT/configuration/voice.md - - Usage: AutoGPT/usage.md + - Options: classic/configuration/options.md + - Search: classic/configuration/search.md + - Voice: classic/configuration/voice.md + - Usage: classic/usage.md - Help us improve AutoGPT: - - Share your debug logs with us: AutoGPT/share-your-logs.md + - Share your debug logs with us: classic/share-your-logs.md - Contribution guide: contributing.md - - Running tests: AutoGPT/testing.md + - Running tests: classic/testing.md - Code of Conduct: code-of-conduct.md + - Benchmark: + - Readme: https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/benchmark/README.md + - Forge: + - Introduction: forge/get-started.md + - Components: + - Introduction: forge/components/introduction.md + - Agents: forge/components/agents.md + - Components: forge/components/components.md + - Protocols: forge/components/protocols.md + - Commands: forge/components/commands.md + - Built in Components: forge/components/built-in-components.md + - Creating Components: forge/components/creating-components.md + - Frontend: + - Readme: https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/frontend/README.md - - Benchmark: - - Readme: https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/benchmark/README.md - - - Forge: - - Introduction: forge/get-started.md - - Components: - - Introduction: forge/components/introduction.md - - Agents: forge/components/agents.md - - Components: forge/components/components.md - - Protocols: forge/components/protocols.md - - Commands: forge/components/commands.md - - Built in Components: forge/components/built-in-components.md - - Creating Components: forge/components/creating-components.md - - - Frontend: - - Readme: https://github.com/Significant-Gravitas/AutoGPT/blob/master/classic/frontend/README.md - - - Docs: docs/index.md + - Contribute: contribute/index.md # - Challenges: # - Introduction: challenges/introduction.md diff --git a/docs/overrides/assets/favicon.png b/docs/overrides/assets/favicon.png index 9c60eea982b46802df3094fc11ca76824631f089..69bded6abf7e60cf2fc41fc9c8c33cfa2f1e918e 100644 GIT binary patch literal 47680 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 JE7G=m{9n8>3@ZQt From 757fb075b1a31e09530ad67250153dcbfa65107b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:16:19 -0500 Subject: [PATCH 32/42] build(deps): bump actions/cache from 2 to 4 (#8467) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index 99c6ed1b9166..d457161b8dd7 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -78,7 +78,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 01df5503f927..9f1e07c52ef5 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -82,7 +82,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} From db0f1fa0ecf1b36136a2e2329da116efd9ed10e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:21:30 -0500 Subject: [PATCH 33/42] build(deps): bump peter-evans/create-pull-request from 6 to 7 (#8470) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/classic-frontend-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/classic-frontend-ci.yml b/.github/workflows/classic-frontend-ci.yml index f84259a262cb..fca919ee2c66 100644 --- a/.github/workflows/classic-frontend-ci.yml +++ b/.github/workflows/classic-frontend-ci.yml @@ -49,7 +49,7 @@ jobs: - name: Create PR ${{ env.BUILD_BRANCH }} -> ${{ github.ref_name }} if: github.event_name == 'push' - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: add-paths: classic/frontend/build/web base: ${{ github.ref_name }} From 456b1e55aace500bb091df8c2ea4e21701a49ab4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:24:01 -0500 Subject: [PATCH 34/42] build(deps): bump google-github-actions/setup-gcloud from 1 to 2 (#8469) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index d457161b8dd7..d49a9e89c6ce 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -68,7 +68,7 @@ jobs: create_credentials_file: true - name: 'Set up Cloud SDK' - uses: 'google-github-actions/setup-gcloud@v1' + uses: 'google-github-actions/setup-gcloud@v2' - name: 'Configure Docker' run: | diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 9f1e07c52ef5..7e03f9f28d1a 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -72,7 +72,7 @@ jobs: create_credentials_file: true - name: 'Set up Cloud SDK' - uses: 'google-github-actions/setup-gcloud@v1' + uses: 'google-github-actions/setup-gcloud@v2' - name: 'Configure Docker' run: | From 7e63a8f94ab9c749154bf6997c8c0979954a9586 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:28:05 +0000 Subject: [PATCH 35/42] build(deps): bump google-github-actions/auth from 1 to 2 (#8468) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/platform-autgpt-deploy-prod.yml | 2 +- .github/workflows/platform-autogpt-deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-autgpt-deploy-prod.yml b/.github/workflows/platform-autgpt-deploy-prod.yml index d49a9e89c6ce..ffd87eacf8ad 100644 --- a/.github/workflows/platform-autgpt-deploy-prod.yml +++ b/.github/workflows/platform-autgpt-deploy-prod.yml @@ -60,7 +60,7 @@ jobs: fetch-depth: 0 - id: 'auth' - uses: 'google-github-actions/auth@v1' + uses: 'google-github-actions/auth@v2' with: workload_identity_provider: 'projects/1021527134101/locations/global/workloadIdentityPools/prod-pool/providers/github' service_account: 'prod-github-actions-sa@agpt-prod.iam.gserviceaccount.com' diff --git a/.github/workflows/platform-autogpt-deploy.yaml b/.github/workflows/platform-autogpt-deploy.yaml index 7e03f9f28d1a..e05d4429865c 100644 --- a/.github/workflows/platform-autogpt-deploy.yaml +++ b/.github/workflows/platform-autogpt-deploy.yaml @@ -64,7 +64,7 @@ jobs: fetch-depth: 0 - id: 'auth' - uses: 'google-github-actions/auth@v1' + uses: 'google-github-actions/auth@v2' with: workload_identity_provider: 'projects/638488734936/locations/global/workloadIdentityPools/dev-pool/providers/github' service_account: 'dev-github-actions-sa@agpt-dev.iam.gserviceaccount.com' From d8317c825736b1cc03cabfc06526553a5c4c8a10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:44:24 +0000 Subject: [PATCH 36/42] build(deps): bump websockets from 12.0 to 13.1 in /autogpt_platform/backend (#8477) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicholas Tindle --- autogpt_platform/backend/backend/cli.py | 4 +- autogpt_platform/backend/poetry.lock | 166 +++++++++++++----------- autogpt_platform/backend/pyproject.toml | 2 +- 3 files changed, 93 insertions(+), 79 deletions(-) diff --git a/autogpt_platform/backend/backend/cli.py b/autogpt_platform/backend/backend/cli.py index 86fead6c90bb..154c22207bb6 100755 --- a/autogpt_platform/backend/backend/cli.py +++ b/autogpt_platform/backend/backend/cli.py @@ -217,13 +217,13 @@ def websocket(server_address: str, graph_id: str): """ import asyncio - import websockets + import websockets.asyncio.client from backend.server.ws_api import ExecutionSubscription, Methods, WsMessage async def send_message(server_address: str): uri = f"ws://{server_address}" - async with websockets.connect(uri) as websocket: + async with websockets.asyncio.client.connect(uri) as websocket: try: msg = WsMessage( method=Methods.SUBSCRIBE, diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index 4d7a84339125..daebe50c28db 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -1860,8 +1860,8 @@ python-dateutil = ">=2.5.3" tqdm = ">=4.64.1" typing-extensions = ">=3.7.4" urllib3 = [ - {version = ">=1.26.0", markers = "python_version >= \"3.8\" and python_version < \"3.12\""}, {version = ">=1.26.5", markers = "python_version >= \"3.12\" and python_version < \"4.0\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.8\" and python_version < \"3.12\""}, ] [package.extras] @@ -2143,8 +2143,8 @@ files = [ annotated-types = ">=0.6.0" pydantic-core = "2.23.4" typing-extensions = [ - {version = ">=4.6.1", markers = "python_version < \"3.13\""}, {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, + {version = ">=4.6.1", markers = "python_version < \"3.13\""}, ] [package.extras] @@ -3420,83 +3420,97 @@ test = ["websockets"] [[package]] name = "websockets" -version = "12.0" +version = "13.1" description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" optional = false python-versions = ">=3.8" files = [ - {file = "websockets-12.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d554236b2a2006e0ce16315c16eaa0d628dab009c33b63ea03f41c6107958374"}, - {file = "websockets-12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d225bb6886591b1746b17c0573e29804619c8f755b5598d875bb4235ea639be"}, - {file = "websockets-12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb809e816916a3b210bed3c82fb88eaf16e8afcf9c115ebb2bacede1797d2547"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c588f6abc13f78a67044c6b1273a99e1cf31038ad51815b3b016ce699f0d75c2"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5aa9348186d79a5f232115ed3fa9020eab66d6c3437d72f9d2c8ac0c6858c558"}, - {file = "websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6350b14a40c95ddd53e775dbdbbbc59b124a5c8ecd6fbb09c2e52029f7a9f480"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:70ec754cc2a769bcd218ed8d7209055667b30860ffecb8633a834dde27d6307c"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e96f5ed1b83a8ddb07909b45bd94833b0710f738115751cdaa9da1fb0cb66e8"}, - {file = "websockets-12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4d87be612cbef86f994178d5186add3d94e9f31cc3cb499a0482b866ec477603"}, - {file = "websockets-12.0-cp310-cp310-win32.whl", hash = "sha256:befe90632d66caaf72e8b2ed4d7f02b348913813c8b0a32fae1cc5fe3730902f"}, - {file = "websockets-12.0-cp310-cp310-win_amd64.whl", hash = "sha256:363f57ca8bc8576195d0540c648aa58ac18cf85b76ad5202b9f976918f4219cf"}, - {file = "websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4"}, - {file = "websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f"}, - {file = "websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45"}, - {file = "websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca"}, - {file = "websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53"}, - {file = "websockets-12.0-cp311-cp311-win32.whl", hash = "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402"}, - {file = "websockets-12.0-cp311-cp311-win_amd64.whl", hash = "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b"}, - {file = "websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df"}, - {file = "websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc"}, - {file = "websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92"}, - {file = "websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2"}, - {file = "websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113"}, - {file = "websockets-12.0-cp312-cp312-win32.whl", hash = "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d"}, - {file = "websockets-12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f"}, - {file = "websockets-12.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5f6ffe2c6598f7f7207eef9a1228b6f5c818f9f4d53ee920aacd35cec8110438"}, - {file = "websockets-12.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9edf3fc590cc2ec20dc9d7a45108b5bbaf21c0d89f9fd3fd1685e223771dc0b2"}, - {file = "websockets-12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8572132c7be52632201a35f5e08348137f658e5ffd21f51f94572ca6c05ea81d"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604428d1b87edbf02b233e2c207d7d528460fa978f9e391bd8aaf9c8311de137"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1a9d160fd080c6285e202327aba140fc9a0d910b09e423afff4ae5cbbf1c7205"}, - {file = "websockets-12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87b4aafed34653e465eb77b7c93ef058516cb5acf3eb21e42f33928616172def"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b2ee7288b85959797970114deae81ab41b731f19ebcd3bd499ae9ca0e3f1d2c8"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7fa3d25e81bfe6a89718e9791128398a50dec6d57faf23770787ff441d851967"}, - {file = "websockets-12.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a571f035a47212288e3b3519944f6bf4ac7bc7553243e41eac50dd48552b6df7"}, - {file = "websockets-12.0-cp38-cp38-win32.whl", hash = "sha256:3c6cc1360c10c17463aadd29dd3af332d4a1adaa8796f6b0e9f9df1fdb0bad62"}, - {file = "websockets-12.0-cp38-cp38-win_amd64.whl", hash = "sha256:1bf386089178ea69d720f8db6199a0504a406209a0fc23e603b27b300fdd6892"}, - {file = "websockets-12.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab3d732ad50a4fbd04a4490ef08acd0517b6ae6b77eb967251f4c263011a990d"}, - {file = "websockets-12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1d9697f3337a89691e3bd8dc56dea45a6f6d975f92e7d5f773bc715c15dde28"}, - {file = "websockets-12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1df2fbd2c8a98d38a66f5238484405b8d1d16f929bb7a33ed73e4801222a6f53"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23509452b3bc38e3a057382c2e941d5ac2e01e251acce7adc74011d7d8de434c"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e5fc14ec6ea568200ea4ef46545073da81900a2b67b3e666f04adf53ad452ec"}, - {file = "websockets-12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46e71dbbd12850224243f5d2aeec90f0aaa0f2dde5aeeb8fc8df21e04d99eff9"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b81f90dcc6c85a9b7f29873beb56c94c85d6f0dac2ea8b60d995bd18bf3e2aae"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a02413bc474feda2849c59ed2dfb2cddb4cd3d2f03a2fedec51d6e959d9b608b"}, - {file = "websockets-12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bbe6013f9f791944ed31ca08b077e26249309639313fff132bfbf3ba105673b9"}, - {file = "websockets-12.0-cp39-cp39-win32.whl", hash = "sha256:cbe83a6bbdf207ff0541de01e11904827540aa069293696dd528a6640bd6a5f6"}, - {file = "websockets-12.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc4e7fa5414512b481a2483775a8e8be7803a35b30ca805afa4998a84f9fd9e8"}, - {file = "websockets-12.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:248d8e2446e13c1d4326e0a6a4e9629cb13a11195051a73acf414812700badbd"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f44069528d45a933997a6fef143030d8ca8042f0dfaad753e2906398290e2870"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4e37d36f0d19f0a4413d3e18c0d03d0c268ada2061868c1e6f5ab1a6d575077"}, - {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d829f975fc2e527a3ef2f9c8f25e553eb7bc779c6665e8e1d52aa22800bb38b"}, - {file = "websockets-12.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:2c71bd45a777433dd9113847af751aae36e448bc6b8c361a566cb043eda6ec30"}, - {file = "websockets-12.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0bee75f400895aef54157b36ed6d3b308fcab62e5260703add87f44cee9c82a6"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:423fc1ed29f7512fceb727e2d2aecb952c46aa34895e9ed96071821309951123"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27a5e9964ef509016759f2ef3f2c1e13f403725a5e6a1775555994966a66e931"}, - {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3181df4583c4d3994d31fb235dc681d2aaad744fbdbf94c4802485ececdecf2"}, - {file = "websockets-12.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b067cb952ce8bf40115f6c19f478dc71c5e719b7fbaa511359795dfd9d1a6468"}, - {file = "websockets-12.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:00700340c6c7ab788f176d118775202aadea7602c5cc6be6ae127761c16d6b0b"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e469d01137942849cff40517c97a30a93ae79917752b34029f0ec72df6b46399"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffefa1374cd508d633646d51a8e9277763a9b78ae71324183693959cf94635a7"}, - {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0cab91b3956dfa9f512147860783a1829a8d905ee218a9837c18f683239611"}, - {file = "websockets-12.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2cb388a5bfb56df4d9a406783b7f9dbefb888c09b71629351cc6b036e9259370"}, - {file = "websockets-12.0-py3-none-any.whl", hash = "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e"}, - {file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"}, + {file = "websockets-13.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f48c749857f8fb598fb890a75f540e3221d0976ed0bf879cf3c7eef34151acee"}, + {file = "websockets-13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c7e72ce6bda6fb9409cc1e8164dd41d7c91466fb599eb047cfda72fe758a34a7"}, + {file = "websockets-13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f779498eeec470295a2b1a5d97aa1bc9814ecd25e1eb637bd9d1c73a327387f6"}, + {file = "websockets-13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676df3fe46956fbb0437d8800cd5f2b6d41143b6e7e842e60554398432cf29b"}, + {file = "websockets-13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7affedeb43a70351bb811dadf49493c9cfd1ed94c9c70095fd177e9cc1541fa"}, + {file = "websockets-13.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1971e62d2caa443e57588e1d82d15f663b29ff9dfe7446d9964a4b6f12c1e700"}, + {file = "websockets-13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5f2e75431f8dc4a47f31565a6e1355fb4f2ecaa99d6b89737527ea917066e26c"}, + {file = "websockets-13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:58cf7e75dbf7e566088b07e36ea2e3e2bd5676e22216e4cad108d4df4a7402a0"}, + {file = "websockets-13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c90d6dec6be2c7d03378a574de87af9b1efea77d0c52a8301dd831ece938452f"}, + {file = "websockets-13.1-cp310-cp310-win32.whl", hash = "sha256:730f42125ccb14602f455155084f978bd9e8e57e89b569b4d7f0f0c17a448ffe"}, + {file = "websockets-13.1-cp310-cp310-win_amd64.whl", hash = "sha256:5993260f483d05a9737073be197371940c01b257cc45ae3f1d5d7adb371b266a"}, + {file = "websockets-13.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:61fc0dfcda609cda0fc9fe7977694c0c59cf9d749fbb17f4e9483929e3c48a19"}, + {file = "websockets-13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ceec59f59d092c5007e815def4ebb80c2de330e9588e101cf8bd94c143ec78a5"}, + {file = "websockets-13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c1dca61c6db1166c48b95198c0b7d9c990b30c756fc2923cc66f68d17dc558fd"}, + {file = "websockets-13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308e20f22c2c77f3f39caca508e765f8725020b84aa963474e18c59accbf4c02"}, + {file = "websockets-13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62d516c325e6540e8a57b94abefc3459d7dab8ce52ac75c96cad5549e187e3a7"}, + {file = "websockets-13.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87c6e35319b46b99e168eb98472d6c7d8634ee37750d7693656dc766395df096"}, + {file = "websockets-13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5f9fee94ebafbc3117c30be1844ed01a3b177bb6e39088bc6b2fa1dc15572084"}, + {file = "websockets-13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7c1e90228c2f5cdde263253fa5db63e6653f1c00e7ec64108065a0b9713fa1b3"}, + {file = "websockets-13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6548f29b0e401eea2b967b2fdc1c7c7b5ebb3eeb470ed23a54cd45ef078a0db9"}, + {file = "websockets-13.1-cp311-cp311-win32.whl", hash = "sha256:c11d4d16e133f6df8916cc5b7e3e96ee4c44c936717d684a94f48f82edb7c92f"}, + {file = "websockets-13.1-cp311-cp311-win_amd64.whl", hash = "sha256:d04f13a1d75cb2b8382bdc16ae6fa58c97337253826dfe136195b7f89f661557"}, + {file = "websockets-13.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9d75baf00138f80b48f1eac72ad1535aac0b6461265a0bcad391fc5aba875cfc"}, + {file = "websockets-13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9b6f347deb3dcfbfde1c20baa21c2ac0751afaa73e64e5b693bb2b848efeaa49"}, + {file = "websockets-13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de58647e3f9c42f13f90ac7e5f58900c80a39019848c5547bc691693098ae1bd"}, + {file = "websockets-13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1b54689e38d1279a51d11e3467dd2f3a50f5f2e879012ce8f2d6943f00e83f0"}, + {file = "websockets-13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf1781ef73c073e6b0f90af841aaf98501f975d306bbf6221683dd594ccc52b6"}, + {file = "websockets-13.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d23b88b9388ed85c6faf0e74d8dec4f4d3baf3ecf20a65a47b836d56260d4b9"}, + {file = "websockets-13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3c78383585f47ccb0fcf186dcb8a43f5438bd7d8f47d69e0b56f71bf431a0a68"}, + {file = "websockets-13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d6d300f8ec35c24025ceb9b9019ae9040c1ab2f01cddc2bcc0b518af31c75c14"}, + {file = "websockets-13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a9dcaf8b0cc72a392760bb8755922c03e17a5a54e08cca58e8b74f6902b433cf"}, + {file = "websockets-13.1-cp312-cp312-win32.whl", hash = "sha256:2f85cf4f2a1ba8f602298a853cec8526c2ca42a9a4b947ec236eaedb8f2dc80c"}, + {file = "websockets-13.1-cp312-cp312-win_amd64.whl", hash = "sha256:38377f8b0cdeee97c552d20cf1865695fcd56aba155ad1b4ca8779a5b6ef4ac3"}, + {file = "websockets-13.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a9ab1e71d3d2e54a0aa646ab6d4eebfaa5f416fe78dfe4da2839525dc5d765c6"}, + {file = "websockets-13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b9d7439d7fab4dce00570bb906875734df13d9faa4b48e261c440a5fec6d9708"}, + {file = "websockets-13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:327b74e915cf13c5931334c61e1a41040e365d380f812513a255aa804b183418"}, + {file = "websockets-13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:325b1ccdbf5e5725fdcb1b0e9ad4d2545056479d0eee392c291c1bf76206435a"}, + {file = "websockets-13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:346bee67a65f189e0e33f520f253d5147ab76ae42493804319b5716e46dddf0f"}, + {file = "websockets-13.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91a0fa841646320ec0d3accdff5b757b06e2e5c86ba32af2e0815c96c7a603c5"}, + {file = "websockets-13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:18503d2c5f3943e93819238bf20df71982d193f73dcecd26c94514f417f6b135"}, + {file = "websockets-13.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a9cd1af7e18e5221d2878378fbc287a14cd527fdd5939ed56a18df8a31136bb2"}, + {file = "websockets-13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:70c5be9f416aa72aab7a2a76c90ae0a4fe2755c1816c153c1a2bcc3333ce4ce6"}, + {file = "websockets-13.1-cp313-cp313-win32.whl", hash = "sha256:624459daabeb310d3815b276c1adef475b3e6804abaf2d9d2c061c319f7f187d"}, + {file = "websockets-13.1-cp313-cp313-win_amd64.whl", hash = "sha256:c518e84bb59c2baae725accd355c8dc517b4a3ed8db88b4bc93c78dae2974bf2"}, + {file = "websockets-13.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c7934fd0e920e70468e676fe7f1b7261c1efa0d6c037c6722278ca0228ad9d0d"}, + {file = "websockets-13.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:149e622dc48c10ccc3d2760e5f36753db9cacf3ad7bc7bbbfd7d9c819e286f23"}, + {file = "websockets-13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a569eb1b05d72f9bce2ebd28a1ce2054311b66677fcd46cf36204ad23acead8c"}, + {file = "websockets-13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95df24ca1e1bd93bbca51d94dd049a984609687cb2fb08a7f2c56ac84e9816ea"}, + {file = "websockets-13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8dbb1bf0c0a4ae8b40bdc9be7f644e2f3fb4e8a9aca7145bfa510d4a374eeb7"}, + {file = "websockets-13.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:035233b7531fb92a76beefcbf479504db8c72eb3bff41da55aecce3a0f729e54"}, + {file = "websockets-13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:e4450fc83a3df53dec45922b576e91e94f5578d06436871dce3a6be38e40f5db"}, + {file = "websockets-13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:463e1c6ec853202dd3657f156123d6b4dad0c546ea2e2e38be2b3f7c5b8e7295"}, + {file = "websockets-13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:6d6855bbe70119872c05107e38fbc7f96b1d8cb047d95c2c50869a46c65a8e96"}, + {file = "websockets-13.1-cp38-cp38-win32.whl", hash = "sha256:204e5107f43095012b00f1451374693267adbb832d29966a01ecc4ce1db26faf"}, + {file = "websockets-13.1-cp38-cp38-win_amd64.whl", hash = "sha256:485307243237328c022bc908b90e4457d0daa8b5cf4b3723fd3c4a8012fce4c6"}, + {file = "websockets-13.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9b37c184f8b976f0c0a231a5f3d6efe10807d41ccbe4488df8c74174805eea7d"}, + {file = "websockets-13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:163e7277e1a0bd9fb3c8842a71661ad19c6aa7bb3d6678dc7f89b17fbcc4aeb7"}, + {file = "websockets-13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4b889dbd1342820cc210ba44307cf75ae5f2f96226c0038094455a96e64fb07a"}, + {file = "websockets-13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:586a356928692c1fed0eca68b4d1c2cbbd1ca2acf2ac7e7ebd3b9052582deefa"}, + {file = "websockets-13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7bd6abf1e070a6b72bfeb71049d6ad286852e285f146682bf30d0296f5fbadfa"}, + {file = "websockets-13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2aad13a200e5934f5a6767492fb07151e1de1d6079c003ab31e1823733ae79"}, + {file = "websockets-13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:df01aea34b6e9e33572c35cd16bae5a47785e7d5c8cb2b54b2acdb9678315a17"}, + {file = "websockets-13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e54affdeb21026329fb0744ad187cf812f7d3c2aa702a5edb562b325191fcab6"}, + {file = "websockets-13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9ef8aa8bdbac47f4968a5d66462a2a0935d044bf35c0e5a8af152d58516dbeb5"}, + {file = "websockets-13.1-cp39-cp39-win32.whl", hash = "sha256:deeb929efe52bed518f6eb2ddc00cc496366a14c726005726ad62c2dd9017a3c"}, + {file = "websockets-13.1-cp39-cp39-win_amd64.whl", hash = "sha256:7c65ffa900e7cc958cd088b9a9157a8141c991f8c53d11087e6fb7277a03f81d"}, + {file = "websockets-13.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5dd6da9bec02735931fccec99d97c29f47cc61f644264eb995ad6c0c27667238"}, + {file = "websockets-13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2510c09d8e8df777177ee3d40cd35450dc169a81e747455cc4197e63f7e7bfe5"}, + {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1c3cf67185543730888b20682fb186fc8d0fa6f07ccc3ef4390831ab4b388d9"}, + {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcc03c8b72267e97b49149e4863d57c2d77f13fae12066622dc78fe322490fe6"}, + {file = "websockets-13.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:004280a140f220c812e65f36944a9ca92d766b6cc4560be652a0a3883a79ed8a"}, + {file = "websockets-13.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e2620453c075abeb0daa949a292e19f56de518988e079c36478bacf9546ced23"}, + {file = "websockets-13.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9156c45750b37337f7b0b00e6248991a047be4aa44554c9886fe6bdd605aab3b"}, + {file = "websockets-13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:80c421e07973a89fbdd93e6f2003c17d20b69010458d3a8e37fb47874bd67d51"}, + {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82d0ba76371769d6a4e56f7e83bb8e81846d17a6190971e38b5de108bde9b0d7"}, + {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9875a0143f07d74dc5e1ded1c4581f0d9f7ab86c78994e2ed9e95050073c94d"}, + {file = "websockets-13.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a11e38ad8922c7961447f35c7b17bffa15de4d17c70abd07bfbe12d6faa3e027"}, + {file = "websockets-13.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4059f790b6ae8768471cddb65d3c4fe4792b0ab48e154c9f0a04cefaabcd5978"}, + {file = "websockets-13.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:25c35bf84bf7c7369d247f0b8cfa157f989862c49104c5cf85cb5436a641d93e"}, + {file = "websockets-13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:83f91d8a9bb404b8c2c41a707ac7f7f75b9442a0a876df295de27251a856ad09"}, + {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a43cfdcddd07f4ca2b1afb459824dd3c6d53a51410636a2c7fc97b9a8cf4842"}, + {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48a2ef1381632a2f0cb4efeff34efa97901c9fbc118e01951ad7cfc10601a9bb"}, + {file = "websockets-13.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:459bf774c754c35dbb487360b12c5727adab887f1622b8aed5755880a21c4a20"}, + {file = "websockets-13.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:95858ca14a9f6fa8413d29e0a585b31b278388aa775b8a81fa24830123874678"}, + {file = "websockets-13.1-py3-none-any.whl", hash = "sha256:a9a396a6ad26130cdae92ae10c36af09d9bfe6cafe69670fd3b6da9b07b4044f"}, + {file = "websockets-13.1.tar.gz", hash = "sha256:a3b3366087c1bc0a2795111edcadddb8b3b59509d5db5d7ea3fdd69f954a8878"}, ] [[package]] @@ -3719,4 +3733,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "f9293b504ef813f98f43a8c3ab1b779ff9d7dc2e3bd9412fccc6da5102915e6b" +content-hash = "6c7f925070e9e23b317aec96278472d0394797e0a32268140fe50353947d167a" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index d2450fc56740..875fa8e4fac6 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -41,7 +41,7 @@ sentry-sdk = "1.45.0" supabase = "^2.7.2" tenacity = "^8.3.0" uvicorn = { extras = ["standard"], version = "^0.30.1" } -websockets = "^12.0" +websockets = "^13.1" youtube-transcript-api = "^0.6.2" googlemaps = "^4.10.0" replicate = "^0.34.1" From 308a9bc40e48babc3719743b9824ea3547829bf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:04:48 -0500 Subject: [PATCH 37/42] build(deps): bump sentry-sdk from 1.45.0 to 2.17.0 in /autogpt_platform/backend (#8475) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/backend/poetry.lock | 23 ++++++++++++++--------- autogpt_platform/backend/pyproject.toml | 2 +- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index daebe50c28db..7557541568fb 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -2765,21 +2765,22 @@ files = [ [[package]] name = "sentry-sdk" -version = "1.45.0" +version = "2.17.0" description = "Python client for Sentry (https://sentry.io)" optional = false -python-versions = "*" +python-versions = ">=3.6" files = [ - {file = "sentry-sdk-1.45.0.tar.gz", hash = "sha256:509aa9678c0512344ca886281766c2e538682f8acfa50fd8d405f8c417ad0625"}, - {file = "sentry_sdk-1.45.0-py2.py3-none-any.whl", hash = "sha256:1ce29e30240cc289a027011103a8c83885b15ef2f316a60bcc7c5300afa144f1"}, + {file = "sentry_sdk-2.17.0-py2.py3-none-any.whl", hash = "sha256:625955884b862cc58748920f9e21efdfb8e0d4f98cca4ab0d3918576d5b606ad"}, + {file = "sentry_sdk-2.17.0.tar.gz", hash = "sha256:dd0a05352b78ffeacced73a94e86f38b32e2eae15fff5f30ca5abb568a72eacf"}, ] [package.dependencies] certifi = "*" -urllib3 = {version = ">=1.26.11", markers = "python_version >= \"3.6\""} +urllib3 = ">=1.26.11" [package.extras] aiohttp = ["aiohttp (>=3.5)"] +anthropic = ["anthropic (>=0.16)"] arq = ["arq (>=0.23)"] asyncpg = ["asyncpg (>=0.23)"] beam = ["apache-beam (>=2.12)"] @@ -2792,13 +2793,17 @@ django = ["django (>=1.8)"] falcon = ["falcon (>=1.4)"] fastapi = ["fastapi (>=0.79.0)"] flask = ["blinker (>=1.1)", "flask (>=0.11)", "markupsafe"] -grpcio = ["grpcio (>=1.21.1)"] +grpcio = ["grpcio (>=1.21.1)", "protobuf (>=3.8.0)"] +http2 = ["httpcore[http2] (==1.*)"] httpx = ["httpx (>=0.16.0)"] huey = ["huey (>=2)"] +huggingface-hub = ["huggingface-hub (>=0.22)"] +langchain = ["langchain (>=0.0.210)"] +litestar = ["litestar (>=2.0.0)"] loguru = ["loguru (>=0.5)"] openai = ["openai (>=1.0.0)", "tiktoken (>=0.3.0)"] opentelemetry = ["opentelemetry-distro (>=0.35b0)"] -opentelemetry-experimental = ["opentelemetry-distro (>=0.40b0,<1.0)", "opentelemetry-instrumentation-aiohttp-client (>=0.40b0,<1.0)", "opentelemetry-instrumentation-django (>=0.40b0,<1.0)", "opentelemetry-instrumentation-fastapi (>=0.40b0,<1.0)", "opentelemetry-instrumentation-flask (>=0.40b0,<1.0)", "opentelemetry-instrumentation-requests (>=0.40b0,<1.0)", "opentelemetry-instrumentation-sqlite3 (>=0.40b0,<1.0)", "opentelemetry-instrumentation-urllib (>=0.40b0,<1.0)"] +opentelemetry-experimental = ["opentelemetry-distro"] pure-eval = ["asttokens", "executing", "pure-eval"] pymongo = ["pymongo (>=3.1)"] pyspark = ["pyspark (>=2.4.4)"] @@ -2808,7 +2813,7 @@ sanic = ["sanic (>=0.8)"] sqlalchemy = ["sqlalchemy (>=1.2)"] starlette = ["starlette (>=0.19.1)"] starlite = ["starlite (>=1.48)"] -tornado = ["tornado (>=5)"] +tornado = ["tornado (>=6)"] [[package]] name = "serpent" @@ -3733,4 +3738,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "6c7f925070e9e23b317aec96278472d0394797e0a32268140fe50353947d167a" +content-hash = "b816744e9e1f6d663aa7a9f16be70992744ef5cf351d203c5ac23631c1f510fe" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index 875fa8e4fac6..28ec93793a08 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -37,7 +37,7 @@ pytest = "^8.2.1" pytest-asyncio = "^0.23.7" python-dotenv = "^1.0.1" redis = "^5.0.8" -sentry-sdk = "1.45.0" +sentry-sdk = "2.17.0" supabase = "^2.7.2" tenacity = "^8.3.0" uvicorn = { extras = ["standard"], version = "^0.30.1" } From c028dd647eff3a90f24aba76af24cedcdb925c7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 18:45:56 -0500 Subject: [PATCH 38/42] build(deps): bump psutil from 5.9.8 to 6.1.0 in /autogpt_platform/backend (#8473) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/backend/poetry.lock | 42 +++++++++++++------------ autogpt_platform/backend/pyproject.toml | 2 +- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index 7557541568fb..8783621dbba7 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -2066,31 +2066,33 @@ files = [ [[package]] name = "psutil" -version = "5.9.8" +version = "6.1.0" description = "Cross-platform lib for process and system monitoring in Python." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"}, - {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"}, - {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"}, - {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"}, - {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"}, - {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"}, - {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"}, - {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"}, - {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"}, - {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"}, - {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"}, - {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"}, - {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"}, - {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"}, - {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"}, - {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"}, + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, ] [package.extras] -test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] [[package]] name = "pyasn1" @@ -3738,4 +3740,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "b816744e9e1f6d663aa7a9f16be70992744ef5cf351d203c5ac23631c1f510fe" +content-hash = "e436bab1bd02b2643545fc3398b553442e93d55f6ae9ed463f8f6804bb49ccbf" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index 28ec93793a08..96cadeb7faa1 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -29,7 +29,7 @@ ollama = "^0.3.0" openai = "^1.35.7" praw = "~7.7.1" prisma = "^0.13.1" -psutil = "^5.9.8" +psutil = "^6.1.0" pydantic = "^2.7.2" pydantic-settings = "^2.3.4" pyro5 = "^5.15" From 6fef4fd66e02d10f53ecb7a33cbf689eecd4d753 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 23:52:08 +0000 Subject: [PATCH 39/42] build(deps): bump tenacity from 8.5.0 to 9.0.0 in /autogpt_platform/backend (#8472) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/backend/poetry.lock | 8 ++++---- autogpt_platform/backend/pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index 8783621dbba7..c161da8b2707 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -2944,13 +2944,13 @@ httpx = {version = ">=0.24,<0.28", extras = ["http2"]} [[package]] name = "tenacity" -version = "8.5.0" +version = "9.0.0" description = "Retry code until it succeeds" optional = false python-versions = ">=3.8" files = [ - {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"}, - {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"}, + {file = "tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539"}, + {file = "tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b"}, ] [package.extras] @@ -3740,4 +3740,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "e436bab1bd02b2643545fc3398b553442e93d55f6ae9ed463f8f6804bb49ccbf" +content-hash = "b0578d233007a8618f66c2a06e5d049789dbacda827d2abbd5a31edfa2290c51" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index 96cadeb7faa1..033ef172868e 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -39,7 +39,7 @@ python-dotenv = "^1.0.1" redis = "^5.0.8" sentry-sdk = "2.17.0" supabase = "^2.7.2" -tenacity = "^8.3.0" +tenacity = "^9.0.0" uvicorn = { extras = ["standard"], version = "^0.30.1" } websockets = "^13.1" youtube-transcript-api = "^0.6.2" From 62aa002b379b6c7a11ed4ad42785c11fed6c093b Mon Sep 17 00:00:00 2001 From: Niranjan Kurhade Date: Tue, 29 Oct 2024 05:50:23 +0530 Subject: [PATCH 40/42] Benchmark Broken Link Fixed in README (#8458) Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 722da4223019..a323729ad5dc 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ This guide will walk you through the process of creating your own agent and usin 📦 [`agbenchmark`](https://pypi.org/project/agbenchmark/) on Pypi  |  -📘 [Learn More](https://github.com/Significant-Gravitas/AutoGPT/blob/master/benchmark) about the Benchmark +📘 [Learn More](https://github.com/Significant-Gravitas/AutoGPT/tree/master/classic/benchmark) about the Benchmark ### 💻 UI From fa04f802b2fbfea6b6ff9d479140827485847799 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:34:02 +0000 Subject: [PATCH 41/42] build(deps-dev): bump the development-dependencies group in /autogpt_platform/backend with 4 updates (#8471) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/backend/poetry.lock | 105 ++++++++++++------------ autogpt_platform/backend/pyproject.toml | 8 +- 2 files changed, 57 insertions(+), 56 deletions(-) diff --git a/autogpt_platform/backend/poetry.lock b/autogpt_platform/backend/poetry.lock index c161da8b2707..d4541d2187f7 100644 --- a/autogpt_platform/backend/poetry.lock +++ b/autogpt_platform/backend/poetry.lock @@ -307,33 +307,33 @@ url = "../autogpt_libs" [[package]] name = "black" -version = "24.8.0" +version = "24.10.0" description = "The uncompromising code formatter." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, - {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, - {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, - {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, - {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, - {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, - {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, - {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, - {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, - {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, - {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, - {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, - {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, - {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, - {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, - {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, - {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, - {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, - {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, - {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, - {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, - {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, + {file = "black-24.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6668650ea4b685440857138e5fe40cde4d652633b1bdffc62933d0db4ed9812"}, + {file = "black-24.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1c536fcf674217e87b8cc3657b81809d3c085d7bf3ef262ead700da345bfa6ea"}, + {file = "black-24.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:649fff99a20bd06c6f727d2a27f401331dc0cc861fb69cde910fe95b01b5928f"}, + {file = "black-24.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:fe4d6476887de70546212c99ac9bd803d90b42fc4767f058a0baa895013fbb3e"}, + {file = "black-24.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5a2221696a8224e335c28816a9d331a6c2ae15a2ee34ec857dcf3e45dbfa99ad"}, + {file = "black-24.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9da3333530dbcecc1be13e69c250ed8dfa67f43c4005fb537bb426e19200d50"}, + {file = "black-24.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4007b1393d902b48b36958a216c20c4482f601569d19ed1df294a496eb366392"}, + {file = "black-24.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:394d4ddc64782e51153eadcaaca95144ac4c35e27ef9b0a42e121ae7e57a9175"}, + {file = "black-24.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b5e39e0fae001df40f95bd8cc36b9165c5e2ea88900167bddf258bacef9bbdc3"}, + {file = "black-24.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d37d422772111794b26757c5b55a3eade028aa3fde43121ab7b673d050949d65"}, + {file = "black-24.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14b3502784f09ce2443830e3133dacf2c0110d45191ed470ecb04d0f5f6fcb0f"}, + {file = "black-24.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:30d2c30dc5139211dda799758559d1b049f7f14c580c409d6ad925b74a4208a8"}, + {file = "black-24.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cbacacb19e922a1d75ef2b6ccaefcd6e93a2c05ede32f06a21386a04cedb981"}, + {file = "black-24.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1f93102e0c5bb3907451063e08b9876dbeac810e7da5a8bfb7aeb5a9ef89066b"}, + {file = "black-24.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ddacb691cdcdf77b96f549cf9591701d8db36b2f19519373d60d31746068dbf2"}, + {file = "black-24.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:680359d932801c76d2e9c9068d05c6b107f2584b2a5b88831c83962eb9984c1b"}, + {file = "black-24.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:17374989640fbca88b6a448129cd1745c5eb8d9547b464f281b251dd00155ccd"}, + {file = "black-24.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:63f626344343083322233f175aaf372d326de8436f5928c042639a4afbbf1d3f"}, + {file = "black-24.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfa1d0cb6200857f1923b602f978386a3a2758a65b52e0950299ea014be6800"}, + {file = "black-24.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:2cd9c95431d94adc56600710f8813ee27eea544dd118d45896bb734e9d7a0dc7"}, + {file = "black-24.10.0-py3-none-any.whl", hash = "sha256:3bb2b7a1f7b685f85b11fed1ef10f8a9148bceb49853e47a294a3dd963c1dd7d"}, + {file = "black-24.10.0.tar.gz", hash = "sha256:846ea64c97afe3bc677b761787993be4991810ecc7a4a937816dd6bddedc4875"}, ] [package.dependencies] @@ -347,7 +347,7 @@ typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] -d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] +d = ["aiohttp (>=3.10)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] @@ -1925,18 +1925,19 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "poethepoet" -version = "0.26.1" +version = "0.29.0" description = "A task runner that works well with poetry." optional = false python-versions = ">=3.8" files = [ - {file = "poethepoet-0.26.1-py3-none-any.whl", hash = "sha256:aa43b443fec5d17d7e76771cccd484e5285805301721a74f059c483ad3276edd"}, - {file = "poethepoet-0.26.1.tar.gz", hash = "sha256:aaad8541f6072617a60bcff2562d00779b58b353bd0f1847b06d8d0f2b6dc192"}, + {file = "poethepoet-0.29.0-py3-none-any.whl", hash = "sha256:f8dfe55006dcfb5cf31bcb1904e1262e1c642a4502fee3688cbf1bddfe5c7601"}, + {file = "poethepoet-0.29.0.tar.gz", hash = "sha256:676842302f2304a86b31ac56398dd672fae8471128d2086896393384dbafc095"}, ] [package.dependencies] pastel = ">=0.2.1,<0.3.0" -tomli = ">=1.2.2" +pyyaml = ">=6.0.2,<7.0.0" +tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""} [package.extras] poetry-plugin = ["poetry (>=1.0,<2.0)"] @@ -2318,13 +2319,13 @@ diagrams = ["jinja2", "railroad-diagrams"] [[package]] name = "pyright" -version = "1.1.382.post1" +version = "1.1.386" description = "Command line wrapper for pyright" optional = false python-versions = ">=3.7" files = [ - {file = "pyright-1.1.382.post1-py3-none-any.whl", hash = "sha256:21a4749dd1740e209f88d3a601e9f40748670d39481ea32b9d77edf7f3f1fb2e"}, - {file = "pyright-1.1.382.post1.tar.gz", hash = "sha256:66a5d4e83be9452853d73e9dd9e95ba0ac3061845270e4e331d0070a597d3445"}, + {file = "pyright-1.1.386-py3-none-any.whl", hash = "sha256:7071ac495593b2258ccdbbf495f1a5c0e5f27951f6b429bed4e8b296eb5cd21d"}, + {file = "pyright-1.1.386.tar.gz", hash = "sha256:8e9975e34948ba5f8e07792a9c9d2bdceb2c6c0b61742b068d2229ca2bc4a9d9"}, ] [package.dependencies] @@ -2740,29 +2741,29 @@ pyasn1 = ">=0.1.3" [[package]] name = "ruff" -version = "0.5.7" +version = "0.7.1" description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" files = [ - {file = "ruff-0.5.7-py3-none-linux_armv6l.whl", hash = "sha256:548992d342fc404ee2e15a242cdbea4f8e39a52f2e7752d0e4cbe88d2d2f416a"}, - {file = "ruff-0.5.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:00cc8872331055ee017c4f1071a8a31ca0809ccc0657da1d154a1d2abac5c0be"}, - {file = "ruff-0.5.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:eaf3d86a1fdac1aec8a3417a63587d93f906c678bb9ed0b796da7b59c1114a1e"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a01c34400097b06cf8a6e61b35d6d456d5bd1ae6961542de18ec81eaf33b4cb8"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcc8054f1a717e2213500edaddcf1dbb0abad40d98e1bd9d0ad364f75c763eea"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f70284e73f36558ef51602254451e50dd6cc479f8b6f8413a95fcb5db4a55fc"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:a78ad870ae3c460394fc95437d43deb5c04b5c29297815a2a1de028903f19692"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ccd078c66a8e419475174bfe60a69adb36ce04f8d4e91b006f1329d5cd44bcf"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e31c9bad4ebf8fdb77b59cae75814440731060a09a0e0077d559a556453acbb"}, - {file = "ruff-0.5.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d796327eed8e168164346b769dd9a27a70e0298d667b4ecee6877ce8095ec8e"}, - {file = "ruff-0.5.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4a09ea2c3f7778cc635e7f6edf57d566a8ee8f485f3c4454db7771efb692c499"}, - {file = "ruff-0.5.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a36d8dcf55b3a3bc353270d544fb170d75d2dff41eba5df57b4e0b67a95bb64e"}, - {file = "ruff-0.5.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9369c218f789eefbd1b8d82a8cf25017b523ac47d96b2f531eba73770971c9e5"}, - {file = "ruff-0.5.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:b88ca3db7eb377eb24fb7c82840546fb7acef75af4a74bd36e9ceb37a890257e"}, - {file = "ruff-0.5.7-py3-none-win32.whl", hash = "sha256:33d61fc0e902198a3e55719f4be6b375b28f860b09c281e4bdbf783c0566576a"}, - {file = "ruff-0.5.7-py3-none-win_amd64.whl", hash = "sha256:083bbcbe6fadb93cd86709037acc510f86eed5a314203079df174c40bbbca6b3"}, - {file = "ruff-0.5.7-py3-none-win_arm64.whl", hash = "sha256:2dca26154ff9571995107221d0aeaad0e75a77b5a682d6236cf89a58c70b76f4"}, - {file = "ruff-0.5.7.tar.gz", hash = "sha256:8dfc0a458797f5d9fb622dd0efc52d796f23f0a1493a9527f4e49a550ae9a7e5"}, + {file = "ruff-0.7.1-py3-none-linux_armv6l.whl", hash = "sha256:cb1bc5ed9403daa7da05475d615739cc0212e861b7306f314379d958592aaa89"}, + {file = "ruff-0.7.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:27c1c52a8d199a257ff1e5582d078eab7145129aa02721815ca8fa4f9612dc35"}, + {file = "ruff-0.7.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:588a34e1ef2ea55b4ddfec26bbe76bc866e92523d8c6cdec5e8aceefeff02d99"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94fc32f9cdf72dc75c451e5f072758b118ab8100727168a3df58502b43a599ca"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:985818742b833bffa543a84d1cc11b5e6871de1b4e0ac3060a59a2bae3969250"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32f1e8a192e261366c702c5fb2ece9f68d26625f198a25c408861c16dc2dea9c"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:699085bf05819588551b11751eff33e9ca58b1b86a6843e1b082a7de40da1565"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:344cc2b0814047dc8c3a8ff2cd1f3d808bb23c6658db830d25147339d9bf9ea7"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4316bbf69d5a859cc937890c7ac7a6551252b6a01b1d2c97e8fc96e45a7c8b4a"}, + {file = "ruff-0.7.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79d3af9dca4c56043e738a4d6dd1e9444b6d6c10598ac52d146e331eb155a8ad"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:c5c121b46abde94a505175524e51891f829414e093cd8326d6e741ecfc0a9112"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8422104078324ea250886954e48f1373a8fe7de59283d747c3a7eca050b4e378"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:56aad830af8a9db644e80098fe4984a948e2b6fc2e73891538f43bbe478461b8"}, + {file = "ruff-0.7.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:658304f02f68d3a83c998ad8bf91f9b4f53e93e5412b8f2388359d55869727fd"}, + {file = "ruff-0.7.1-py3-none-win32.whl", hash = "sha256:b517a2011333eb7ce2d402652ecaa0ac1a30c114fbbd55c6b8ee466a7f600ee9"}, + {file = "ruff-0.7.1-py3-none-win_amd64.whl", hash = "sha256:f38c41fcde1728736b4eb2b18850f6d1e3eedd9678c914dede554a70d5241307"}, + {file = "ruff-0.7.1-py3-none-win_arm64.whl", hash = "sha256:19aa200ec824c0f36d0c9114c8ec0087082021732979a359d6f3c390a6ff2a37"}, + {file = "ruff-0.7.1.tar.gz", hash = "sha256:9d8a41d4aa2dad1575adb98a82870cf5db5f76b2938cf2206c22c940034a36f4"}, ] [[package]] @@ -3740,4 +3741,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "b0578d233007a8618f66c2a06e5d049789dbacda827d2abbd5a31edfa2290c51" +content-hash = "ab3ae697e0be22e3ed20ae136db5b6805086279ebb57c99b60ed1c4d8d2dbbae" diff --git a/autogpt_platform/backend/pyproject.toml b/autogpt_platform/backend/pyproject.toml index 033ef172868e..ed31667c5272 100644 --- a/autogpt_platform/backend/pyproject.toml +++ b/autogpt_platform/backend/pyproject.toml @@ -47,14 +47,14 @@ googlemaps = "^4.10.0" replicate = "^0.34.1" pinecone = "^5.3.1" [tool.poetry.group.dev.dependencies] -poethepoet = "^0.26.1" +poethepoet = "^0.29.0" httpx = "^0.27.0" pytest-watcher = "^0.4.2" requests = "^2.32.3" -ruff = "^0.5.2" -pyright = "^1.1.371" +ruff = "^0.7.1" +pyright = "^1.1.386" isort = "^5.13.2" -black = "^24.4.2" +black = "^24.10.0" aiohappyeyeballs = "^2.4.3" [build-system] From ff036191965ca8efdb1ccbcb69520f4dedb08d99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:44:50 +0000 Subject: [PATCH 42/42] build(deps): bump the production-dependencies group across 1 directory with 5 updates (#8464) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- autogpt_platform/market/poetry.lock | 235 +++++++++++++------------ autogpt_platform/market/pyproject.toml | 10 +- 2 files changed, 123 insertions(+), 122 deletions(-) diff --git a/autogpt_platform/market/poetry.lock b/autogpt_platform/market/poetry.lock index ce71016591c7..86aca545c84a 100644 --- a/autogpt_platform/market/poetry.lock +++ b/autogpt_platform/market/poetry.lock @@ -247,22 +247,23 @@ test = ["pytest (>=6)"] [[package]] name = "fastapi" -version = "0.109.2" +version = "0.115.4" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" optional = false python-versions = ">=3.8" files = [ - {file = "fastapi-0.109.2-py3-none-any.whl", hash = "sha256:2c9bab24667293b501cad8dd388c05240c850b58ec5876ee3283c47d6e1e3a4d"}, - {file = "fastapi-0.109.2.tar.gz", hash = "sha256:f3817eac96fe4f65a2ebb4baa000f394e55f5fccdaf7f75250804bc58f354f73"}, + {file = "fastapi-0.115.4-py3-none-any.whl", hash = "sha256:0b504a063ffb3cf96a5e27dc1bc32c80ca743a2528574f9cdc77daa2d31b4742"}, + {file = "fastapi-0.115.4.tar.gz", hash = "sha256:db653475586b091cb8b2fec2ac54a680ac6a158e07406e1abae31679e8826349"}, ] [package.dependencies] pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0" -starlette = ">=0.36.3,<0.37.0" +starlette = ">=0.40.0,<0.42.0" typing-extensions = ">=4.8.0" [package.extras] -all = ["email-validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.7)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +all = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.5)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.7)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +standard = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.5)", "httpx (>=0.23.0)", "jinja2 (>=2.11.2)", "python-multipart (>=0.0.7)", "uvicorn[standard] (>=0.12.0)"] [[package]] name = "fuzzywuzzy" @@ -389,105 +390,103 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "levenshtein" -version = "0.25.1" +version = "0.26.1" description = "Python extension for computing string edit distances and similarities." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "Levenshtein-0.25.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:eb4d1ec9f2dcbde1757c4b7fb65b8682bc2de45b9552e201988f287548b7abdf"}, - {file = "Levenshtein-0.25.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b4d9fa3affef48a7e727cdbd0d9502cd060da86f34d8b3627edd769d347570e2"}, - {file = "Levenshtein-0.25.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c1b6cd186e58196ff8b402565317e9346b408d0c04fa0ed12ce4868c0fcb6d03"}, - {file = "Levenshtein-0.25.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82637ef5428384dd1812849dd7328992819bf0c4a20bff0a3b3ee806821af7ed"}, - {file = "Levenshtein-0.25.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e73656da6cc3e32a6e4bcd48562fcb64599ef124997f2c91f5320d7f1532c069"}, - {file = "Levenshtein-0.25.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5abff796f92cdfba69b9cbf6527afae918d0e95cbfac000bd84017f74e0bd427"}, - {file = "Levenshtein-0.25.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38827d82f2ca9cb755da6f03e686866f2f411280db005f4304272378412b4cba"}, - {file = "Levenshtein-0.25.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b989df1e3231261a87d68dfa001a2070771e178b09650f9cf99a20e3d3abc28"}, - {file = "Levenshtein-0.25.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:2011d3b3897d438a2f88ef7aed7747f28739cae8538ec7c18c33dd989930c7a0"}, - {file = "Levenshtein-0.25.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6c375b33ec7acc1c6855e8ee8c7c8ac6262576ffed484ff5c556695527f49686"}, - {file = "Levenshtein-0.25.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ce0cb9dd012ef1bf4d5b9d40603e7709b6581aec5acd32fcea9b371b294ca7aa"}, - {file = "Levenshtein-0.25.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:9da9ecb81bae67d784defed7274f894011259b038ec31f2339c4958157970115"}, - {file = "Levenshtein-0.25.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3bd7be5dbe5f4a1b691f381e39512927b39d1e195bd0ad61f9bf217a25bf36c9"}, - {file = "Levenshtein-0.25.1-cp310-cp310-win32.whl", hash = "sha256:f6abb9ced98261de67eb495b95e1d2325fa42b0344ed5763f7c0f36ee2e2bdba"}, - {file = "Levenshtein-0.25.1-cp310-cp310-win_amd64.whl", hash = "sha256:97581af3e0a6d359af85c6cf06e51f77f4d635f7109ff7f8ed7fd634d8d8c923"}, - {file = "Levenshtein-0.25.1-cp310-cp310-win_arm64.whl", hash = "sha256:9ba008f490788c6d8d5a10735fcf83559965be97e4ef0812db388a84b1cc736a"}, - {file = "Levenshtein-0.25.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f57d9cf06dac55c2d2f01f0d06e32acc074ab9a902921dc8fddccfb385053ad5"}, - {file = "Levenshtein-0.25.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:22b60c6d791f4ca67a3686b557ddb2a48de203dae5214f220f9dddaab17f44bb"}, - {file = "Levenshtein-0.25.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d0444ee62eccf1e6cedc7c5bc01a9face6ff70cc8afa3f3ca9340e4e16f601a4"}, - {file = "Levenshtein-0.25.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e8758be8221a274c83924bae8dd8f42041792565a3c3bdd3c10e3f9b4a5f94e"}, - {file = "Levenshtein-0.25.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:147221cfb1d03ed81d22fdd2a4c7fc2112062941b689e027a30d2b75bbced4a3"}, - {file = "Levenshtein-0.25.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a454d5bc4f4a289f5471418788517cc122fcc00d5a8aba78c54d7984840655a2"}, - {file = "Levenshtein-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c25f3778bbac78286bef2df0ca80f50517b42b951af0a5ddaec514412f79fac"}, - {file = "Levenshtein-0.25.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:181486cf465aff934694cc9a19f3898a1d28025a9a5f80fc1608217e7cd1c799"}, - {file = "Levenshtein-0.25.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b8db9f672a5d150706648b37b044dba61f36ab7216c6a121cebbb2899d7dfaa3"}, - {file = "Levenshtein-0.25.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f2a69fe5ddea586d439f9a50d0c51952982f6c0db0e3573b167aa17e6d1dfc48"}, - {file = "Levenshtein-0.25.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:3b684675a3bd35efa6997856e73f36c8a41ef62519e0267dcbeefd15e26cae71"}, - {file = "Levenshtein-0.25.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:cc707ef7edb71f6bf8339198b929ead87c022c78040e41668a4db68360129cef"}, - {file = "Levenshtein-0.25.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:41512c436b8c691326e2d07786d906cba0e92b5e3f455bf338befb302a0ca76d"}, - {file = "Levenshtein-0.25.1-cp311-cp311-win32.whl", hash = "sha256:2a3830175c01ade832ba0736091283f14a6506a06ffe8c846f66d9fbca91562f"}, - {file = "Levenshtein-0.25.1-cp311-cp311-win_amd64.whl", hash = "sha256:9e0af4e6e023e0c8f79af1d1ca5f289094eb91201f08ad90f426d71e4ae84052"}, - {file = "Levenshtein-0.25.1-cp311-cp311-win_arm64.whl", hash = "sha256:38e5d9a1d737d7b49fa17d6a4c03a0359288154bf46dc93b29403a9dd0cd1a7d"}, - {file = "Levenshtein-0.25.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4a40fa16ecd0bf9e557db67131aabeea957f82fe3e8df342aa413994c710c34e"}, - {file = "Levenshtein-0.25.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4f7d2045d5927cffa65a0ac671c263edbfb17d880fdce2d358cd0bda9bcf2b6d"}, - {file = "Levenshtein-0.25.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40f96590539f9815be70e330b4d2efcce0219db31db5a22fffe99565192f5662"}, - {file = "Levenshtein-0.25.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d78512dd25b572046ff86d8903bec283c373063349f8243430866b6a9946425"}, - {file = "Levenshtein-0.25.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c161f24a1b216e8555c874c7dd70c1a0d98f783f252a16c9face920a8b8a6f3e"}, - {file = "Levenshtein-0.25.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06ebbfd010a00490795f478d18d7fa2ffc79c9c03fc03b678081f31764d16bab"}, - {file = "Levenshtein-0.25.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaa9ec0a4489ebfb25a9ec2cba064ed68d0d2485b8bc8b7203f84a7874755e0f"}, - {file = "Levenshtein-0.25.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:26408938a6db7b252824a701545d50dc9cdd7a3e4c7ee70834cca17953b76ad8"}, - {file = "Levenshtein-0.25.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:330ec2faff957281f4e6a1a8c88286d1453e1d73ee273ea0f937e0c9281c2156"}, - {file = "Levenshtein-0.25.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9115d1b08626dfdea6f3955cb49ba5a578f7223205f80ead0038d6fc0442ce13"}, - {file = "Levenshtein-0.25.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:bbd602edab758e93a5c67bf0d8322f374a47765f1cdb6babaf593a64dc9633ad"}, - {file = "Levenshtein-0.25.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b930b4df32cd3aabbed0e9f0c4fdd1ea4090a5c022ba9f1ae4ab70ccf1cf897a"}, - {file = "Levenshtein-0.25.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:dd66fb51f88a3f73a802e1ff19a14978ddc9fbcb7ce3a667ca34f95ef54e0e44"}, - {file = "Levenshtein-0.25.1-cp312-cp312-win32.whl", hash = "sha256:386de94bd1937a16ae3c8f8b7dd2eff1b733994ecf56ce4d05dfdd0e776d0261"}, - {file = "Levenshtein-0.25.1-cp312-cp312-win_amd64.whl", hash = "sha256:9ee1902153d47886c9787598a4a5c324ce7fde44d44daa34fcf3652ac0de21bc"}, - {file = "Levenshtein-0.25.1-cp312-cp312-win_arm64.whl", hash = "sha256:b56a7e7676093c3aee50402226f4079b15bd21b5b8f1820f9d6d63fe99dc4927"}, - {file = "Levenshtein-0.25.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6b5dfdf6a0e2f35fd155d4c26b03398499c24aba7bc5db40245789c46ad35c04"}, - {file = "Levenshtein-0.25.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:355ff797f704459ddd8b95354d699d0d0642348636c92d5e67b49be4b0e6112b"}, - {file = "Levenshtein-0.25.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:933b827a3b721210fff522f3dca9572f9f374a0e88fa3a6c7ee3164406ae7794"}, - {file = "Levenshtein-0.25.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be1da669a240f272d904ab452ad0a1603452e190f4e03e886e6b3a9904152b89"}, - {file = "Levenshtein-0.25.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:265cbd78962503a26f2bea096258a3b70b279bb1a74a525c671d3ee43a190f9c"}, - {file = "Levenshtein-0.25.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:63cc4d53a35e673b12b721a58b197b4a65734688fb72aa1987ce63ed612dca96"}, - {file = "Levenshtein-0.25.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75fee0c471b8799c70dad9d0d5b70f1f820249257f9617601c71b6c1b37bee92"}, - {file = "Levenshtein-0.25.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:045d6b0db124fbd37379b2b91f6d0786c2d9220e7a848e2dd31b99509a321240"}, - {file = "Levenshtein-0.25.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:db7a2e9c51ac9cc2fd5679484f1eac6e0ab2085cb181240445f7fbf10df73230"}, - {file = "Levenshtein-0.25.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c379c588aa0d93d4607db7eb225fd683263d49669b1bbe49e28c978aa6a4305d"}, - {file = "Levenshtein-0.25.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:966dd00424df7f69b78da02a29b530fbb6c1728e9002a2925ed7edf26b231924"}, - {file = "Levenshtein-0.25.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:09daa6b068709cc1e68b670a706d928ed8f0b179a26161dd04b3911d9f757525"}, - {file = "Levenshtein-0.25.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d6bed0792635081accf70a7e11cfece986f744fddf46ce26808cd8bfc067e430"}, - {file = "Levenshtein-0.25.1-cp38-cp38-win32.whl", hash = "sha256:28e7b7faf5a745a690d1b1706ab82a76bbe9fa6b729d826f0cfdd24fd7c19740"}, - {file = "Levenshtein-0.25.1-cp38-cp38-win_amd64.whl", hash = "sha256:8ca0cc9b9e07316b5904f158d5cfa340d55b4a3566ac98eaac9f087c6efb9a1a"}, - {file = "Levenshtein-0.25.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:45682cdb3ac4a5465c01b2dce483bdaa1d5dcd1a1359fab37d26165b027d3de2"}, - {file = "Levenshtein-0.25.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f8dc3e63c4cd746ec162a4cd744c6dde857e84aaf8c397daa46359c3d54e6219"}, - {file = "Levenshtein-0.25.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:01ad1eb09933a499a49923e74e05b1428ca4ef37fed32965fef23f1334a11563"}, - {file = "Levenshtein-0.25.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cbb4e8c4b8b7bbe0e1aa64710b806b6c3f31d93cb14969ae2c0eff0f3a592db8"}, - {file = "Levenshtein-0.25.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b48d1fe224b365975002e3e2ea947cbb91d2936a16297859b71c4abe8a39932c"}, - {file = "Levenshtein-0.25.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a164df16d876aab0a400f72aeac870ea97947ea44777c89330e9a16c7dc5cc0e"}, - {file = "Levenshtein-0.25.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:995d3bcedcf64be6ceca423f6cfe29184a36d7c4cbac199fdc9a0a5ec7196cf5"}, - {file = "Levenshtein-0.25.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bdaf62d637bef6711d6f3457e2684faab53b2db2ed53c05bc0dc856464c74742"}, - {file = "Levenshtein-0.25.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:af9de3b5f8f5f3530cfd97daab9ab480d1b121ef34d8c0aa5bab0c645eae219e"}, - {file = "Levenshtein-0.25.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:78fba73c352383b356a30c4674e39f086ffef7122fa625e7550b98be2392d387"}, - {file = "Levenshtein-0.25.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:9e0df0dcea3943321398f72e330c089b5d5447318310db6f17f5421642f3ade6"}, - {file = "Levenshtein-0.25.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:387f768bb201b9bc45f0f49557e2fb9a3774d9d087457bab972162dcd4fd352b"}, - {file = "Levenshtein-0.25.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5dcf931b64311039b43495715e9b795fbd97ab44ba3dd6bf24360b15e4e87649"}, - {file = "Levenshtein-0.25.1-cp39-cp39-win32.whl", hash = "sha256:2449f8668c0bd62a2b305a5e797348984c06ac20903b38b3bab74e55671ddd51"}, - {file = "Levenshtein-0.25.1-cp39-cp39-win_amd64.whl", hash = "sha256:28803fd6ec7b58065621f5ec0d24e44e2a7dc4842b64dcab690cb0a7ea545210"}, - {file = "Levenshtein-0.25.1-cp39-cp39-win_arm64.whl", hash = "sha256:0b074d452dff8ee86b5bdb6031aa32bb2ed3c8469a56718af5e010b9bb5124dc"}, - {file = "Levenshtein-0.25.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e9e060ef3925a68aeb12276f0e524fb1264592803d562ec0306c7c3f5c68eae0"}, - {file = "Levenshtein-0.25.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f84b84049318d44722db307c448f9dcb8d27c73525a378e901189a94889ba61"}, - {file = "Levenshtein-0.25.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07e23fdf330cb185a0c7913ca5bd73a189dfd1742eae3a82e31ed8688b191800"}, - {file = "Levenshtein-0.25.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d06958e4a81ea0f0b2b7768a2ad05bcd50a9ad04c4d521dd37d5730ff12decdc"}, - {file = "Levenshtein-0.25.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:2ea7c34ec22b2fce21299b0caa6dde6bdebafcc2970e265853c9cfea8d1186da"}, - {file = "Levenshtein-0.25.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fddc0ccbdd94f57aa32e2eb3ac8310d08df2e175943dc20b3e1fc7a115850af4"}, - {file = "Levenshtein-0.25.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d52249cb3448bfe661d3d7db3a6673e835c7f37b30b0aeac499a1601bae873d"}, - {file = "Levenshtein-0.25.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8dd4c201b15f8c1e612f9074335392c8208ac147acbce09aff04e3974bf9b16"}, - {file = "Levenshtein-0.25.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23a4d95ce9d44161c7aa87ab76ad6056bc1093c461c60c097054a46dc957991f"}, - {file = "Levenshtein-0.25.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:65eea8a9c33037b23069dca4b3bc310e3c28ca53f60ec0c958d15c0952ba39fa"}, - {file = "Levenshtein-0.25.1.tar.gz", hash = "sha256:2df14471c778c75ffbd59cb64bbecfd4b0ef320ef9f80e4804764be7d5678980"}, + {file = "levenshtein-0.26.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8dc4a4aecad538d944a1264c12769c99e3c0bf8e741fc5e454cc954913befb2e"}, + {file = "levenshtein-0.26.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec108f368c12b25787c8b1a4537a1452bc53861c3ee4abc810cc74098278edcd"}, + {file = "levenshtein-0.26.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69229d651c97ed5b55b7ce92481ed00635cdbb80fbfb282a22636e6945dc52d5"}, + {file = "levenshtein-0.26.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79dcd157046d62482a7719b08ba9e3ce9ed3fc5b015af8ea989c734c702aedd4"}, + {file = "levenshtein-0.26.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f53f9173ae21b650b4ed8aef1d0ad0c37821f367c221a982f4d2922b3044e0d"}, + {file = "levenshtein-0.26.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3956f3c5c229257dbeabe0b6aacd2c083ebcc1e335842a6ff2217fe6cc03b6b"}, + {file = "levenshtein-0.26.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1e83af732726987d2c4cd736f415dae8b966ba17b7a2239c8b7ffe70bfb5543"}, + {file = "levenshtein-0.26.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4f052c55046c2a9c9b5f742f39e02fa6e8db8039048b8c1c9e9fdd27c8a240a1"}, + {file = "levenshtein-0.26.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9895b3a98f6709e293615fde0dcd1bb0982364278fa2072361a1a31b3e388b7a"}, + {file = "levenshtein-0.26.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a3777de1d8bfca054465229beed23994f926311ce666f5a392c8859bb2722f16"}, + {file = "levenshtein-0.26.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:81c57e1135c38c5e6e3675b5e2077d8a8d3be32bf0a46c57276c092b1dffc697"}, + {file = "levenshtein-0.26.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:91d5e7d984891df3eff7ea9fec8cf06fdfacc03cd074fd1a410435706f73b079"}, + {file = "levenshtein-0.26.1-cp310-cp310-win32.whl", hash = "sha256:f48abff54054b4142ad03b323e80aa89b1d15cabc48ff49eb7a6ff7621829a56"}, + {file = "levenshtein-0.26.1-cp310-cp310-win_amd64.whl", hash = "sha256:79dd6ad799784ea7b23edd56e3bf94b3ca866c4c6dee845658ee75bb4aefdabf"}, + {file = "levenshtein-0.26.1-cp310-cp310-win_arm64.whl", hash = "sha256:3351ddb105ef010cc2ce474894c5d213c83dddb7abb96400beaa4926b0b745bd"}, + {file = "levenshtein-0.26.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:44c51f5d33b3cfb9db518b36f1288437a509edd82da94c4400f6a681758e0cb6"}, + {file = "levenshtein-0.26.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56b93203e725f9df660e2afe3d26ba07d71871b6d6e05b8b767e688e23dfb076"}, + {file = "levenshtein-0.26.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:270d36c5da04a0d89990660aea8542227cbd8f5bc34e9fdfadd34916ff904520"}, + {file = "levenshtein-0.26.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:480674c05077eeb0b0f748546d4fcbb386d7c737f9fff0010400da3e8b552942"}, + {file = "levenshtein-0.26.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13946e37323728695ba7a22f3345c2e907d23f4600bc700bf9b4352fb0c72a48"}, + {file = "levenshtein-0.26.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ceb673f572d1d0dc9b1cd75792bb8bad2ae8eb78a7c6721e23a3867d318cb6f2"}, + {file = "levenshtein-0.26.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42d6fa242e3b310ce6bfd5af0c83e65ef10b608b885b3bb69863c01fb2fcff98"}, + {file = "levenshtein-0.26.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b8b68295808893a81e0a1dbc2274c30dd90880f14d23078e8eb4325ee615fc68"}, + {file = "levenshtein-0.26.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:b01061d377d1944eb67bc40bef5d4d2f762c6ab01598efd9297ce5d0047eb1b5"}, + {file = "levenshtein-0.26.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:9d12c8390f156745e533d01b30773b9753e41d8bbf8bf9dac4b97628cdf16314"}, + {file = "levenshtein-0.26.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:48825c9f967f922061329d1481b70e9fee937fc68322d6979bc623f69f75bc91"}, + {file = "levenshtein-0.26.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d8ec137170b95736842f99c0e7a9fd8f5641d0c1b63b08ce027198545d983e2b"}, + {file = "levenshtein-0.26.1-cp311-cp311-win32.whl", hash = "sha256:798f2b525a2e90562f1ba9da21010dde0d73730e277acaa5c52d2a6364fd3e2a"}, + {file = "levenshtein-0.26.1-cp311-cp311-win_amd64.whl", hash = "sha256:55b1024516c59df55f1cf1a8651659a568f2c5929d863d3da1ce8893753153bd"}, + {file = "levenshtein-0.26.1-cp311-cp311-win_arm64.whl", hash = "sha256:e52575cbc6b9764ea138a6f82d73d3b1bc685fe62e207ff46a963d4c773799f6"}, + {file = "levenshtein-0.26.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc741ca406d3704dc331a69c04b061fc952509a069b79cab8287413f434684bd"}, + {file = "levenshtein-0.26.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:821ace3b4e1c2e02b43cf5dc61aac2ea43bdb39837ac890919c225a2c3f2fea4"}, + {file = "levenshtein-0.26.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f92694c9396f55d4c91087efacf81297bef152893806fc54c289fc0254b45384"}, + {file = "levenshtein-0.26.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51ba374de7a1797d04a14a4f0ad3602d2d71fef4206bb20a6baaa6b6a502da58"}, + {file = "levenshtein-0.26.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7aa5c3327dda4ef952769bacec09c09ff5bf426e07fdc94478c37955681885b"}, + {file = "levenshtein-0.26.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33e2517e8d3c221de2d1183f400aed64211fcfc77077b291ed9f3bb64f141cdc"}, + {file = "levenshtein-0.26.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9092b622765c7649dd1d8af0f43354723dd6f4e570ac079ffd90b41033957438"}, + {file = "levenshtein-0.26.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:fc16796c85d7d8b259881d59cc8b5e22e940901928c2ff6924b2c967924e8a0b"}, + {file = "levenshtein-0.26.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4370733967f5994ceeed8dc211089bedd45832ee688cecea17bfd35a9eb22b9"}, + {file = "levenshtein-0.26.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3535ecfd88c9b283976b5bc61265855f59bba361881e92ed2b5367b6990c93fe"}, + {file = "levenshtein-0.26.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:90236e93d98bdfd708883a6767826fafd976dac8af8fc4a0fb423d4fa08e1bf0"}, + {file = "levenshtein-0.26.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:04b7cabb82edf566b1579b3ed60aac0eec116655af75a3c551fee8754ffce2ea"}, + {file = "levenshtein-0.26.1-cp312-cp312-win32.whl", hash = "sha256:ae382af8c76f6d2a040c0d9ca978baf461702ceb3f79a0a3f6da8d596a484c5b"}, + {file = "levenshtein-0.26.1-cp312-cp312-win_amd64.whl", hash = "sha256:fd091209798cfdce53746f5769987b4108fe941c54fb2e058c016ffc47872918"}, + {file = "levenshtein-0.26.1-cp312-cp312-win_arm64.whl", hash = "sha256:7e82f2ea44a81ad6b30d92a110e04cd3c8c7c6034b629aca30a3067fa174ae89"}, + {file = "levenshtein-0.26.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:790374a9f5d2cbdb30ee780403a62e59bef51453ac020668c1564d1e43438f0e"}, + {file = "levenshtein-0.26.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7b05c0415c386d00efda83d48db9db68edd02878d6dbc6df01194f12062be1bb"}, + {file = "levenshtein-0.26.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3114586032361722ddededf28401ce5baf1cf617f9f49fb86b8766a45a423ff"}, + {file = "levenshtein-0.26.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2532f8a13b68bf09f152d906f118a88da2063da22f44c90e904b142b0a53d534"}, + {file = "levenshtein-0.26.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:219c30be6aa734bf927188d1208b7d78d202a3eb017b1c5f01ab2034d2d4ccca"}, + {file = "levenshtein-0.26.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:397e245e77f87836308bd56305bba630010cd8298c34c4c44bd94990cdb3b7b1"}, + {file = "levenshtein-0.26.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aeff6ea3576f72e26901544c6c55c72a7b79b9983b6f913cba0e9edbf2f87a97"}, + {file = "levenshtein-0.26.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a19862e3539a697df722a08793994e334cd12791e8144851e8a1dee95a17ff63"}, + {file = "levenshtein-0.26.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:dc3b5a64f57c3c078d58b1e447f7d68cad7ae1b23abe689215d03fc434f8f176"}, + {file = "levenshtein-0.26.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bb6c7347424a91317c5e1b68041677e4c8ed3e7823b5bbaedb95bffb3c3497ea"}, + {file = "levenshtein-0.26.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b817376de4195a207cc0e4ca37754c0e1e1078c2a2d35a6ae502afde87212f9e"}, + {file = "levenshtein-0.26.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7b50c3620ff47c9887debbb4c154aaaac3e46be7fc2e5789ee8dbe128bce6a17"}, + {file = "levenshtein-0.26.1-cp313-cp313-win32.whl", hash = "sha256:9fb859da90262eb474c190b3ca1e61dee83add022c676520f5c05fdd60df902a"}, + {file = "levenshtein-0.26.1-cp313-cp313-win_amd64.whl", hash = "sha256:8adcc90e3a5bfb0a463581d85e599d950fe3c2938ac6247b29388b64997f6e2d"}, + {file = "levenshtein-0.26.1-cp313-cp313-win_arm64.whl", hash = "sha256:c2599407e029865dc66d210b8804c7768cbdbf60f061d993bb488d5242b0b73e"}, + {file = "levenshtein-0.26.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dc54ced948fc3feafce8ad4ba4239d8ffc733a0d70e40c0363ac2a7ab2b7251e"}, + {file = "levenshtein-0.26.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e6516f69213ae393a220e904332f1a6bfc299ba22cf27a6520a1663a08eba0fb"}, + {file = "levenshtein-0.26.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4cfea4eada1746d0c75a864bc7e9e63d4a6e987c852d6cec8d9cb0c83afe25b"}, + {file = "levenshtein-0.26.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a323161dfeeac6800eb13cfe76a8194aec589cd948bcf1cdc03f66cc3ec26b72"}, + {file = "levenshtein-0.26.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2c23e749b68ebc9a20b9047317b5cd2053b5856315bc8636037a8adcbb98bed1"}, + {file = "levenshtein-0.26.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f80dd7432d4b6cf493d012d22148db7af769017deb31273e43406b1fb7f091c"}, + {file = "levenshtein-0.26.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ae7cd6e4312c6ef34b2e273836d18f9fff518d84d823feff5ad7c49668256e0"}, + {file = "levenshtein-0.26.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdad740e841d791b805421c2b20e859b4ed556396d3063b3aa64cd055be648c"}, + {file = "levenshtein-0.26.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e07afb1613d6f5fd99abd4e53ad3b446b4efaa0f0d8e9dfb1d6d1b9f3f884d32"}, + {file = "levenshtein-0.26.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:f1add8f1d83099a98ae4ac472d896b7e36db48c39d3db25adf12b373823cdeff"}, + {file = "levenshtein-0.26.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1010814b1d7a60833a951f2756dfc5c10b61d09976ce96a0edae8fecdfb0ea7c"}, + {file = "levenshtein-0.26.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:33fa329d1bb65ce85e83ceda281aea31cee9f2f6e167092cea54f922080bcc66"}, + {file = "levenshtein-0.26.1-cp39-cp39-win32.whl", hash = "sha256:488a945312f2f16460ab61df5b4beb1ea2254c521668fd142ce6298006296c98"}, + {file = "levenshtein-0.26.1-cp39-cp39-win_amd64.whl", hash = "sha256:9f942104adfddd4b336c3997050121328c39479f69de702d7d144abb69ea7ab9"}, + {file = "levenshtein-0.26.1-cp39-cp39-win_arm64.whl", hash = "sha256:c1d8f85b2672939f85086ed75effcf768f6077516a3e299c2ba1f91bc4644c22"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6cf8f1efaf90ca585640c5d418c30b7d66d9ac215cee114593957161f63acde0"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d5b2953978b8c158dd5cd93af8216a5cfddbf9de66cf5481c2955f44bb20767a"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b952b3732c4631c49917d4b15d78cb4a2aa006c1d5c12e2a23ba8e18a307a055"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07227281e12071168e6ae59238918a56d2a0682e529f747b5431664f302c0b42"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8191241cd8934feaf4d05d0cc0e5e72877cbb17c53bbf8c92af9f1aedaa247e9"}, + {file = "levenshtein-0.26.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9e70d7ee157a9b698c73014f6e2b160830e7d2d64d2e342fefc3079af3c356fc"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0eb3059f826f6cb0a5bca4a85928070f01e8202e7ccafcba94453470f83e49d4"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:6c389e44da12d6fb1d7ba0a709a32a96c9391e9be4160ccb9269f37e040599ee"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e9de292f2c51a7d34a0ae23bec05391b8f61f35781cd3e4c6d0533e06250c55"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d87215113259efdca8716e53b6d59ab6d6009e119d95d45eccc083148855f33"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18f00a3eebf68a82fb651d8d0e810c10bfaa60c555d21dde3ff81350c74fb4c2"}, + {file = "levenshtein-0.26.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:b3554c1b59de63d05075577380340c185ff41b028e541c0888fddab3c259a2b4"}, + {file = "levenshtein-0.26.1.tar.gz", hash = "sha256:0d19ba22330d50609b2349021ec3cf7d905c6fe21195a2d0d876a146e7ed2575"}, ] [package.dependencies] -rapidfuzz = ">=3.8.0,<4.0.0" +rapidfuzz = ">=3.9.0,<4.0.0" [[package]] name = "markupsafe" @@ -635,13 +634,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "prisma" -version = "0.13.1" +version = "0.15.0" description = "Prisma Client Python is an auto-generated and fully type-safe database client" optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" files = [ - {file = "prisma-0.13.1-py3-none-any.whl", hash = "sha256:b79ad69bdf09b217431904c1250c36421233ea394a230f1665f5699fd842ea20"}, - {file = "prisma-0.13.1.tar.gz", hash = "sha256:f0f86a67c38e6f08b53cce9272dd9c736f69f4fcbb94dbdfa87bf44f983e925d"}, + {file = "prisma-0.15.0-py3-none-any.whl", hash = "sha256:de949cc94d3d91243615f22ff64490aa6e2d7cb81aabffce53d92bd3977c09a4"}, + {file = "prisma-0.15.0.tar.gz", hash = "sha256:5cd6402aa8322625db3fc1152040404e7fc471fe7f8fa3a314fa8a99529ca107"}, ] [package.dependencies] @@ -919,17 +918,17 @@ cli = ["click (>=5.0)"] [[package]] name = "python-levenshtein" -version = "0.25.1" +version = "0.26.1" description = "Python extension for computing string edit distances and similarities." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "python-Levenshtein-0.25.1.tar.gz", hash = "sha256:b21e7efe83c8e8dc8260f2143b2393c6c77cb2956f0c53de6c4731c4d8006acc"}, - {file = "python_Levenshtein-0.25.1-py3-none-any.whl", hash = "sha256:654446d1ea4acbcc573d44c43775854834a7547e4cb2f79f638f738134d72037"}, + {file = "python_Levenshtein-0.26.1-py3-none-any.whl", hash = "sha256:8ef5e529dd640fb00f05ee62d998d2ee862f19566b641ace775d5ae16167b2ef"}, + {file = "python_levenshtein-0.26.1.tar.gz", hash = "sha256:24ba578e28058ebb4afa2700057e1678d7adf27e43cd1f17700c09a9009d5d3a"}, ] [package.dependencies] -Levenshtein = "0.25.1" +Levenshtein = "0.26.1" [[package]] name = "rapidfuzz" @@ -1086,13 +1085,13 @@ files = [ [[package]] name = "sentry-sdk" -version = "2.12.0" +version = "2.17.0" description = "Python client for Sentry (https://sentry.io)" optional = false python-versions = ">=3.6" files = [ - {file = "sentry_sdk-2.12.0-py2.py3-none-any.whl", hash = "sha256:7a8d5163d2ba5c5f4464628c6b68f85e86972f7c636acc78aed45c61b98b7a5e"}, - {file = "sentry_sdk-2.12.0.tar.gz", hash = "sha256:8763840497b817d44c49b3fe3f5f7388d083f2337ffedf008b2cdb63b5c86dc6"}, + {file = "sentry_sdk-2.17.0-py2.py3-none-any.whl", hash = "sha256:625955884b862cc58748920f9e21efdfb8e0d4f98cca4ab0d3918576d5b606ad"}, + {file = "sentry_sdk-2.17.0.tar.gz", hash = "sha256:dd0a05352b78ffeacced73a94e86f38b32e2eae15fff5f30ca5abb568a72eacf"}, ] [package.dependencies] @@ -1116,10 +1115,12 @@ falcon = ["falcon (>=1.4)"] fastapi = ["fastapi (>=0.79.0)"] flask = ["blinker (>=1.1)", "flask (>=0.11)", "markupsafe"] grpcio = ["grpcio (>=1.21.1)", "protobuf (>=3.8.0)"] +http2 = ["httpcore[http2] (==1.*)"] httpx = ["httpx (>=0.16.0)"] huey = ["huey (>=2)"] huggingface-hub = ["huggingface-hub (>=0.22)"] langchain = ["langchain (>=0.0.210)"] +litestar = ["litestar (>=2.0.0)"] loguru = ["loguru (>=0.5)"] openai = ["openai (>=1.0.0)", "tiktoken (>=0.3.0)"] opentelemetry = ["opentelemetry-distro (>=0.35b0)"] @@ -1148,13 +1149,13 @@ files = [ [[package]] name = "starlette" -version = "0.36.3" +version = "0.41.2" description = "The little ASGI library that shines." optional = false python-versions = ">=3.8" files = [ - {file = "starlette-0.36.3-py3-none-any.whl", hash = "sha256:13d429aa93a61dc40bf503e8c801db1f1bca3dc706b10ef2434a36123568f044"}, - {file = "starlette-0.36.3.tar.gz", hash = "sha256:90a671733cfb35771d8cc605e0b679d23b992f8dcfad48cc60b38cb29aeb7080"}, + {file = "starlette-0.41.2-py3-none-any.whl", hash = "sha256:fbc189474b4731cf30fcef52f18a8d070e3f3b46c6a04c97579e85e6ffca942d"}, + {file = "starlette-0.41.2.tar.gz", hash = "sha256:9834fd799d1a87fd346deb76158668cfa0b0d56f85caefe8268e2d97c3468b62"}, ] [package.dependencies] @@ -1231,13 +1232,13 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "uvicorn" -version = "0.30.5" +version = "0.32.0" description = "The lightning-fast ASGI server." optional = false python-versions = ">=3.8" files = [ - {file = "uvicorn-0.30.5-py3-none-any.whl", hash = "sha256:b2d86de274726e9878188fa07576c9ceeff90a839e2b6e25c917fe05f5a6c835"}, - {file = "uvicorn-0.30.5.tar.gz", hash = "sha256:ac6fdbd4425c5fd17a9fe39daf4d4d075da6fdc80f653e5894cdc2fd98752bee"}, + {file = "uvicorn-0.32.0-py3-none-any.whl", hash = "sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82"}, + {file = "uvicorn-0.32.0.tar.gz", hash = "sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e"}, ] [package.dependencies] @@ -1295,4 +1296,4 @@ watchmedo = ["PyYAML (>=3.10)"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "19c9ea01b42caa67bb7fffe4f66c8f208e874886cd97279dfdf1f06dd7e3acf1" +content-hash = "f94a7651b3ddc7819bafdc75384cb8ad34f7a5415e652ecb5bd82d632d26e693" diff --git a/autogpt_platform/market/pyproject.toml b/autogpt_platform/market/pyproject.toml index aff44b0f7c83..6bda5b90f226 100644 --- a/autogpt_platform/market/pyproject.toml +++ b/autogpt_platform/market/pyproject.toml @@ -10,13 +10,13 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.10" -prisma = "^0.13.1" +prisma = "^0.15.0" python-dotenv = "^1.0.1" -uvicorn = "^0.30.3" -fastapi = "^0.109.0" -sentry-sdk = { extras = ["fastapi"], version = "^2.11.0" } +uvicorn = "^0.32.0" +fastapi = "^0.115.4" +sentry-sdk = { extras = ["fastapi"], version = "^2.17.0" } fuzzywuzzy = "^0.18.0" -python-levenshtein = "^0.25.1" +python-levenshtein = "^0.26.1" # autogpt-platform-backend = { path = "../backend", develop = true } prometheus-fastapi-instrumentator = "^7.0.0"