From af57eec6919c991153a8cd6ee1e9fc0cb2eea394 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 21 Aug 2025 00:52:41 -0500 Subject: example works --- chat.proto | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'chat.proto') diff --git a/chat.proto b/chat.proto index addf823..a610d2e 100644 --- a/chat.proto +++ b/chat.proto @@ -11,9 +11,14 @@ message Table { repeated Row rows = 2; } +enum Who { + NOONE = 0; + GEMINI = 1; + USER = 2; +} + message Chat { - bool gemini = 1; - bool user = 2; + Who from = 1; string content = 3; Table table = 4; } -- cgit v1.2.3