Skip to content

Commit b44f666

Browse files
authored
feat(Designer): Add reasoning flag to agent loop in consumption (#8703)
added reasoning effort to consumption
1 parent 1d7e872 commit b44f666

File tree

1 file changed

+29
-0
lines changed
  • libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests

1 file changed

+29
-0
lines changed

libs/logic-apps-shared/src/designer-client-services/lib/consumption/manifests/agentloop.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,35 @@ export default {
177177
minimum: 0,
178178
maximum: 2.0,
179179
},
180+
reasoningEffort: {
181+
type: 'string',
182+
title: 'Reasoning effort',
183+
'x-ms-editor': 'dropdown',
184+
'x-ms-editor-options': {
185+
options: [
186+
{
187+
value: 'low',
188+
displayName: 'Low',
189+
},
190+
{
191+
value: 'medium',
192+
displayName: 'Medium',
193+
},
194+
{
195+
value: 'high',
196+
displayName: 'High',
197+
},
198+
{
199+
value: 'none',
200+
displayName: 'None',
201+
},
202+
{
203+
value: 'minimal',
204+
displayName: 'Minimal',
205+
},
206+
],
207+
},
208+
},
180209
},
181210
},
182211
},

0 commit comments

Comments
 (0)