Skip to content

Commit ba82942

Browse files
authored
genai: make bucket-referencing test more resilient (#10571)
1 parent 58ffd42 commit ba82942

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

vertexai/genai/caching_test.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ package genai
1616

1717
import (
1818
"context"
19+
"fmt"
1920
"os"
2021
"strings"
2122
"testing"
@@ -76,8 +77,10 @@ func testCaching(t *testing.T, client *Client) {
7677
return cc
7778
}
7879

80+
vertexProject := os.Getenv("VERTEX_PROJECT_ID")
81+
7982
want := &CachedContent{
80-
Model: "projects/" + os.Getenv("VERTEX_PROJECT_ID") +
83+
Model: "projects/" + vertexProject +
8184
"/locations/us-central1/publishers/google/models/" + model,
8285
CreateTime: time.Now().UTC(),
8386
UpdateTime: time.Now().UTC(),
@@ -93,13 +96,15 @@ func testCaching(t *testing.T, client *Client) {
9396
}
9497
}
9598

99+
gcsFilePath := fmt.Sprintf("gs://0002-test-multimodal-%s/embeddings/xray-embedding.json", vertexProject)
100+
96101
ttl := 30 * time.Minute
97102
wantExpireTime := time.Now().Add(ttl)
98103
argcc := &CachedContent{
99104
Model: model,
100105
Expiration: ExpireTimeOrTTL{TTL: ttl},
101106
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},
103108
}}},
104109
}
105110
cc := must(client.CreateCachedContent(ctx, argcc))

vertexai/genai/client_test.go

+9
Original file line numberDiff line numberDiff line change
@@ -678,3 +678,12 @@ func TestInferLocation(t *testing.T) {
678678
})
679679
}
680680
}
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+
}

0 commit comments

Comments
 (0)