Skip to content

Commit 01c5dba

Browse files
authored
feat(Designer): Add reasoning flag to agent loop (#8697)
added reasoning effort with dropdown options
1 parent 4d13be2 commit 01c5dba

File tree

1 file changed

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

1 file changed

+29
-0
lines changed

libs/logic-apps-shared/src/designer-client-services/lib/standard/manifest/agentloop.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,35 @@ export default {
231231
],
232232
},
233233
},
234+
reasoningEffort: {
235+
type: 'string',
236+
title: 'Reasoning effort',
237+
'x-ms-editor': 'dropdown',
238+
'x-ms-editor-options': {
239+
options: [
240+
{
241+
value: 'low',
242+
displayName: 'Low',
243+
},
244+
{
245+
value: 'medium',
246+
displayName: 'Medium',
247+
},
248+
{
249+
value: 'high',
250+
displayName: 'High',
251+
},
252+
{
253+
value: 'none',
254+
displayName: 'None',
255+
},
256+
{
257+
value: 'minimal',
258+
displayName: 'Minimal',
259+
},
260+
],
261+
},
262+
},
234263
metadata: {
235264
type: 'object',
236265
title: 'Metadata',

0 commit comments

Comments
 (0)