use super::{ContextualConfig, EmbeddingContext, ProcessedContext};
use anyhow::Result;
pub struct ContextProcessor {
config: ContextualConfig,
}
impl ContextProcessor {
pub fn new(config: ContextualConfig) -> Self {
Self { config }
}
pub async fn process_context(&self, _context: &EmbeddingContext) -> Result<ProcessedContext> {
Ok(ProcessedContext::default())
}
}