(
&self,
workspace: String,
llm_client: Arc<dyn LlmClient>,
opts: &SessionOptions,
)
| 503 | |
| 504 | #[cfg(test)] |
| 505 | fn build_session( |
| 506 | &self, |
| 507 | workspace: String, |
| 508 | llm_client: Arc<dyn LlmClient>, |
| 509 | opts: &SessionOptions, |
| 510 | ) -> Result<AgentSession> { |
| 511 | session_builder::build_agent_session(self, workspace, llm_client, opts) |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | // ============================================================================ |