UNPKG

1.39 kBTypeScriptView Raw
1import type { TokenOverridable } from './common';
2export interface AssistantThreadsSetStatusArguments extends TokenOverridable {
3 /** @description Channel ID containing the assistant thread. */
4 channel_id: string;
5 /** @description Status of the assistant (e.g. 'is thinking...') */
6 status: string;
7 /** @description Message timestamp of the thread. */
8 thread_ts: string;
9}
10export interface AssistantThreadsSetSuggestedPromptsArguments extends TokenOverridable {
11 /** @description Channel ID containing the assistant thread. */
12 channel_id: string;
13 /** @description Prompt suggestions that appear when opening assistant thread. */
14 prompts: [AssistantPrompt, ...AssistantPrompt[]];
15 /** @description Message timestamp of the thread. */
16 thread_ts: string;
17 /** @description Title for the prompts. */
18 title?: string;
19}
20interface AssistantPrompt {
21 /** @description Title of the prompt. */
22 title: string;
23 /** @description Message of the prompt. */
24 message: string;
25}
26export interface AssistantThreadsSetTitleArguments extends TokenOverridable {
27 /** @description Channel ID containing the assistant thread. */
28 channel_id: string;
29 /** @description Message timestamp of the thread. */
30 thread_ts: string;
31 /** @description Title of the thread. */
32 title: string;
33}
34export {};
35//# sourceMappingURL=assistant.d.ts.map
\No newline at end of file