summaryrefslogtreecommitdiff
path: root/submitChat.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-01 01:55:06 -0500
committerJeff Carr <[email protected]>2025-09-01 01:55:06 -0500
commitc65619154eb37912be8af563de113e028665633c (patch)
tree6f305a21a6292c18463bc07bb302cf0b26ed08a3 /submitChat.go
parentc63a746d0baa7880c54a0069b03f1924c3be3f46 (diff)
sub in the functions
Diffstat (limited to 'submitChat.go')
-rw-r--r--submitChat.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/submitChat.go b/submitChat.go
new file mode 100644
index 0000000..89e0160
--- /dev/null
+++ b/submitChat.go
@@ -0,0 +1,27 @@
+package main
+
+import (
+ "fmt"
+
+ "go.wit.com/log"
+ "google.golang.org/genai"
+)
+
+func submitChat(content []*genai.Content) error {
+ resp, err := me.client.Models.GenerateContent(me.ctx, "gemini-2.5-flash", content, nil)
+ if err != nil {
+ return log.Errorf("error sending message: %v", err)
+ }
+
+ log.Info("Response from API:")
+ for _, cand := range resp.Candidates {
+ if cand.Content != nil {
+ for _, part := range cand.Content.Parts {
+ fmt.Println(part)
+ }
+ }
+ }
+ // TODO: add the response to the protobuf
+ addResponse(resp)
+ return nil
+}