We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6666de commit 18917d4Copy full SHA for 18917d4
1 file changed
internal/site/lib/slack-manifest.ts
@@ -17,6 +17,10 @@ export interface SlackManifest {
17
messages_tab_enabled?: boolean;
18
messages_tab_read_only_enabled?: boolean;
19
};
20
+ assistant_view: {
21
+ assistant_description: string;
22
+ suggested_prompts: string[];
23
+ };
24
25
oauth_config: {
26
scopes: {
@@ -74,6 +78,10 @@ export function createAgentSlackManifest(
74
78
messages_tab_enabled: true,
75
79
messages_tab_read_only_enabled: false,
76
80
},
81
82
+ assistant_description: `A helpful assistant powered by Blink`,
83
+ suggested_prompts: [],
84
+ },
77
85
86
87
0 commit comments