From d9960d83c1c74c6b3e6922dcf8e8d58338f08a50 Mon Sep 17 00:00:00 2001 From: Peter Siska <63866+peschee@users.noreply.github.com> Date: Sun, 11 Jan 2026 15:58:10 +0000 Subject: [PATCH] style: fix formatting (biome) --- src/agents/pi-embedded-runner.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/agents/pi-embedded-runner.ts b/src/agents/pi-embedded-runner.ts index 0315ceb4f..b29bf2f65 100644 --- a/src/agents/pi-embedded-runner.ts +++ b/src/agents/pi-embedded-runner.ts @@ -222,7 +222,9 @@ function createStreamFnWithExtraParams( return undefined; } - log.debug(`creating streamFn wrapper with params: ${JSON.stringify(streamParams)}`); + log.debug( + `creating streamFn wrapper with params: ${JSON.stringify(streamParams)}`, + ); // Return a wrapper that merges our params with any passed options const wrappedStreamFn: StreamFn = (model, context, options) => { @@ -248,7 +250,12 @@ function applyExtraParamsToAgent( modelId: string, thinkLevel?: string, ): void { - const extraParams = resolveExtraParams({ cfg, provider, modelId, thinkLevel }); + const extraParams = resolveExtraParams({ + cfg, + provider, + modelId, + thinkLevel, + }); const wrappedStreamFn = createStreamFnWithExtraParams(extraParams); if (wrappedStreamFn) {