From 84f30775fd6eff57d63c57abc4129502189ea1f2 Mon Sep 17 00:00:00 2001 From: Bentlybro Date: Thu, 26 Mar 2026 10:33:36 +0000 Subject: [PATCH] Add is_enabled field to OpenAPI model Introduce a new boolean property `is_enabled` (default: true) into the OpenAPI schema in autogpt_platform/frontend/src/app/api/openapi.json next to `price_tier` and `is_recommended`. This exposes an enable/disable flag in the API model for consumers and defaults new entries to enabled. --- autogpt_platform/frontend/src/app/api/openapi.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autogpt_platform/frontend/src/app/api/openapi.json b/autogpt_platform/frontend/src/app/api/openapi.json index 9665df9dc1..ce37907d4f 100644 --- a/autogpt_platform/frontend/src/app/api/openapi.json +++ b/autogpt_platform/frontend/src/app/api/openapi.json @@ -10346,6 +10346,11 @@ "title": "Max Output Tokens" }, "price_tier": { "type": "integer", "title": "Price Tier" }, + "is_enabled": { + "type": "boolean", + "title": "Is Enabled", + "default": true + }, "is_recommended": { "type": "boolean", "title": "Is Recommended",