increase prompt length limit

This commit is contained in:
Concedo
2026-06-06 09:55:39 +08:00
parent a9d743634c
commit 9042af9a2e
+2 -2
View File
@@ -589,8 +589,8 @@ std::string clean_input_prompt(const std::string& input) {
result.push_back(ch);
}
}
//limit to max 800 chars
result = result.substr(0, 800);
//limit to max 2048 chars
result = result.substr(0, 2048);
return result;
}