()
| 20 | } |
| 21 | |
| 22 | pub async fn init_agentic_system_for_cli() -> Result<AgenticSystem> { |
| 23 | initialize_global_config() |
| 24 | .await |
| 25 | .context("Failed to initialize global config service")?; |
| 26 | AIClientFactory::initialize_global() |
| 27 | .await |
| 28 | .context("Failed to initialize global AIClientFactory")?; |
| 29 | init_agentic_system().await |
| 30 | } |
no test coverage detected