fix(settings): include provider endpoint defaults
This commit is contained in:
parent
0f7028f911
commit
4bd346b0fb
2 changed files with 8 additions and 0 deletions
|
|
@ -332,6 +332,10 @@ export function useSettingsHandlers({
|
||||||
anthropic: {
|
anthropic: {
|
||||||
authMode: 'auto',
|
authMode: 'auto',
|
||||||
fastModeDefault: false,
|
fastModeDefault: false,
|
||||||
|
compatibleEndpoint: {
|
||||||
|
enabled: false,
|
||||||
|
baseUrl: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
codex: {
|
codex: {
|
||||||
preferredAuthMode: 'auto',
|
preferredAuthMode: 'auto',
|
||||||
|
|
|
||||||
|
|
@ -247,6 +247,10 @@ function makeAppConfig(multimodelEnabled: boolean): AppConfig {
|
||||||
anthropic: {
|
anthropic: {
|
||||||
authMode: 'auto',
|
authMode: 'auto',
|
||||||
fastModeDefault: false,
|
fastModeDefault: false,
|
||||||
|
compatibleEndpoint: {
|
||||||
|
enabled: false,
|
||||||
|
baseUrl: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
codex: {
|
codex: {
|
||||||
preferredAuthMode: 'auto',
|
preferredAuthMode: 'auto',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue