config: update default context length to 4096

This commit is contained in:
Devon Rifkin
2025-04-28 17:03:23 -07:00
parent a25f3f8260
commit 44b466eeb2
3 changed files with 5 additions and 5 deletions

View File

@@ -279,8 +279,8 @@ func TestVar(t *testing.T) {
func TestContextLength(t *testing.T) {
cases := map[string]uint{
"": 2048,
"4096": 4096,
"": 4096,
"2048": 2048,
}
for k, v := range cases {