Create rag-client package

This commit is contained in:
2026-02-20 05:11:24 +00:00
parent 2c722c1166
commit c01f4d1ab3
16 changed files with 1325 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
"""RAG client package for interacting with RAG services."""
from rag_client.base import (
Message,
RAGRequest,
RAGResponse,
RAGServiceBase,
)
from rag_client.echo import EchoRAGService
from rag_client.http import HTTPRAGService
__all__ = [
"EchoRAGService",
"HTTPRAGService",
"Message",
"RAGRequest",
"RAGResponse",
"RAGServiceBase",
]