File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ fn main() -> Result<()> {
3939 tracing_subscriber:: EnvFilter :: try_from_default_env ( )
4040 . unwrap_or_else ( |_| tracing_subscriber:: EnvFilter :: new ( log_level) ) ,
4141 )
42+ . with_writer ( std:: io:: stderr)
4243 . init ( ) ;
4344
4445 // Load config early so both Bevy and agent threads can use it
@@ -144,7 +145,7 @@ async fn run_agent_loop(
144145 if let Some ( prompt) = initial_prompt {
145146 println ! ( "\n > {}" , prompt) ;
146147 let response = agent. chat ( & prompt) . await ?;
147- println ! ( "\n {}\n " , response) ;
148+ println ! ( "\n LocalGPT: {}\n " , response) ;
148149 }
149150
150151 // Interactive loop
@@ -180,7 +181,7 @@ async fn run_agent_loop(
180181 }
181182
182183 let response = agent. chat ( input) . await ?;
183- println ! ( "\n {}\n " , response) ;
184+ println ! ( "\n LocalGPT: {}\n " , response) ;
184185 }
185186
186187 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments