diff options
| author | Jeff Carr <[email protected]> | 2025-08-22 02:38:49 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 02:38:49 -0500 |
| commit | 21ca3300d4e8bccb6e324ec7c3fa62aa2f1cea35 (patch) | |
| tree | 40d9956dcb4daa8db85f9d7d9ac8633df1a12aa4 /example.go | |
| parent | 185677e464c9e2842c75500156ba9b38c40acbf8 (diff) | |
changed protobuf
Diffstat (limited to 'example.go')
| -rw-r--r-- | example.go | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -10,11 +10,14 @@ func ExampleChat() *Chats { t := conversation.AddTable() t.AddRow([]string{"apple", "pear"}) - gchat := conversation.AddGeminiComment("funny") + conversation.AddGeminiComment("funny") - snip := new(CodeSnippet) - snip.Filename = "log/snip1.txt" - gchat.Snippets = append(gchat.Snippets, snip) + /* + gchat := conversation.AddGeminiComment("funny") + snip := new(CodeSnippet) + snip.Filename = "log/snip1.txt" + gchat.Snippets = append(gchat.Snippets, snip) + */ conversation.AddUserComment("yes") |
