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 b81d947 commit 8f74a2cCopy full SHA for 8f74a2c
src/core/task/Task.ts
@@ -3040,8 +3040,11 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
3040
}
3041
3042
/**
3043
- * Process any queued messages by dequeuing and submitting them one at a time.
3044
- * Each message will trigger a full task cycle with LLM interaction.
+ * Process any queued messages by dequeuing and submitting them.
+ * This ensures that queued user messages are sent when appropriate,
3045
+ * preventing them from getting stuck in the queue.
3046
+ *
3047
+ * @param context - Context string for logging (e.g., the calling tool name)
3048
*/
3049
public processQueuedMessages(): void {
3050
try {
0 commit comments