| 127 | /// LLM parameters derived from agent configuration. |
| 128 | #[derive(Debug, Clone, Default)] |
| 129 | pub struct AgentParams { |
| 130 | pub max_tokens: Option<u64>, |
| 131 | pub temperature: Option<f32>, |
| 132 | pub top_p: Option<f32>, |
| 133 | } |
| 134 | |
| 135 | pub type SessionUpdateHook = Arc<dyn Fn(&Session) + Send + Sync + 'static>; |
| 136 |
nothing calls this directly
no outgoing calls
no test coverage detected