@resolveio/client-lib-core 21.4.11 → 21.4.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/client-lib-core",
3
- "version": "21.4.11",
3
+ "version": "21.4.12",
4
4
  "module": "fesm2022/resolveio-client-lib-core.min.mjs",
5
5
  "typings": "types/resolveio-client-lib-core.d.ts",
6
6
  "exports": {
@@ -772,6 +772,7 @@ declare class CoreComponent extends BaseComponent implements OnInit {
772
772
  openedWindow: boolean;
773
773
  aiAssistantOpen: boolean;
774
774
  aiAssistantAppId: string;
775
+ aiAssistantConfig: Record<string, any> | null;
775
776
  currentRoute: string;
776
777
  isOffline: boolean;
777
778
  foundUpdate: boolean;
@@ -790,6 +791,9 @@ declare class CoreComponent extends BaseComponent implements OnInit {
790
791
  getAiAssistantHeight(): number;
791
792
  getAiAssistantReservedWidth(): number;
792
793
  private resolveAiAssistantAppId;
794
+ private resolveAiAssistantConfig;
795
+ private resolveEnvModelList;
796
+ private normalizeOptionalEnvString;
793
797
  onPushBackButton(): void;
794
798
  onPushReloadButton(): void;
795
799
  onPushForwardButton(): void;
@@ -855,6 +859,8 @@ interface AiTerminalConfig$1 {
855
859
  userPromptTemplate?: string;
856
860
  responseFormat?: string;
857
861
  model?: string;
862
+ fallbackModel?: string;
863
+ fallbackModels?: string[];
858
864
  temperature?: number;
859
865
  maxTokens?: number;
860
866
  profileId?: string;
@@ -1149,6 +1155,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1149
1155
  private resolveConfig;
1150
1156
  private resolveMongoConfig;
1151
1157
  private resolveMode;
1158
+ private resolveCodexPayloadConfig;
1159
+ private resolveCodexFallbackModels;
1152
1160
  private resolveBranchEnabled;
1153
1161
  private methodNames;
1154
1162
  private subscribeConversations;
@@ -1260,6 +1268,8 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
1260
1268
  type AiTerminalConfig = {
1261
1269
  mode?: string;
1262
1270
  model?: string;
1271
+ fallbackModel?: string;
1272
+ fallbackModels?: string[];
1263
1273
  guardrails?: boolean;
1264
1274
  allowUploads?: boolean;
1265
1275
  showAdvanced?: boolean;