Skip to content

Commit

Permalink
[DOC] fix docs build (#2794)
Browse files Browse the repository at this point in the history
## Description of changes

the nextjs build was failing and so new docs were not releasing. this
makes nextjs happy

## Test plan

`yarn build` now works

## Documentation Changes
none needed
  • Loading branch information
jeffchuber authored Sep 15, 2024
1 parent 586ae7e commit 0bc7f8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clients/js/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { ChromaClient } from "./ChromaClient";
export { AdminClient } from "./AdminClient";
export { CloudClient } from "./CloudClient";
export { IEmbeddingFunction } from "./embeddings/IEmbeddingFunction";
export type { IEmbeddingFunction } from "./embeddings/IEmbeddingFunction";
export { OpenAIEmbeddingFunction } from "./embeddings/OpenAIEmbeddingFunction";
export { CohereEmbeddingFunction } from "./embeddings/CohereEmbeddingFunction";
export { TransformersEmbeddingFunction } from "./embeddings/TransformersEmbeddingFunction";
Expand All @@ -11,7 +11,7 @@ export { JinaEmbeddingFunction } from "./embeddings/JinaEmbeddingFunction";
export { GoogleGenerativeAiEmbeddingFunction } from "./embeddings/GoogleGeminiEmbeddingFunction";
export { OllamaEmbeddingFunction } from "./embeddings/OllamaEmbeddingFunction";

export {
export type {
IncludeEnum,
GetParams,
CollectionType,
Expand Down
2 changes: 1 addition & 1 deletion docs/docs.trychroma.com/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
Expand Down

0 comments on commit 0bc7f8c

Please sign in to comment.