turboprop 0.1.2

Fast semantic code search and indexing tool
Documentation
1
2
3
4
5
6
7
8
9
10
//! Backend implementations for different embedding model types.
//!
//! This module provides different backend implementations for loading and running
//! embedding models. Each backend is optimized for specific model formats.

pub mod gguf;
pub mod huggingface;

pub use gguf::{GGUFBackend, GGUFEmbeddingModel};
pub use huggingface::{HuggingFaceBackend, Qwen3EmbeddingModel};