Skip to content

Commit 7d3cb90

Browse files
committed
Fixups
1 parent 4a11dc5 commit 7d3cb90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/e2e_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var _ = Describe("API", func() {
7373
Eventually(func() error {
7474

7575
res, err := localAI.CreateEmbeddings(context.Background(), openai.EmbeddingRequest{
76-
Model: "bert-embeddings",
76+
Model: "granite-embedding-107m-multilingual",
7777
Input: "foo",
7878
})
7979
if len(res.Data) == 0 {
@@ -138,14 +138,14 @@ var _ = Describe("API", func() {
138138
Expect(entries).To(HaveLen(2))
139139

140140
expectContent("foo", "spiders", "spider", localRecall)
141-
expectContent("foo", "heist", "The Great Pigeon Heist", localRecall)
141+
expectContent("foo", "heist", "the Great Pigeon Heist", localRecall)
142142

143143
entry := fileName
144144
entries, err = localRecall.DeleteEntry(testCollection, entry)
145145
Expect(err).ToNot(HaveOccurred())
146146
Expect(entries).To(HaveLen(1))
147147

148-
expectContent("foo", "heist", "The Great Pigeon Heist", localRecall)
148+
expectContent("foo", "heist", "the Great Pigeon Heist", localRecall)
149149
})
150150
})
151151

0 commit comments

Comments
 (0)