diff options
| author | Jeff Carr <[email protected]> | 2025-08-24 01:12:21 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-24 01:12:21 -0500 |
| commit | e83b6361c1428f6ab19803f3f689f11ce46e1318 (patch) | |
| tree | 168282c0a92d7e03eb70ece1e2baf9de9b652579 /example.go | |
| parent | 443e5db5ae326ca48a49432df1808ea7c665030f (diff) | |
s/gemini/regex/
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() |
