| 20 | /// Which AI provider is being used. |
| 21 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 22 | pub enum AiProvider { |
| 23 | Anthropic, |
| 24 | OpenAi, |
| 25 | Local, |
| 26 | None, |
| 27 | } |
| 28 | |
| 29 | /// Resolved embedding configuration. |
| 30 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected