File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ package genai
16
16
17
17
import (
18
18
"context"
19
+ "fmt"
19
20
"os"
20
21
"strings"
21
22
"testing"
@@ -76,8 +77,10 @@ func testCaching(t *testing.T, client *Client) {
76
77
return cc
77
78
}
78
79
80
+ vertexProject := os .Getenv ("VERTEX_PROJECT_ID" )
81
+
79
82
want := & CachedContent {
80
- Model : "projects/" + os . Getenv ( "VERTEX_PROJECT_ID" ) +
83
+ Model : "projects/" + vertexProject +
81
84
"/locations/us-central1/publishers/google/models/" + model ,
82
85
CreateTime : time .Now ().UTC (),
83
86
UpdateTime : time .Now ().UTC (),
@@ -93,13 +96,15 @@ func testCaching(t *testing.T, client *Client) {
93
96
}
94
97
}
95
98
99
+ gcsFilePath := fmt .Sprintf ("gs://0002-test-multimodal-%s/embeddings/xray-embedding.json" , vertexProject )
100
+
96
101
ttl := 30 * time .Minute
97
102
wantExpireTime := time .Now ().Add (ttl )
98
103
argcc := & CachedContent {
99
104
Model : model ,
100
105
Expiration : ExpireTimeOrTTL {TTL : ttl },
101
106
Contents : []* Content {{Role : "user" , Parts : []Part {
102
- FileData {MIMEType : "text/plain" , FileURI : "gs://0002-test-multimodal/embeddings/xray-embedding.json" },
107
+ FileData {MIMEType : "text/plain" , FileURI : gcsFilePath },
103
108
}}},
104
109
}
105
110
cc := must (client .CreateCachedContent (ctx , argcc ))
Original file line number Diff line number Diff line change @@ -678,3 +678,12 @@ func TestInferLocation(t *testing.T) {
678
678
})
679
679
}
680
680
}
681
+
682
+ func printResponse (resp * GenerateContentResponse ) {
683
+ for _ , cand := range resp .Candidates {
684
+ for _ , part := range cand .Content .Parts {
685
+ fmt .Println (part )
686
+ }
687
+ }
688
+ fmt .Println ("---" )
689
+ }
You can’t perform that action at this time.
0 commit comments