From 30376a8ec87600e9d73ad2f3bbbc6a88faaba962 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Sat, 19 Oct 2024 18:52:41 +0300 Subject: [PATCH] fix: update types reference (#8366) Signed-off-by: Emmanuel Ferdman --- docs/content/server/new_blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/server/new_blocks.md b/docs/content/server/new_blocks.md index 8cc5a52538..1c7c3684cf 100644 --- a/docs/content/server/new_blocks.md +++ b/docs/content/server/new_blocks.md @@ -196,7 +196,7 @@ class BlockWithAPIKeyAndOAuth(Block): 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/rnd/autogpt_libs/autogpt_libs/supabase_integration_credentials_store/types.py). +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