From c5a6399d51d21bac047691e100994460ae03ee61 Mon Sep 17 00:00:00 2001 From: Elaina Lee Date: Thu, 15 Jan 2026 11:07:50 -0800 Subject: [PATCH] added reasoning effort to consumption --- .../lib/consumption/manifests/agentloop.ts | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests/agentloop.ts b/libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests/agentloop.ts index b1fe0b53243..8ad2a8f5d88 100644 --- a/libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests/agentloop.ts +++ b/libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests/agentloop.ts @@ -177,6 +177,35 @@ export default { minimum: 0, maximum: 2.0, }, + reasoningEffort: { + type: 'string', + title: 'Reasoning effort', + 'x-ms-editor': 'dropdown', + 'x-ms-editor-options': { + options: [ + { + value: 'low', + displayName: 'Low', + }, + { + value: 'medium', + displayName: 'Medium', + }, + { + value: 'high', + displayName: 'High', + }, + { + value: 'none', + displayName: 'None', + }, + { + value: 'minimal', + displayName: 'Minimal', + }, + ], + }, + }, }, }, },