mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-05-28 03:10:28 -04:00
fix: Increase mac threshold tokens for tokens (#167)
This commit is contained in:
parent
8cb6a2f6d2
commit
711aa672f2
@ -47,7 +47,7 @@ ChatAssistantSettings::ChatAssistantSettings()
|
||||
chatTokensThreshold.setLabelText(Tr::tr("Chat history token limit:"));
|
||||
chatTokensThreshold.setToolTip(Tr::tr("Maximum number of tokens in chat history. When "
|
||||
"exceeded, oldest messages will be removed."));
|
||||
chatTokensThreshold.setRange(1, 900000);
|
||||
chatTokensThreshold.setRange(1, std::numeric_limits<qint64>::max());
|
||||
chatTokensThreshold.setDefaultValue(8000);
|
||||
|
||||
linkOpenFiles.setSettingsKey(Constants::CA_LINK_OPEN_FILES);
|
||||
|
Loading…
Reference in New Issue
Block a user