summaryrefslogtreecommitdiff
path: root/example.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-24 01:12:21 -0500
committerJeff Carr <[email protected]>2025-08-24 01:12:21 -0500
commite83b6361c1428f6ab19803f3f689f11ce46e1318 (patch)
tree168282c0a92d7e03eb70ece1e2baf9de9b652579 /example.go
parent443e5db5ae326ca48a49432df1808ea7c665030f (diff)
s/gemini/regex/
Diffstat (limited to 'example.go')
-rw-r--r--example.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/example.go b/example.go
index 8c0ba38..e496463 100644
--- a/example.go
+++ b/example.go
@@ -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()