We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3900f8 commit b0e0fb3Copy full SHA for b0e0fb3
packages/modules/chromadb/src/chromadb-container.test.ts
@@ -36,7 +36,7 @@ describe("ChromaDB", { timeout: 360_000 }, () => {
36
// queryCollectionWithEmbeddingFunction {
37
await using container = await new ChromaDBContainer(IMAGE).start();
38
39
- const ollama = await new GenericContainer("ollama/ollama").withExposedPorts(11434).start();
+ await using ollama = await new GenericContainer("ollama/ollama").withExposedPorts(11434).start();
40
await ollama.exec(["ollama", "pull", "nomic-embed-text"]);
41
const client = new ChromaClient({ path: container.getHttpUrl() });
42
const embedder = new OllamaEmbeddingFunction({
0 commit comments