From 347e4507289db734a88e04f571f16f9ba0d9e5aa Mon Sep 17 00:00:00 2001 From: abhi1992002 Date: Tue, 17 Feb 2026 12:18:15 +0530 Subject: [PATCH] fix(api): update OpenAPI description for folder ID handling - Modified the description for the `folder_id` field in the OpenAPI specification to clarify that using "None" will move the agent to the root folder instead of an empty string. - This change improves the accuracy and clarity of the API documentation regarding folder operations. --- autogpt_platform/frontend/src/app/api/openapi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/frontend/src/app/api/openapi.json b/autogpt_platform/frontend/src/app/api/openapi.json index d2a6e9aefb..abc24a1f47 100644 --- a/autogpt_platform/frontend/src/app/api/openapi.json +++ b/autogpt_platform/frontend/src/app/api/openapi.json @@ -9888,7 +9888,7 @@ "folder_id": { "anyOf": [{ "type": "string" }, { "type": "null" }], "title": "Folder Id", - "description": "Folder ID to move agent to (empty string for root)" + "description": "Folder ID to move agent to (None to move to root)" } }, "type": "object",