open-kioku-qdrant 2.1.1

Qdrant vector store integration for Open Kioku.
Documentation
1
2
3
4
5
6
7
use open_kioku_errors::{OkError, Result};

pub fn ensure_configured() -> Result<()> {
    Err(OkError::Unsupported(
        "Qdrant integration is optional and not configured".into(),
    ))
}