summaryrefslogtreecommitdiff
path: root/chat.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-21 22:27:31 -0500
committerJeff Carr <[email protected]>2025-08-21 22:27:31 -0500
commit142c6492000180aeb4fb0188def74faca74c9449 (patch)
tree6d99309111037dc5e6b2512989015ebb5e33e51d /chat.proto
parent2d7b5fe532650562e83aa98b1e5f2c41149dadc6 (diff)
trying to debug protobuf stuffv0.0.2
Diffstat (limited to 'chat.proto')
-rw-r--r--chat.proto10
1 files changed, 5 insertions, 5 deletions
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;