Skip to content

Commit 154c256

Browse files
committed
increase message too long limit
1 parent 5daf0e3 commit 154c256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/common/TaskUI.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const TaskUI = forwardRef<HTMLTextAreaElement>((_props, ref) => {
174174
}
175175

176176
const isMessageTooLong = () => {
177-
return messages.length >= 10 && JSON.stringify(messages).length / 4 > 12000
177+
return messages.length >= 10 && JSON.stringify(messages).length / 4 > 30000
178178
}
179179

180180
const handleSnapClick = async () => {

0 commit comments

Comments
 (0)