Skip to content

Commit 911d86d

Browse files
authored
fix
1 parent 3421c01 commit 911d86d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/inference/src/providers/providerHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export abstract class TaskProviderHelper {
117117
prepareHeaders(params: HeaderParams, isBinary: boolean): Record<string, string> {
118118
const headers: Record<string, string> = { };
119119
if (params.authMethod !== "none") {
120-
headers['Authorization'] = `Bearer ${params.accessToken}`;
120+
headers["Authorization"] = `Bearer ${params.accessToken}`;
121121
}
122122
if (!isBinary) {
123123
headers["Content-Type"] = "application/json";

0 commit comments

Comments
 (0)