synwire-core 0.1.0

Core traits and types for the Synwire AI framework
Documentation
1
2
3
4
5
6
7
8
9
//! Retriever traits and types.
//!
//! This module provides the [`Retriever`] trait for document retrieval,
//! [`VectorStoreRetriever`] that wraps a vector store, and configuration
//! types [`SearchType`] and [`RetrievalMode`].

mod traits;

pub use traits::{RetrievalMode, Retriever, SearchType, VectorStoreRetriever};