20 lines
378 B
Python
20 lines
378 B
Python
"""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",
|
|
]
|