cognis-core 0.2.0

Core traits and types for the Cognis LLM framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Indexing infrastructure for managing document ingestion into vectorstores.
//!
//! Mirrors Python `langchain_core.indexing`.

pub mod api;
pub mod base;
pub mod in_memory;

pub use api::{index, CleanupMode, IndexingResult};
pub use base::{
    DeleteResponse, DocumentIndex, InMemoryRecordManager, RecordManager, UpsertResponse,
};
pub use in_memory::InMemoryDocumentIndex;