Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Application extends App implements IBootstrap {
public const USER_AGENT = 'Nextcloud OpenAI/LocalAI integration';

public const DEFAULT_MODEL_ID = 'Default';
public const DEFAULT_COMPLETION_MODEL_ID = 'gpt-3.5-turbo';
public const DEFAULT_COMPLETION_MODEL_ID = 'gpt-4.1-mini';
public const DEFAULT_IMAGE_MODEL_ID = 'dall-e-2';
public const DEFAULT_TRANSCRIPTION_MODEL_ID = 'whisper-1';
public const DEFAULT_SPEECH_MODEL_ID = 'tts-1-hd';
Expand Down
2 changes: 1 addition & 1 deletion src/components/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ export default {
}
const defaultCompletionModelId = this.state.default_completion_model_id || response.data?.default_completion_model_id
const completionModelToSelect = this.models.find(m => m.id === defaultCompletionModelId)
|| this.models.find(m => m.id === 'gpt-3.5-turbo')
|| this.models.find(m => m.id === 'gpt-4.1-mini')
|| this.models[1]
|| this.models[0]

Expand Down
Loading