chroma / clients /js /test /initClient.ts
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
207 Bytes
import { ChromaClient } from "../src/ChromaClient";
const PORT = process.env.PORT || "8000";
const URL = "http://localhost:" + PORT;
const chroma = new ChromaClient({ path: URL });
export default chroma;