Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
salman1993 committed Jan 13, 2025
1 parent a1a9272 commit 1ede8c2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/goose/src/agents/capabilities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ impl Capabilities {
let service = McpService::with_timeout(handle, Duration::from_secs(10));
Box::new(McpClient::new(service))
}
SystemConfig::Stdio { ref cmd, ref args, ref envs } => {
SystemConfig::Stdio {
ref cmd,
ref args,
ref envs,
} => {
let transport = StdioTransport::new(cmd, args.to_vec(), envs.get_env());
let handle = transport.start().await?;
let service = McpService::with_timeout(handle, Duration::from_secs(10));
Expand Down

0 comments on commit 1ede8c2

Please sign in to comment.