docs: fix typos in source code and documentation (#13577)

This commit is contained in:
fancivez
2025-11-21 22:59:42 +08:00
committed by GitHub
parent 8d082a904d
commit 0f0b463a2f
13 changed files with 14 additions and 14 deletions
@@ -153,7 +153,7 @@ syntax = "proto3";
import "google/protobuf/struct.proto";
// ToolCall is the central message represeting a tool's execution lifecycle.
// ToolCall is the central message representing a tool's execution lifecycle.
// The entire object is sent from the agent to client on every update.
message ToolCall {
// A unique identifier, assigned by the agent
@@ -197,7 +197,7 @@ enum ToolCallStatus {
CANCELLED = 5;
}
// ToolOuput represents the final, successful, output of a tool
// ToolOutput represents the final, successful, output of a tool
message ToolOutput {
oneof result {
string text = 1;
+1 -1
View File
@@ -460,7 +460,7 @@ export class Task {
): Message {
const messageParts: Part[] = [];
// Create a serializable version of the ToolCall (pick necesssary
// Create a serializable version of the ToolCall (pick necessary
// properties/avoid methods causing circular reference errors)
const serializableToolCall: Partial<ToolCall> = this._pickFields(
tc,