Skip to content

Commit 79e0cda

Browse files
committed
Fix formatting
1 parent 64e2674 commit 79e0cda

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/services/aiService.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,9 @@ if (typeof globalFetchWithExtras.certificate === "function") {
100100
* In tests, we preload them once during setup to ensure reliable concurrent execution.
101101
*/
102102
export async function preloadAISDKProviders(): Promise<void> {
103-
await Promise.all([
104-
import("@ai-sdk/anthropic"),
105-
import("@ai-sdk/openai"),
106-
]);
103+
await Promise.all([import("@ai-sdk/anthropic"), import("@ai-sdk/openai")]);
107104
}
108105

109-
110106
export class AIService extends EventEmitter {
111107
private readonly METADATA_FILE = "metadata.json";
112108
private readonly streamManager: StreamManager;

0 commit comments

Comments
 (0)