diff options
Diffstat (limited to 'chat.proto')
| -rw-r--r-- | chat.proto | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,11 +4,11 @@ package chatpb; import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp -message Row { +message Row { // `autogenpb:nomutex` repeated string fields = 1; } -message Table { +message Table { // `autogenpb:nomutex` int32 columns = 1; repeated Row rows = 2; } @@ -20,7 +20,7 @@ enum Who { } // NEW: A message to hold all the details of a tool call -message ToolCall { +message ToolCall { // `autogenpb:nomutex` string name = 1; // e.g., "Shell" string input = 2; // The command that was run string description = 3; // The description for the command @@ -29,12 +29,12 @@ message ToolCall { int32 exit_code = 6; } -message CodeSnippet { +message CodeSnippet { // `autogenpb:nomutex` string filename = 1; string content = 2; } -message Chat { +message Chat { // `autogenpb:nomutex` Who from = 1; google.protobuf.Timestamp ctime = 2; string content = 3; |
