From 9042af9a2e595b7e6fef7b6fbcbdbe1377f1319a Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 6 Jun 2026 09:55:39 +0800 Subject: [PATCH] increase prompt length limit --- otherarch/sdcpp/sdtype_adapter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index 7fc878ee7..61d29531c 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -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; }