zeph 0.21.2

Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Integration tests for the document ingestion pipeline and RAG context injection (#1028).

/// Ingest a plain text file, query the agent, and verify the chunk appears in agent context.
///
/// Requires a running Qdrant instance and a configured embedding provider.
#[ignore = "requires running Qdrant and embedding provider"]
#[tokio::test]
async fn ingested_document_chunk_appears_in_agent_context() {
    // Placeholder: full implementation tracked in the live-testing playbook.
    // The test body requires a running Qdrant instance and embedding provider (see #1028).
}