@@ -8,7 +8,6 @@ export default {
8
8
brandColor : '#072a8e' ,
9
9
description :
10
10
'Loop in which the AI agent decides at each step which tools to use and how, and which text to generate to respond to the user.' ,
11
-
12
11
allowChildOperations : true ,
13
12
subGraphDetails : {
14
13
tools : {
@@ -47,50 +46,32 @@ export default {
47
46
'x-ms-connection-required' : true ,
48
47
'x-ms-visibility' : 'important' ,
49
48
} ,
50
- messages : {
51
- description : 'Messages' ,
52
- type : 'array' ,
53
- items : {
54
- description : 'Message' ,
55
- required : [ 'Role' , 'Content' ] ,
56
- type : 'object' ,
57
- properties : {
58
- role : {
59
- description : 'Message role' ,
60
- type : 'string' ,
61
- 'x-ms-summary' : 'Role' ,
62
- } ,
63
- content : {
64
- description : 'Message content' ,
65
- type : 'string' ,
66
- 'x-ms-summary' : 'Content' ,
67
- } ,
68
- } ,
69
- } ,
70
- required : [ 'Role' , 'Content' ] ,
71
- 'x-ms-summary' : 'Messages' ,
49
+ instructions : {
50
+ title : 'Instructions' ,
51
+ description : 'Provide instructions for your agent' ,
52
+ type : 'string' ,
53
+ 'x-ms-summary' : 'Instructions' ,
72
54
'x-ms-visibility' : 'important' ,
73
55
} ,
74
56
limit : {
75
57
type : 'object' ,
76
58
'x-ms-group-name' : 'Change limits' ,
77
59
required : [ ] ,
60
+ default : { } ,
78
61
properties : {
79
62
count : {
80
63
type : 'integer' ,
81
- default : 60 ,
82
64
title : 'Count' ,
83
65
} ,
84
66
timeout : {
85
67
type : 'string' ,
86
- default : 'PT1H' ,
87
68
title : 'Timeout' ,
88
69
'x-ms-stateless-default' : 'PT5M' ,
89
70
} ,
90
71
} ,
91
72
} ,
92
73
} ,
93
- required : [ 'deploymentId' , 'messages ' ] ,
74
+ required : [ 'deploymentId' , 'instructions ' ] ,
94
75
} ,
95
76
inputsLocation : [ 'inputs' , 'parameters' ] ,
96
77
isInputsOptional : false ,
0 commit comments