Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/a2a-server/src/agent/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ export class Task {
// This will trigger the scheduler to continue or cancel the specific tool.
// The scheduler's onToolCallsUpdate will then reflect the new state (e.g., executing or cancelled).

// If `edit` tool call, pass updated payload if presesent
// If `edit` tool call, pass updated payload if present
if (confirmationDetails.type === 'edit') {
const payload = part.data['newContent']
? ({
Expand Down Expand Up @@ -857,7 +857,7 @@ export class Task {
};
// Set task state to working as we are about to call LLM
this.setTaskStateAndPublishUpdate('working', stateChange);
// TODO: Determine what it mean to have, then add a prompt ID.
// TODO: Determine what it means to have, then add a prompt ID.
yield* this.geminiClient.sendMessageStream(
llmParts,
aborted,
Expand Down Expand Up @@ -897,7 +897,7 @@ export class Task {
};
// Set task state to working as we are about to call LLM
this.setTaskStateAndPublishUpdate('working', stateChange);
// TODO: Determine what it mean to have, then add a prompt ID.
// TODO: Determine what it means to have, then add a prompt ID.
yield* this.geminiClient.sendMessageStream(
llmParts,
aborted,
Expand Down