@quantcdn/pulumi-quant 5.5.2 → 5.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/slackBot.d.ts +192 -12
- package/slackBot.js +39 -6
- package/slackBot.js.map +1 -1
- package/types/input.d.ts +21 -2
- package/types/output.d.ts +21 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantcdn/pulumi-quant",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
4
4
|
"description": "A Pulumi package for managing QuantCDN resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "quant",
|
|
28
|
-
"version": "5.
|
|
28
|
+
"version": "5.6.0",
|
|
29
29
|
"server": "github://api.github.com/quantcdn/terraform-provider-quant"
|
|
30
30
|
},
|
|
31
31
|
"main": "index.js",
|
package/slackBot.d.ts
CHANGED
|
@@ -18,18 +18,58 @@ export declare class SlackBot extends pulumi.CustomResource {
|
|
|
18
18
|
*/
|
|
19
19
|
static isInstance(obj: any): obj is SlackBot;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Agent-level access control settings
|
|
22
22
|
*/
|
|
23
|
-
readonly
|
|
23
|
+
readonly agentAccessControl: pulumi.Output<outputs.SlackBotAgentAccessControl>;
|
|
24
|
+
/**
|
|
25
|
+
* Whether guest users may interact with the bot
|
|
26
|
+
*/
|
|
27
|
+
readonly allowGuests: pulumi.Output<boolean>;
|
|
24
28
|
/**
|
|
25
29
|
* Slack channel IDs the bot may respond in
|
|
26
30
|
*/
|
|
27
31
|
readonly allowedChannels: pulumi.Output<string[]>;
|
|
32
|
+
/**
|
|
33
|
+
* Vector DB collections the agent may query
|
|
34
|
+
*/
|
|
35
|
+
readonly allowedCollections: pulumi.Output<string[]>;
|
|
36
|
+
/**
|
|
37
|
+
* Sub-agents the agent may call
|
|
38
|
+
*/
|
|
39
|
+
readonly allowedSubAgents: pulumi.Output<string[]>;
|
|
40
|
+
/**
|
|
41
|
+
* Tools the agent may use
|
|
42
|
+
*/
|
|
43
|
+
readonly allowedTools: pulumi.Output<string[]>;
|
|
44
|
+
/**
|
|
45
|
+
* Slack user IDs allowed to interact with the bot
|
|
46
|
+
*/
|
|
47
|
+
readonly allowedUsers: pulumi.Output<string[]>;
|
|
48
|
+
/**
|
|
49
|
+
* Skills assigned to the agent
|
|
50
|
+
*/
|
|
51
|
+
readonly assignedSkills: pulumi.Output<string[]>;
|
|
28
52
|
readonly bot: pulumi.Output<outputs.SlackBotBot>;
|
|
29
53
|
/**
|
|
30
54
|
* The Slack bot ID
|
|
31
55
|
*/
|
|
32
56
|
readonly botId: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Slack user IDs denied from interacting with the bot
|
|
59
|
+
*/
|
|
60
|
+
readonly deniedUsers: pulumi.Output<string[]>;
|
|
61
|
+
/**
|
|
62
|
+
* Content filter policies
|
|
63
|
+
*/
|
|
64
|
+
readonly filterPolicies: pulumi.Output<string[]>;
|
|
65
|
+
/**
|
|
66
|
+
* Guardrail preset name
|
|
67
|
+
*/
|
|
68
|
+
readonly guardrailPreset: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Content shown on the bot's Home tab in Slack
|
|
71
|
+
*/
|
|
72
|
+
readonly homeTabContent: pulumi.Output<string>;
|
|
33
73
|
/**
|
|
34
74
|
* Keywords that trigger the bot
|
|
35
75
|
*/
|
|
@@ -38,6 +78,22 @@ export declare class SlackBot extends pulumi.CustomResource {
|
|
|
38
78
|
* Whether keyword triggers are enabled
|
|
39
79
|
*/
|
|
40
80
|
readonly keywordsEnabled: pulumi.Output<boolean>;
|
|
81
|
+
/**
|
|
82
|
+
* Enable long context mode
|
|
83
|
+
*/
|
|
84
|
+
readonly longContext: pulumi.Output<boolean>;
|
|
85
|
+
/**
|
|
86
|
+
* Maximum response tokens
|
|
87
|
+
*/
|
|
88
|
+
readonly maxTokens: pulumi.Output<number>;
|
|
89
|
+
/**
|
|
90
|
+
* AI model identifier
|
|
91
|
+
*/
|
|
92
|
+
readonly modelId: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* Display name for the bot
|
|
95
|
+
*/
|
|
96
|
+
readonly name: pulumi.Output<string>;
|
|
41
97
|
/**
|
|
42
98
|
* The organisation ID
|
|
43
99
|
*/
|
|
@@ -51,9 +107,13 @@ export declare class SlackBot extends pulumi.CustomResource {
|
|
|
51
107
|
*/
|
|
52
108
|
readonly setupType: pulumi.Output<string>;
|
|
53
109
|
/**
|
|
54
|
-
*
|
|
110
|
+
* System prompt for the backing AI agent
|
|
55
111
|
*/
|
|
56
|
-
readonly
|
|
112
|
+
readonly systemPrompt: pulumi.Output<string>;
|
|
113
|
+
/**
|
|
114
|
+
* Sampling temperature
|
|
115
|
+
*/
|
|
116
|
+
readonly temperature: pulumi.Output<number>;
|
|
57
117
|
/**
|
|
58
118
|
* Create a SlackBot resource with the given unique name, arguments, and options.
|
|
59
119
|
*
|
|
@@ -68,18 +128,58 @@ export declare class SlackBot extends pulumi.CustomResource {
|
|
|
68
128
|
*/
|
|
69
129
|
export interface SlackBotState {
|
|
70
130
|
/**
|
|
71
|
-
*
|
|
131
|
+
* Agent-level access control settings
|
|
132
|
+
*/
|
|
133
|
+
agentAccessControl?: pulumi.Input<inputs.SlackBotAgentAccessControl>;
|
|
134
|
+
/**
|
|
135
|
+
* Whether guest users may interact with the bot
|
|
72
136
|
*/
|
|
73
|
-
|
|
137
|
+
allowGuests?: pulumi.Input<boolean>;
|
|
74
138
|
/**
|
|
75
139
|
* Slack channel IDs the bot may respond in
|
|
76
140
|
*/
|
|
77
141
|
allowedChannels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
142
|
+
/**
|
|
143
|
+
* Vector DB collections the agent may query
|
|
144
|
+
*/
|
|
145
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
146
|
+
/**
|
|
147
|
+
* Sub-agents the agent may call
|
|
148
|
+
*/
|
|
149
|
+
allowedSubAgents?: pulumi.Input<pulumi.Input<string>[]>;
|
|
150
|
+
/**
|
|
151
|
+
* Tools the agent may use
|
|
152
|
+
*/
|
|
153
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
154
|
+
/**
|
|
155
|
+
* Slack user IDs allowed to interact with the bot
|
|
156
|
+
*/
|
|
157
|
+
allowedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
158
|
+
/**
|
|
159
|
+
* Skills assigned to the agent
|
|
160
|
+
*/
|
|
161
|
+
assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
78
162
|
bot?: pulumi.Input<inputs.SlackBotBot>;
|
|
79
163
|
/**
|
|
80
164
|
* The Slack bot ID
|
|
81
165
|
*/
|
|
82
166
|
botId?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* Slack user IDs denied from interacting with the bot
|
|
169
|
+
*/
|
|
170
|
+
deniedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
171
|
+
/**
|
|
172
|
+
* Content filter policies
|
|
173
|
+
*/
|
|
174
|
+
filterPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
175
|
+
/**
|
|
176
|
+
* Guardrail preset name
|
|
177
|
+
*/
|
|
178
|
+
guardrailPreset?: pulumi.Input<string>;
|
|
179
|
+
/**
|
|
180
|
+
* Content shown on the bot's Home tab in Slack
|
|
181
|
+
*/
|
|
182
|
+
homeTabContent?: pulumi.Input<string>;
|
|
83
183
|
/**
|
|
84
184
|
* Keywords that trigger the bot
|
|
85
185
|
*/
|
|
@@ -88,6 +188,22 @@ export interface SlackBotState {
|
|
|
88
188
|
* Whether keyword triggers are enabled
|
|
89
189
|
*/
|
|
90
190
|
keywordsEnabled?: pulumi.Input<boolean>;
|
|
191
|
+
/**
|
|
192
|
+
* Enable long context mode
|
|
193
|
+
*/
|
|
194
|
+
longContext?: pulumi.Input<boolean>;
|
|
195
|
+
/**
|
|
196
|
+
* Maximum response tokens
|
|
197
|
+
*/
|
|
198
|
+
maxTokens?: pulumi.Input<number>;
|
|
199
|
+
/**
|
|
200
|
+
* AI model identifier
|
|
201
|
+
*/
|
|
202
|
+
modelId?: pulumi.Input<string>;
|
|
203
|
+
/**
|
|
204
|
+
* Display name for the bot
|
|
205
|
+
*/
|
|
206
|
+
name?: pulumi.Input<string>;
|
|
91
207
|
/**
|
|
92
208
|
* The organisation ID
|
|
93
209
|
*/
|
|
@@ -101,26 +217,70 @@ export interface SlackBotState {
|
|
|
101
217
|
*/
|
|
102
218
|
setupType?: pulumi.Input<string>;
|
|
103
219
|
/**
|
|
104
|
-
*
|
|
220
|
+
* System prompt for the backing AI agent
|
|
221
|
+
*/
|
|
222
|
+
systemPrompt?: pulumi.Input<string>;
|
|
223
|
+
/**
|
|
224
|
+
* Sampling temperature
|
|
105
225
|
*/
|
|
106
|
-
|
|
226
|
+
temperature?: pulumi.Input<number>;
|
|
107
227
|
}
|
|
108
228
|
/**
|
|
109
229
|
* The set of arguments for constructing a SlackBot resource.
|
|
110
230
|
*/
|
|
111
231
|
export interface SlackBotArgs {
|
|
112
232
|
/**
|
|
113
|
-
*
|
|
233
|
+
* Agent-level access control settings
|
|
114
234
|
*/
|
|
115
|
-
|
|
235
|
+
agentAccessControl?: pulumi.Input<inputs.SlackBotAgentAccessControl>;
|
|
236
|
+
/**
|
|
237
|
+
* Whether guest users may interact with the bot
|
|
238
|
+
*/
|
|
239
|
+
allowGuests?: pulumi.Input<boolean>;
|
|
116
240
|
/**
|
|
117
241
|
* Slack channel IDs the bot may respond in
|
|
118
242
|
*/
|
|
119
243
|
allowedChannels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
244
|
+
/**
|
|
245
|
+
* Vector DB collections the agent may query
|
|
246
|
+
*/
|
|
247
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
248
|
+
/**
|
|
249
|
+
* Sub-agents the agent may call
|
|
250
|
+
*/
|
|
251
|
+
allowedSubAgents?: pulumi.Input<pulumi.Input<string>[]>;
|
|
252
|
+
/**
|
|
253
|
+
* Tools the agent may use
|
|
254
|
+
*/
|
|
255
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
256
|
+
/**
|
|
257
|
+
* Slack user IDs allowed to interact with the bot
|
|
258
|
+
*/
|
|
259
|
+
allowedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
260
|
+
/**
|
|
261
|
+
* Skills assigned to the agent
|
|
262
|
+
*/
|
|
263
|
+
assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
120
264
|
/**
|
|
121
265
|
* The Slack bot ID
|
|
122
266
|
*/
|
|
123
267
|
botId?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* Slack user IDs denied from interacting with the bot
|
|
270
|
+
*/
|
|
271
|
+
deniedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
272
|
+
/**
|
|
273
|
+
* Content filter policies
|
|
274
|
+
*/
|
|
275
|
+
filterPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
276
|
+
/**
|
|
277
|
+
* Guardrail preset name
|
|
278
|
+
*/
|
|
279
|
+
guardrailPreset?: pulumi.Input<string>;
|
|
280
|
+
/**
|
|
281
|
+
* Content shown on the bot's Home tab in Slack
|
|
282
|
+
*/
|
|
283
|
+
homeTabContent?: pulumi.Input<string>;
|
|
124
284
|
/**
|
|
125
285
|
* Keywords that trigger the bot
|
|
126
286
|
*/
|
|
@@ -129,6 +289,22 @@ export interface SlackBotArgs {
|
|
|
129
289
|
* Whether keyword triggers are enabled
|
|
130
290
|
*/
|
|
131
291
|
keywordsEnabled?: pulumi.Input<boolean>;
|
|
292
|
+
/**
|
|
293
|
+
* Enable long context mode
|
|
294
|
+
*/
|
|
295
|
+
longContext?: pulumi.Input<boolean>;
|
|
296
|
+
/**
|
|
297
|
+
* Maximum response tokens
|
|
298
|
+
*/
|
|
299
|
+
maxTokens?: pulumi.Input<number>;
|
|
300
|
+
/**
|
|
301
|
+
* AI model identifier
|
|
302
|
+
*/
|
|
303
|
+
modelId: pulumi.Input<string>;
|
|
304
|
+
/**
|
|
305
|
+
* Display name for the bot
|
|
306
|
+
*/
|
|
307
|
+
name?: pulumi.Input<string>;
|
|
132
308
|
/**
|
|
133
309
|
* The organisation ID
|
|
134
310
|
*/
|
|
@@ -142,7 +318,11 @@ export interface SlackBotArgs {
|
|
|
142
318
|
*/
|
|
143
319
|
setupType: pulumi.Input<string>;
|
|
144
320
|
/**
|
|
145
|
-
*
|
|
321
|
+
* System prompt for the backing AI agent
|
|
322
|
+
*/
|
|
323
|
+
systemPrompt: pulumi.Input<string>;
|
|
324
|
+
/**
|
|
325
|
+
* Sampling temperature
|
|
146
326
|
*/
|
|
147
|
-
|
|
327
|
+
temperature?: pulumi.Input<number>;
|
|
148
328
|
}
|
package/slackBot.js
CHANGED
|
@@ -33,34 +33,67 @@ class SlackBot extends pulumi.CustomResource {
|
|
|
33
33
|
opts = opts || {};
|
|
34
34
|
if (opts.id) {
|
|
35
35
|
const state = argsOrState;
|
|
36
|
-
resourceInputs["
|
|
36
|
+
resourceInputs["agentAccessControl"] = state?.agentAccessControl;
|
|
37
|
+
resourceInputs["allowGuests"] = state?.allowGuests;
|
|
37
38
|
resourceInputs["allowedChannels"] = state?.allowedChannels;
|
|
39
|
+
resourceInputs["allowedCollections"] = state?.allowedCollections;
|
|
40
|
+
resourceInputs["allowedSubAgents"] = state?.allowedSubAgents;
|
|
41
|
+
resourceInputs["allowedTools"] = state?.allowedTools;
|
|
42
|
+
resourceInputs["allowedUsers"] = state?.allowedUsers;
|
|
43
|
+
resourceInputs["assignedSkills"] = state?.assignedSkills;
|
|
38
44
|
resourceInputs["bot"] = state?.bot;
|
|
39
45
|
resourceInputs["botId"] = state?.botId;
|
|
46
|
+
resourceInputs["deniedUsers"] = state?.deniedUsers;
|
|
47
|
+
resourceInputs["filterPolicies"] = state?.filterPolicies;
|
|
48
|
+
resourceInputs["guardrailPreset"] = state?.guardrailPreset;
|
|
49
|
+
resourceInputs["homeTabContent"] = state?.homeTabContent;
|
|
40
50
|
resourceInputs["keywords"] = state?.keywords;
|
|
41
51
|
resourceInputs["keywordsEnabled"] = state?.keywordsEnabled;
|
|
52
|
+
resourceInputs["longContext"] = state?.longContext;
|
|
53
|
+
resourceInputs["maxTokens"] = state?.maxTokens;
|
|
54
|
+
resourceInputs["modelId"] = state?.modelId;
|
|
55
|
+
resourceInputs["name"] = state?.name;
|
|
42
56
|
resourceInputs["organisation"] = state?.organisation;
|
|
43
57
|
resourceInputs["sessionTtlDays"] = state?.sessionTtlDays;
|
|
44
58
|
resourceInputs["setupType"] = state?.setupType;
|
|
45
|
-
resourceInputs["
|
|
59
|
+
resourceInputs["systemPrompt"] = state?.systemPrompt;
|
|
60
|
+
resourceInputs["temperature"] = state?.temperature;
|
|
46
61
|
}
|
|
47
62
|
else {
|
|
48
63
|
const args = argsOrState;
|
|
49
|
-
if (args?.
|
|
50
|
-
throw new Error("Missing required property '
|
|
64
|
+
if (args?.modelId === undefined && !opts.urn) {
|
|
65
|
+
throw new Error("Missing required property 'modelId'");
|
|
51
66
|
}
|
|
52
67
|
if (args?.setupType === undefined && !opts.urn) {
|
|
53
68
|
throw new Error("Missing required property 'setupType'");
|
|
54
69
|
}
|
|
55
|
-
|
|
70
|
+
if (args?.systemPrompt === undefined && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'systemPrompt'");
|
|
72
|
+
}
|
|
73
|
+
resourceInputs["agentAccessControl"] = args?.agentAccessControl;
|
|
74
|
+
resourceInputs["allowGuests"] = args?.allowGuests;
|
|
56
75
|
resourceInputs["allowedChannels"] = args?.allowedChannels;
|
|
76
|
+
resourceInputs["allowedCollections"] = args?.allowedCollections;
|
|
77
|
+
resourceInputs["allowedSubAgents"] = args?.allowedSubAgents;
|
|
78
|
+
resourceInputs["allowedTools"] = args?.allowedTools;
|
|
79
|
+
resourceInputs["allowedUsers"] = args?.allowedUsers;
|
|
80
|
+
resourceInputs["assignedSkills"] = args?.assignedSkills;
|
|
57
81
|
resourceInputs["botId"] = args?.botId;
|
|
82
|
+
resourceInputs["deniedUsers"] = args?.deniedUsers;
|
|
83
|
+
resourceInputs["filterPolicies"] = args?.filterPolicies;
|
|
84
|
+
resourceInputs["guardrailPreset"] = args?.guardrailPreset;
|
|
85
|
+
resourceInputs["homeTabContent"] = args?.homeTabContent;
|
|
58
86
|
resourceInputs["keywords"] = args?.keywords;
|
|
59
87
|
resourceInputs["keywordsEnabled"] = args?.keywordsEnabled;
|
|
88
|
+
resourceInputs["longContext"] = args?.longContext;
|
|
89
|
+
resourceInputs["maxTokens"] = args?.maxTokens;
|
|
90
|
+
resourceInputs["modelId"] = args?.modelId;
|
|
91
|
+
resourceInputs["name"] = args?.name;
|
|
60
92
|
resourceInputs["organisation"] = args?.organisation;
|
|
61
93
|
resourceInputs["sessionTtlDays"] = args?.sessionTtlDays;
|
|
62
94
|
resourceInputs["setupType"] = args?.setupType;
|
|
63
|
-
resourceInputs["
|
|
95
|
+
resourceInputs["systemPrompt"] = args?.systemPrompt;
|
|
96
|
+
resourceInputs["temperature"] = args?.temperature;
|
|
64
97
|
resourceInputs["bot"] = undefined /*out*/;
|
|
65
98
|
}
|
|
66
99
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/slackBot.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slackBot.js","sourceRoot":"","sources":["../slackBot.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"slackBot.js","sourceRoot":"","sources":["../slackBot.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IA4GD,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;SACtD;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AA3ML,4BA4MC;AA9LG,gBAAgB;AACO,qBAAY,GAAG,sBAAsB,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -1142,17 +1142,36 @@ export interface RuleServeStaticActionConfig {
|
|
|
1142
1142
|
*/
|
|
1143
1143
|
staticFilePath?: pulumi.Input<string>;
|
|
1144
1144
|
}
|
|
1145
|
+
export interface SlackBotAgentAccessControl {
|
|
1146
|
+
}
|
|
1145
1147
|
export interface SlackBotBot {
|
|
1146
|
-
|
|
1148
|
+
agentAccessControl?: pulumi.Input<inputs.SlackBotBotAgentAccessControl>;
|
|
1149
|
+
allowGuests?: pulumi.Input<boolean>;
|
|
1147
1150
|
allowedChannels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1151
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1152
|
+
allowedSubAgents?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1153
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1154
|
+
allowedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1155
|
+
assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1148
1156
|
botId?: pulumi.Input<string>;
|
|
1149
1157
|
connected?: pulumi.Input<boolean>;
|
|
1150
1158
|
createdAt?: pulumi.Input<string>;
|
|
1159
|
+
deniedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1160
|
+
filterPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1161
|
+
guardrailPreset?: pulumi.Input<string>;
|
|
1162
|
+
homeTabContent?: pulumi.Input<string>;
|
|
1151
1163
|
keywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1152
1164
|
keywordsEnabled?: pulumi.Input<boolean>;
|
|
1165
|
+
longContext?: pulumi.Input<boolean>;
|
|
1166
|
+
maxTokens?: pulumi.Input<number>;
|
|
1167
|
+
modelId?: pulumi.Input<string>;
|
|
1168
|
+
name?: pulumi.Input<string>;
|
|
1153
1169
|
sessionTtlDays?: pulumi.Input<number>;
|
|
1154
1170
|
setupType?: pulumi.Input<string>;
|
|
1155
|
-
slashCommands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1156
1171
|
status?: pulumi.Input<string>;
|
|
1172
|
+
systemPrompt?: pulumi.Input<string>;
|
|
1173
|
+
temperature?: pulumi.Input<number>;
|
|
1157
1174
|
updatedAt?: pulumi.Input<string>;
|
|
1158
1175
|
}
|
|
1176
|
+
export interface SlackBotBotAgentAccessControl {
|
|
1177
|
+
}
|
package/types/output.d.ts
CHANGED
|
@@ -1145,17 +1145,36 @@ export interface RuleServeStaticActionConfig {
|
|
|
1145
1145
|
*/
|
|
1146
1146
|
staticFilePath: string;
|
|
1147
1147
|
}
|
|
1148
|
+
export interface SlackBotAgentAccessControl {
|
|
1149
|
+
}
|
|
1148
1150
|
export interface SlackBotBot {
|
|
1149
|
-
|
|
1151
|
+
agentAccessControl: outputs.SlackBotBotAgentAccessControl;
|
|
1152
|
+
allowGuests: boolean;
|
|
1150
1153
|
allowedChannels: string[];
|
|
1154
|
+
allowedCollections: string[];
|
|
1155
|
+
allowedSubAgents: string[];
|
|
1156
|
+
allowedTools: string[];
|
|
1157
|
+
allowedUsers: string[];
|
|
1158
|
+
assignedSkills: string[];
|
|
1151
1159
|
botId: string;
|
|
1152
1160
|
connected: boolean;
|
|
1153
1161
|
createdAt: string;
|
|
1162
|
+
deniedUsers: string[];
|
|
1163
|
+
filterPolicies: string[];
|
|
1164
|
+
guardrailPreset: string;
|
|
1165
|
+
homeTabContent: string;
|
|
1154
1166
|
keywords: string[];
|
|
1155
1167
|
keywordsEnabled: boolean;
|
|
1168
|
+
longContext: boolean;
|
|
1169
|
+
maxTokens: number;
|
|
1170
|
+
modelId: string;
|
|
1171
|
+
name: string;
|
|
1156
1172
|
sessionTtlDays: number;
|
|
1157
1173
|
setupType: string;
|
|
1158
|
-
slashCommands: string[];
|
|
1159
1174
|
status: string;
|
|
1175
|
+
systemPrompt: string;
|
|
1176
|
+
temperature: number;
|
|
1160
1177
|
updatedAt: string;
|
|
1161
1178
|
}
|
|
1179
|
+
export interface SlackBotBotAgentAccessControl {
|
|
1180
|
+
}
|