diff options
Diffstat (limited to 'example.go')
| -rw-r--r-- | example.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,10 +7,10 @@ import ( func ExampleChat() *Chats { conversation := NewChats() - conversation.AddGeminiComment("funny") + conversation.AddRegexComment("funny") /* - gchat := conversation.AddGeminiComment("funny") + gchat := conversation.AddRegexComment("funny") snip := new(CodeSnippet) snip.Filename = "log/snip1.txt" gchat.Snippets = append(gchat.Snippets, snip) @@ -18,7 +18,7 @@ func ExampleChat() *Chats { conversation.AddUserComment("yes") - conversation.AddGeminiComment("I like astronomy") + conversation.AddRegexComment("I like astronomy") dump := conversation.FormatTEXT() |
