oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
use thiserror::Error;

#[derive(Error, Debug)]
pub enum VectorStoreError {
    // ============ 基础操作错误 ============
    #[error("This vector store does not support delete")]
    DeleteNotSupported,

    #[error("Connection failed: {0}")]
    ConnectionError(String),

    #[error("Query failed: {0}")]
    QueryError(String),

    #[error("Document not found: {0}")]
    NotFoundError(String),

    #[error("Index error: {0}")]
    IndexError(String),

    // ============ 认证和权限错误 ============
    #[error("Authentication failed: {0}")]
    AuthenticationError(String),

    #[error("Permission denied: {0}")]
    PermissionError(String),

    // ============ 速率限制和超时错误 ============
    #[error("Rate limit exceeded")]
    RateLimitError,

    #[error("Timeout: {0}")]
    TimeoutError(String),

    // ============ 数据转换错误 ============
    #[error("Serialization error: {0}")]
    SerializationError(#[from] serde_json::Error),

    #[error("Deserialization error: {0}")]
    DeserializationError(String),

    #[error("Embedding dimension mismatch: expected {expected}, got {actual}")]
    DimensionMismatch { expected: usize, actual: usize },

    // ============ 集合/索引管理错误 ============
    #[error("Collection not found: {0}")]
    CollectionNotFound(String),

    #[error("Collection already exists: {0}")]
    CollectionAlreadyExists(String),

    #[error("Index not found: {0}")]
    IndexNotFound(String),

    // ============ 参数验证错误 ============
    #[error("Invalid parameter: {0}")]
    InvalidParameter(String),

    #[error("Missing required parameter: {0}")]
    MissingParameter(String),

    // ============ 内部错误 ============
    #[error("Internal error: {0}")]
    InternalError(String),

    #[error("Unknown error: {0}")]
    Unknown(String),
}

impl From<String> for VectorStoreError {
    fn from(s: String) -> Self {
        VectorStoreError::Unknown(s)
    }
}

impl From<&str> for VectorStoreError {
    fn from(s: &str) -> Self {
        VectorStoreError::Unknown(s.to_string())
    }
}

// Generic conversion for embedding errors
impl From<crate::embedding::EmbedderError> for VectorStoreError {
    fn from(e: crate::embedding::EmbedderError) -> Self {
        VectorStoreError::InternalError(format!("Embedding error: {}", e))
    }
}

impl From<Box<dyn std::error::Error + Send + Sync>> for VectorStoreError {
    fn from(e: Box<dyn std::error::Error + Send + Sync>) -> Self {
        VectorStoreError::Unknown(e.to_string())
    }
}