File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ function Search() {
228
228
elapsedTimeMs = { elapsedTimeMs }
229
229
estimatedTimeSec = { estimatedTimeSec }
230
230
isLoading = { isLoading }
231
- model = { settings . openAIModel || 'gpt-4-turbo-preview ' }
231
+ model = { settings . openAIModel || 'gpt-4-turbo' }
232
232
provider = "OpenAI"
233
233
stage = { `JSON ${ pass } /${ maxNbPasses } ` }
234
234
/>
Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ const fields: Partial<SettingsFields> & MiscPanelFields = {
107
107
openAIModel : {
108
108
label : 'Language Model' ,
109
109
description : '' ,
110
- placeholder : 'Enter the model (default: gpt-4-turbo-preview )' ,
110
+ placeholder : 'Enter the model (default: gpt-4-turbo)' ,
111
111
type : 'text' ,
112
- defaultValue : 'gpt-4-turbo-preview ' ,
112
+ defaultValue : 'gpt-4-turbo' ,
113
113
} ,
114
114
/*
115
115
customPrompts: {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const useSettings = (
10
10
huggingFaceKey : '' ,
11
11
huggingFaceModel : 'mistralai/Mixtral-8x7B-Instruct-v0.1' ,
12
12
openAIKey : '' ,
13
- openAIModel : 'gpt-4-turbo-preview ' ,
13
+ openAIModel : 'gpt-4-turbo' ,
14
14
customTasksPrompt : '' ,
15
15
customHtmlPrompt : '' ,
16
16
customScriptPrompt : '' ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export async function complete({
15
15
} : CompleteFnParams ) : Promise < string > {
16
16
17
17
// don't do this if you deploy the latent browser on a server!!!
18
- persisted . model = model || 'gpt-4-turbo-preview '
18
+ persisted . model = model || 'gpt-4-turbo'
19
19
20
20
const openai = await getOpenAI ( apiKey )
21
21
You can’t perform that action at this time.
0 commit comments