| 13 | use anyhow::{anyhow, Context, Ok, Result}; |
| 14 | |
| 15 | pub struct Processor { |
| 16 | pub settings: ConfigVar, |
| 17 | pub vec_store: VectorStore, |
| 18 | } |
| 19 | |
| 20 | impl Processor { |
| 21 | pub fn new(settings: ConfigVar, vec_store: VectorStore) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected