Skip to content

Commit 8562d4a

Browse files
Fix Chroma authentication (#4936)
Fix chroma authentication
1 parent d272683 commit 8562d4a

File tree

1 file changed

+1
-1
lines changed
  • packages/components/nodes/vectorstores/Chroma

1 file changed

+1
-1
lines changed

packages/components/nodes/vectorstores/Chroma/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class ChromaExtended extends Chroma {
3232
if (this.chromaApiKey) {
3333
obj.fetchOptions = {
3434
headers: {
35-
Authorization: `Bearer ${this.chromaApiKey}`
35+
'x-chroma-token': this.chromaApiKey
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)