First commit

This commit is contained in:
2026-06-19 22:17:09 -03:00
commit 239203ee2a
533 changed files with 75195 additions and 0 deletions

12
tests/unit/test_rag.py Normal file
View File

@@ -0,0 +1,12 @@
import pytest
from types import SimpleNamespace
from agent_framework.rag.rag_service import RagService
@pytest.mark.asyncio
async def test_rag_service_retrieves_relevant_document():
settings = SimpleNamespace(VECTOR_STORE_PROVIDER='memory', GRAPH_STORE_PROVIDER='memory', RAG_TOP_K=2)
rag = RagService(settings)
await rag.add_documents(['fatura alta por roaming internacional', 'pedido de troca de aparelho'], namespace='billing')
result = await rag.retrieve('minha fatura veio alta', namespace='billing')
assert result.documents
assert 'fatura' in result.as_prompt_context().lower()