Skip to content

Commit 04be0dd

Browse files
authored
Merge pull request #958 from FlowiseAI/feature/ChromaAuth
Bugfix/Chroma Authorization
2 parents 34a9766 + 88f0fe9 commit 04be0dd

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class ChromaExtended extends Chroma {
3030
if (this.chromaApiKey) {
3131
obj.fetchOptions = {
3232
headers: {
33-
'X-Api-Key': this.chromaApiKey
33+
Authorization: `Bearer ${this.chromaApiKey}`
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)