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