You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/combobox/combobox.tsx
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ import type { SubBlockConfig } from '@/blocks/types'
11
11
/**
12
12
* Constants for ComboBox component behavior
13
13
*/
14
-
constDEFAULT_MODEL='gpt-4o'
14
+
constDEFAULT_MODEL='claude-sonnet-4-5'
15
15
constZOOM_FACTOR_BASE=0.96
16
16
constMIN_ZOOM=0.1
17
17
constMAX_ZOOM=1
@@ -99,18 +99,18 @@ export function ComboBox({
99
99
100
100
/**
101
101
* Determines the default option value to use.
102
-
* Priority: explicit defaultValue > gpt-4o for model field > first option
102
+
* Priority: explicit defaultValue > claude-sonnet-4-5 for model field > first option
103
103
*/
104
104
constdefaultOptionValue=useMemo(()=>{
105
105
if(defaultValue!==undefined){
106
106
returndefaultValue
107
107
}
108
108
109
-
// For model field, default to gpt-4o if available
109
+
// For model field, default to claude-sonnet-4-5 if available
0 commit comments