We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d9694 commit 42ad6deCopy full SHA for 42ad6de
crates/chat-cli/src/cli/chat/consts.rs
@@ -8,10 +8,10 @@ pub const MAX_CURRENT_WORKING_DIRECTORY_LEN: usize = 256;
8
pub const MAX_CONVERSATION_STATE_HISTORY_LEN: usize = 250;
9
10
/// Actual service limit is 800_000
11
-pub const MAX_TOOL_RESPONSE_SIZE: usize = 600_000;
+pub const MAX_TOOL_RESPONSE_SIZE: usize = 400_000;
12
13
/// Actual service limit is 600_000
14
-pub const MAX_USER_MESSAGE_SIZE: usize = 600_000;
+pub const MAX_USER_MESSAGE_SIZE: usize = 400_000;
15
16
/// In tokens
17
pub const CONTEXT_WINDOW_SIZE: usize = 200_000;
0 commit comments