Skip to content

Commit e001e71

Browse files
begelundmullerk-anshul
authored andcommitted
Increase AI max message size from 10 KB to 25 KB (#8987)
1 parent aa1acf1 commit e001e71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime/ai/ai.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232

3333
// maxMessageSizeBytes is the maximum allowed size of a message's contents.
3434
// Exceeding it will result in an error.
35-
const maxMessageSizeBytes = 10 * 1024 // 10 KB
35+
const maxMessageSizeBytes = 25 * 1024 // 25 KB
3636

3737
// Tracer for instrumenting requests.
3838
var tracer = otel.Tracer("github.com/rilldata/rill/runtime/ai")

0 commit comments

Comments
 (0)