@altimateai/ui-components 0.0.31-beta.5 → 0.0.31-beta.6
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/CoachForm.js +3297 -3291
- package/dist/chatbotV2/index.d.ts +8 -1
- package/package.json +1 -1
|
@@ -133,6 +133,10 @@ declare const createSession: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
|
133
133
|
label: string;
|
|
134
134
|
value: string;
|
|
135
135
|
}[];
|
|
136
|
+
modes?: {
|
|
137
|
+
label: string;
|
|
138
|
+
value: string;
|
|
139
|
+
}[];
|
|
136
140
|
}, "chat/createSession">;
|
|
137
141
|
declare const setSelectedModel: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
138
142
|
sessionId: string;
|
|
@@ -223,7 +227,10 @@ declare function processPlaygroundSessionTurns(turns: Array<{
|
|
|
223
227
|
content: AgentStreamResponse[];
|
|
224
228
|
id?: string;
|
|
225
229
|
timestamp?: number;
|
|
226
|
-
}>, sessionId: string
|
|
230
|
+
}>, sessionId: string, modes: {
|
|
231
|
+
label: string;
|
|
232
|
+
value: string;
|
|
233
|
+
}[]): Record<string, {
|
|
227
234
|
id: string;
|
|
228
235
|
messages: Array<{
|
|
229
236
|
id: string;
|