@superinterface/react 2.0.0 → 2.0.2
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/dist/index.cjs +1853 -1777
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +125 -97
- package/dist/index.d.ts +125 -97
- package/dist/index.js +1795 -1711
- package/dist/index.js.map +1 -1
- package/dist/mutationFns.cjs +22 -22
- package/dist/mutationFns.cjs.map +1 -1
- package/dist/mutationFns.d.cts +4 -4
- package/dist/mutationFns.d.ts +4 -4
- package/dist/mutationFns.js +19 -19
- package/dist/mutationFns.js.map +1 -1
- package/dist/queryFns.cjs +50 -50
- package/dist/queryFns.cjs.map +1 -1
- package/dist/queryFns.d.cts +3 -3
- package/dist/queryFns.d.ts +3 -3
- package/dist/queryFns.js +46 -46
- package/dist/queryFns.js.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.cts +6 -6
- package/dist/types/index.d.ts +6 -6
- package/dist/utils.cjs +13 -13
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.d.cts +4 -4
- package/dist/utils.d.ts +4 -4
- package/dist/utils.js +11 -11
- package/dist/utils.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { MessagesPage, Message } from './types/index.js';
|
|
3
3
|
import { UseInfiniteQueryOptions, InfiniteData, UseMutationOptions } from '@tanstack/react-query';
|
|
4
4
|
import * as react from 'react';
|
|
5
|
+
import { Dispatch, SetStateAction } from 'react';
|
|
5
6
|
import * as _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw from '@tanstack/query-core/build/legacy/queryClient-Ho-z40Sw';
|
|
6
|
-
import { UseFormProps } from 'react-hook-form';
|
|
7
7
|
import * as _tanstack_react_query_build_legacy_types from '@tanstack/react-query/build/legacy/types';
|
|
8
8
|
import * as openai_resources_beta_threads_runs_runs from 'openai/resources/beta/threads/runs/runs';
|
|
9
9
|
import OpenAI from 'openai';
|
|
10
10
|
|
|
11
|
-
type Args$
|
|
11
|
+
type Args$7 = {
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
baseUrl?: string;
|
|
14
14
|
publicApiKey?: string;
|
|
@@ -16,76 +16,61 @@ type Args$8 = {
|
|
|
16
16
|
[key: string]: any;
|
|
17
17
|
};
|
|
18
18
|
defaultOptions?: {
|
|
19
|
-
queries?: UseInfiniteQueryOptions<InfiniteData<
|
|
19
|
+
queries?: UseInfiniteQueryOptions<InfiniteData<MessagesPage>>;
|
|
20
20
|
mutations?: UseMutationOptions;
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
|
-
declare const SuperinterfaceProvider: ({ children, baseUrl, publicApiKey, variables, defaultOptions, }: Args$
|
|
23
|
+
declare const SuperinterfaceProvider: ({ children, baseUrl, publicApiKey, variables, defaultOptions, }: Args$7) => react_jsx_runtime.JSX.Element;
|
|
24
24
|
|
|
25
25
|
declare const useSuperinterfaceContext: () => {
|
|
26
|
-
baseUrl: string;
|
|
27
|
-
variables:
|
|
26
|
+
baseUrl: string | null;
|
|
27
|
+
variables: Record<string, any>;
|
|
28
28
|
defaultOptions: {
|
|
29
|
-
queries:
|
|
30
|
-
mutations:
|
|
29
|
+
queries: Record<string, any>;
|
|
30
|
+
mutations: Record<string, any>;
|
|
31
31
|
};
|
|
32
|
+
publicApiKey?: string | undefined;
|
|
32
33
|
};
|
|
33
34
|
|
|
34
|
-
type Args$
|
|
35
|
-
declare const Thread: (props: Args$7) => react_jsx_runtime.JSX.Element;
|
|
36
|
-
|
|
37
|
-
declare const useThreadLifecycles: () => null;
|
|
38
|
-
|
|
39
|
-
declare const ThreadDialog: {
|
|
40
|
-
(): react_jsx_runtime.JSX.Element;
|
|
41
|
-
Root: ({ children, style, }: {
|
|
42
|
-
children: react.ReactNode;
|
|
43
|
-
style?: react.CSSProperties | undefined;
|
|
44
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
45
|
-
Trigger: ({ children, }: {
|
|
46
|
-
children: react.ReactNode;
|
|
47
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
48
|
-
Button: () => react_jsx_runtime.JSX.Element;
|
|
49
|
-
Content: ({ children, }: {
|
|
50
|
-
children: react.ReactNode;
|
|
51
|
-
}) => react_jsx_runtime.JSX.Element | null;
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
type Args$6 = {
|
|
55
|
-
children: React.ReactNode;
|
|
56
|
-
};
|
|
35
|
+
type Args$6 = Args$7;
|
|
57
36
|
|
|
58
37
|
type Args$5 = Omit<Args$6, 'children'>;
|
|
59
|
-
declare const
|
|
38
|
+
declare const Thread: {
|
|
60
39
|
(props: Args$5): react_jsx_runtime.JSX.Element;
|
|
61
|
-
Root: ({ children, }: Args$
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
40
|
+
Root: ({ children, ...rest }: Args$7) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
Messages: {
|
|
42
|
+
({ children, style, }: {
|
|
43
|
+
children?: react.ReactNode;
|
|
44
|
+
style?: react.CSSProperties | undefined;
|
|
45
|
+
}): react_jsx_runtime.JSX.Element;
|
|
46
|
+
Root: ({ children, style, }: {
|
|
47
|
+
children: react.ReactNode;
|
|
48
|
+
style?: react.CSSProperties | undefined;
|
|
49
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
50
|
+
Message: ({ message, }: {
|
|
51
|
+
message: Message;
|
|
52
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
NextPageSkeleton: () => react_jsx_runtime.JSX.Element | null;
|
|
54
|
+
};
|
|
55
|
+
MessageForm: {
|
|
56
|
+
(): react_jsx_runtime.JSX.Element;
|
|
57
|
+
Root: ({ children, }: {
|
|
58
|
+
children: react.ReactNode;
|
|
59
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
60
|
+
Field: {
|
|
61
|
+
Root: ({ children, }: {
|
|
62
|
+
children: react.ReactNode;
|
|
63
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
64
|
+
Control: () => react_jsx_runtime.JSX.Element;
|
|
65
|
+
};
|
|
66
|
+
Submit: () => react_jsx_runtime.JSX.Element;
|
|
67
|
+
};
|
|
79
68
|
};
|
|
80
69
|
|
|
81
|
-
|
|
82
|
-
children?: React.ReactNode;
|
|
83
|
-
style?: React.CSSProperties;
|
|
84
|
-
};
|
|
85
|
-
declare const ThreadMessages: ({ children, style, }: Args$4) => react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare const useLifecycle: () => null;
|
|
86
71
|
|
|
87
|
-
declare const
|
|
88
|
-
|
|
72
|
+
declare const useMessages: () => {
|
|
73
|
+
messages: Message[];
|
|
89
74
|
data: InfiniteData<TQueryFnData, unknown>;
|
|
90
75
|
error: Error;
|
|
91
76
|
isError: true;
|
|
@@ -117,7 +102,7 @@ declare const useThreadMessages: () => {
|
|
|
117
102
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
118
103
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
119
104
|
} | {
|
|
120
|
-
|
|
105
|
+
messages: Message[];
|
|
121
106
|
data: InfiniteData<TQueryFnData, unknown>;
|
|
122
107
|
error: null;
|
|
123
108
|
isError: false;
|
|
@@ -149,7 +134,7 @@ declare const useThreadMessages: () => {
|
|
|
149
134
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
150
135
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
151
136
|
} | {
|
|
152
|
-
|
|
137
|
+
messages: Message[];
|
|
153
138
|
data: undefined;
|
|
154
139
|
error: Error;
|
|
155
140
|
isError: true;
|
|
@@ -181,7 +166,7 @@ declare const useThreadMessages: () => {
|
|
|
181
166
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
182
167
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
183
168
|
} | {
|
|
184
|
-
|
|
169
|
+
messages: Message[];
|
|
185
170
|
data: undefined;
|
|
186
171
|
error: null;
|
|
187
172
|
isError: false;
|
|
@@ -213,7 +198,7 @@ declare const useThreadMessages: () => {
|
|
|
213
198
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<InfiniteData<TQueryFnData, unknown>, Error>>;
|
|
214
199
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
215
200
|
} | {
|
|
216
|
-
|
|
201
|
+
messages: Message[];
|
|
217
202
|
data: undefined;
|
|
218
203
|
error: null;
|
|
219
204
|
isError: false;
|
|
@@ -246,9 +231,9 @@ declare const useThreadMessages: () => {
|
|
|
246
231
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
247
232
|
};
|
|
248
233
|
|
|
249
|
-
declare const
|
|
250
|
-
|
|
251
|
-
|
|
234
|
+
declare const useLatestMessage: () => {
|
|
235
|
+
latestMessage: Message;
|
|
236
|
+
messages: Message[];
|
|
252
237
|
data: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>;
|
|
253
238
|
error: Error;
|
|
254
239
|
isError: true;
|
|
@@ -280,8 +265,8 @@ declare const useLatestThreadMessage: () => {
|
|
|
280
265
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>, Error>>;
|
|
281
266
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
282
267
|
} | {
|
|
283
|
-
|
|
284
|
-
|
|
268
|
+
latestMessage: Message;
|
|
269
|
+
messages: Message[];
|
|
285
270
|
data: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>;
|
|
286
271
|
error: null;
|
|
287
272
|
isError: false;
|
|
@@ -313,8 +298,8 @@ declare const useLatestThreadMessage: () => {
|
|
|
313
298
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>, Error>>;
|
|
314
299
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
315
300
|
} | {
|
|
316
|
-
|
|
317
|
-
|
|
301
|
+
latestMessage: Message;
|
|
302
|
+
messages: Message[];
|
|
318
303
|
data: undefined;
|
|
319
304
|
error: Error;
|
|
320
305
|
isError: true;
|
|
@@ -346,8 +331,8 @@ declare const useLatestThreadMessage: () => {
|
|
|
346
331
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>, Error>>;
|
|
347
332
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
348
333
|
} | {
|
|
349
|
-
|
|
350
|
-
|
|
334
|
+
latestMessage: Message;
|
|
335
|
+
messages: Message[];
|
|
351
336
|
data: undefined;
|
|
352
337
|
error: null;
|
|
353
338
|
isError: false;
|
|
@@ -379,8 +364,8 @@ declare const useLatestThreadMessage: () => {
|
|
|
379
364
|
refetch: (options?: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a0 | undefined) => Promise<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.ag<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<TQueryFnData, unknown>, Error>>;
|
|
380
365
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
381
366
|
} | {
|
|
382
|
-
|
|
383
|
-
|
|
367
|
+
latestMessage: Message;
|
|
368
|
+
messages: Message[];
|
|
384
369
|
data: undefined;
|
|
385
370
|
error: null;
|
|
386
371
|
isError: false;
|
|
@@ -413,21 +398,11 @@ declare const useLatestThreadMessage: () => {
|
|
|
413
398
|
fetchStatus: _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.a8;
|
|
414
399
|
};
|
|
415
400
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
};
|
|
419
|
-
type Args$3 = {
|
|
420
|
-
children?: React.ReactNode;
|
|
421
|
-
useFormProps?: UseFormProps<Inputs>;
|
|
422
|
-
style?: React.CSSProperties;
|
|
423
|
-
};
|
|
424
|
-
declare const ThreadMessageForm: ({ children, useFormProps, style, }?: Args$3) => react_jsx_runtime.JSX.Element;
|
|
425
|
-
|
|
426
|
-
declare const useCreateThreadMessage: () => {
|
|
427
|
-
createThreadMessage: (restobj: Omit<{
|
|
401
|
+
declare const useCreateMessage: () => {
|
|
402
|
+
createMessage: (restobj: Omit<{
|
|
428
403
|
[key: string]: any;
|
|
429
404
|
content: string;
|
|
430
|
-
},
|
|
405
|
+
}, string>) => Promise<any>;
|
|
431
406
|
data: undefined;
|
|
432
407
|
variables: undefined;
|
|
433
408
|
error: null;
|
|
@@ -451,10 +426,10 @@ declare const useCreateThreadMessage: () => {
|
|
|
451
426
|
content: string;
|
|
452
427
|
}, any>;
|
|
453
428
|
} | {
|
|
454
|
-
|
|
429
|
+
createMessage: (restobj: Omit<{
|
|
455
430
|
[key: string]: any;
|
|
456
431
|
content: string;
|
|
457
|
-
},
|
|
432
|
+
}, string>) => Promise<any>;
|
|
458
433
|
data: undefined;
|
|
459
434
|
variables: {
|
|
460
435
|
[key: string]: any;
|
|
@@ -481,10 +456,10 @@ declare const useCreateThreadMessage: () => {
|
|
|
481
456
|
content: string;
|
|
482
457
|
}, any>;
|
|
483
458
|
} | {
|
|
484
|
-
|
|
459
|
+
createMessage: (restobj: Omit<{
|
|
485
460
|
[key: string]: any;
|
|
486
461
|
content: string;
|
|
487
|
-
},
|
|
462
|
+
}, string>) => Promise<any>;
|
|
488
463
|
data: undefined;
|
|
489
464
|
error: any;
|
|
490
465
|
variables: {
|
|
@@ -511,10 +486,10 @@ declare const useCreateThreadMessage: () => {
|
|
|
511
486
|
content: string;
|
|
512
487
|
}, any>;
|
|
513
488
|
} | {
|
|
514
|
-
|
|
489
|
+
createMessage: (restobj: Omit<{
|
|
515
490
|
[key: string]: any;
|
|
516
491
|
content: string;
|
|
517
|
-
},
|
|
492
|
+
}, string>) => Promise<any>;
|
|
518
493
|
data: any;
|
|
519
494
|
error: null;
|
|
520
495
|
variables: {
|
|
@@ -542,11 +517,64 @@ declare const useCreateThreadMessage: () => {
|
|
|
542
517
|
}, any>;
|
|
543
518
|
};
|
|
544
519
|
|
|
520
|
+
declare const ThreadDialog: {
|
|
521
|
+
(): react_jsx_runtime.JSX.Element;
|
|
522
|
+
Root: ({ children, style, }: {
|
|
523
|
+
children: react.ReactNode;
|
|
524
|
+
style?: react.CSSProperties | undefined;
|
|
525
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
526
|
+
Trigger: ({ children, }: {
|
|
527
|
+
children: react.ReactNode;
|
|
528
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
529
|
+
Button: () => react_jsx_runtime.JSX.Element;
|
|
530
|
+
Content: {
|
|
531
|
+
(): react_jsx_runtime.JSX.Element;
|
|
532
|
+
Root: ({ children, }: {
|
|
533
|
+
children: react.ReactNode;
|
|
534
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
declare const ThreadDialogContext: react.Context<{
|
|
539
|
+
isOpen: boolean;
|
|
540
|
+
setIsOpen: Dispatch<SetStateAction<boolean>>;
|
|
541
|
+
}>;
|
|
542
|
+
|
|
543
|
+
declare const AudioThreadDialog: {
|
|
544
|
+
(): react_jsx_runtime.JSX.Element;
|
|
545
|
+
Root: ({ children, style, }: {
|
|
546
|
+
children: react.ReactNode;
|
|
547
|
+
style?: react.CSSProperties | undefined;
|
|
548
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
549
|
+
Trigger: ({ children, }: {
|
|
550
|
+
children: react.ReactNode;
|
|
551
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
552
|
+
Button: () => react_jsx_runtime.JSX.Element;
|
|
553
|
+
Content: {
|
|
554
|
+
(): react_jsx_runtime.JSX.Element;
|
|
555
|
+
Root: ({ children, }: {
|
|
556
|
+
children: react.ReactNode;
|
|
557
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
type Args$4 = {
|
|
562
|
+
children: React.ReactNode;
|
|
563
|
+
};
|
|
564
|
+
|
|
565
|
+
type Args$3 = Omit<Args$4, 'children'>;
|
|
566
|
+
declare const AudioThread: {
|
|
567
|
+
(props: Args$3): react_jsx_runtime.JSX.Element;
|
|
568
|
+
Root: ({ children, }: Args$4) => react_jsx_runtime.JSX.Element;
|
|
569
|
+
Visualization: () => react_jsx_runtime.JSX.Element;
|
|
570
|
+
Form: () => react_jsx_runtime.JSX.Element;
|
|
571
|
+
};
|
|
572
|
+
|
|
545
573
|
declare const useCreateRun: () => {
|
|
546
574
|
createRun: (restobj: Omit<{
|
|
547
575
|
[key: string]: any;
|
|
548
576
|
content: string;
|
|
549
|
-
},
|
|
577
|
+
}, string>) => void;
|
|
550
578
|
data: undefined;
|
|
551
579
|
variables: undefined;
|
|
552
580
|
error: null;
|
|
@@ -573,7 +601,7 @@ declare const useCreateRun: () => {
|
|
|
573
601
|
createRun: (restobj: Omit<{
|
|
574
602
|
[key: string]: any;
|
|
575
603
|
content: string;
|
|
576
|
-
},
|
|
604
|
+
}, string>) => void;
|
|
577
605
|
data: undefined;
|
|
578
606
|
variables: {
|
|
579
607
|
[key: string]: any;
|
|
@@ -603,7 +631,7 @@ declare const useCreateRun: () => {
|
|
|
603
631
|
createRun: (restobj: Omit<{
|
|
604
632
|
[key: string]: any;
|
|
605
633
|
content: string;
|
|
606
|
-
},
|
|
634
|
+
}, string>) => void;
|
|
607
635
|
data: undefined;
|
|
608
636
|
error: any;
|
|
609
637
|
variables: {
|
|
@@ -633,7 +661,7 @@ declare const useCreateRun: () => {
|
|
|
633
661
|
createRun: (restobj: Omit<{
|
|
634
662
|
[key: string]: any;
|
|
635
663
|
content: string;
|
|
636
|
-
},
|
|
664
|
+
}, string>) => void;
|
|
637
665
|
data: any;
|
|
638
666
|
error: null;
|
|
639
667
|
variables: {
|
|
@@ -1217,4 +1245,4 @@ type Args = {
|
|
|
1217
1245
|
};
|
|
1218
1246
|
declare const FunctionBase: ({ fn, runStep, title, }: Args) => react_jsx_runtime.JSX.Element;
|
|
1219
1247
|
|
|
1220
|
-
export { AssistantAvatarContext, AssistantNameContext, AudioThread, AudioThreadDialog, FunctionBase, FunctionComponentsContext, MarkdownContext, Suggestion, Suggestions, SuperinterfaceProvider, Thread, ThreadDialog,
|
|
1248
|
+
export { AssistantAvatarContext, AssistantNameContext, AudioThread, AudioThreadDialog, FunctionBase, FunctionComponentsContext, MarkdownContext, Suggestion, Suggestions, SuperinterfaceProvider, Thread, ThreadDialog, ThreadDialogContext, useCreateMessage, useCreateRun, useIsRunActive, useLatestMessage, useLatestRun, useLifecycle, useMarkdownContext, useMessages, useRuns, useSuperinterfaceContext, useSuperinterfaceContext as useThreadContext };
|