diff options
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") |
