Fix Chroma authentication (#4936)

Fix chroma authentication
This commit is contained in:
Philip I. Thomas 2025-07-24 12:15:03 -07:00 committed by GitHub
parent d272683a98
commit 8562d4a563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export class ChromaExtended extends Chroma {
if (this.chromaApiKey) {
obj.fetchOptions = {
headers: {
Authorization: `Bearer ${this.chromaApiKey}`
'x-chroma-token': this.chromaApiKey
}
}
}