This repository was archived by the owner on May 29, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ import {
5757 MarkdownTrace ,
5858 installGlobals ,
5959 GenerationStats ,
60+ isQuiet ,
61+ setQuiet ,
6062} from "@genaiscript/core" ;
6163import { NodeHost } from "./nodehost.js" ;
6264import debug from "debug" ;
@@ -154,6 +156,7 @@ export async function config(
154156) : Promise < void > {
155157 if ( _nodeHost ) throw new Error ( "Runtime already configured. Call `config` only once." ) ;
156158
159+ setQuiet ( true ) ;
157160 dbg ( `config %o` , dotEnvPaths ) ;
158161 dbg ( `hostConfig %O` , hostConfig ) ;
159162 installGlobals ( ) ;
@@ -184,9 +187,9 @@ export async function config(
184187 inner : true ,
185188 stats : new GenerationStats ( model ) ,
186189 model : LARGE_MODEL_ID ,
187- userState : { } ,
190+ userState : { } ,
188191 } ,
189192 LARGE_MODEL_ID ,
190193 ) ;
191194 installGlobalPromptContext ( ctx ) ;
192- }
195+ }
You can’t perform that action at this time.
0 commit comments