mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-06-04 01:28:58 -04:00
fix: Saving mistral and google keys to settings
This commit is contained in:
parent
7ba615a72d
commit
8dba9b4baa
@ -135,6 +135,12 @@ void ProviderSettings::setupConnections()
|
|||||||
});
|
});
|
||||||
connect(&claudeApiKey, &ButtonAspect::changed, this, [this]() { claudeApiKey.writeSettings(); });
|
connect(&claudeApiKey, &ButtonAspect::changed, this, [this]() { claudeApiKey.writeSettings(); });
|
||||||
connect(&openAiApiKey, &ButtonAspect::changed, this, [this]() { openAiApiKey.writeSettings(); });
|
connect(&openAiApiKey, &ButtonAspect::changed, this, [this]() { openAiApiKey.writeSettings(); });
|
||||||
|
connect(&mistralAiApiKey, &ButtonAspect::changed, this, [this]() {
|
||||||
|
mistralAiApiKey.writeSettings();
|
||||||
|
});
|
||||||
|
connect(&googleAiApiKey, &ButtonAspect::changed, this, [this]() {
|
||||||
|
googleAiApiKey.writeSettings();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProviderSettings::resetSettingsToDefaults()
|
void ProviderSettings::resetSettingsToDefaults()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user