Create rag-client package
This commit is contained in:
19
packages/rag-client/src/rag_client/__init__.py
Normal file
19
packages/rag-client/src/rag_client/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user