0.1.7 • Published 5 months ago
@chroma-core/openai v0.1.7
OpenAI Embedding Function for Chroma
This package provides an OpenAI embedding provider for Chroma.
Installation
npm install @chroma-core/openai
Usage
import { ChromaClient } from 'chromadb';
import { OpenAIEmbeddingFunction } from '@chroma-core/openai';
// Initialize the embedder
const embedder = new OpenAIEmbeddingFunction({
apiKey: 'your-api-key', // Or set OPENAI_API_KEY env var
modelName: 'text-embedding-3-small',
// Optional: specify dimensions for supported models
dimensions: 512,
// Optional: specify organization ID
organizationId: 'your-org-id'
});
// Create a new ChromaClient
const client = new ChromaClient({
path: 'http://localhost:8000',
});
// Create a collection with the embedder
const collection = await client.createCollection({
name: 'my-collection',
embeddingFunction: embedder,
});
// Add documents
await collection.add({
ids: ["1", "2", "3"],
documents: ["Document 1", "Document 2", "Document 3"],
});
// Query documents
const results = await collection.query({
queryTexts: ["Sample query"],
nResults: 2,
});
Configuration
Set your OpenAI API key as an environment variable:
export OPENAI_API_KEY=your-api-key
Alternatively, pass it directly to the constructor.
Supported Models
text-embedding-3-small
(default)text-embedding-3-large
text-embedding-ada-002
For models that support it (like text-embedding-3-small
and text-embedding-3-large
), you can specify custom dimensions to reduce the embedding size.