From 142c6492000180aeb4fb0188def74faca74c9449 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 21 Aug 2025 22:27:31 -0500 Subject: trying to debug protobuf stuff --- chat.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chat.proto') diff --git a/chat.proto b/chat.proto index f2154eb..4f50fbb 100644 --- a/chat.proto +++ b/chat.proto @@ -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; -- cgit v1.2.3