Files
siemens_ragas/rag_eval/adapters/__init__.py

8 lines
258 B
Python
Raw Normal View History

2026-06-12 14:02:15 +08:00
"""Adapter implementations that connect evaluation flows to target applications."""
from .base import AppAdapter
from .http import HttpAppAdapter
from .python import PythonFunctionAdapter
__all__ = ["AppAdapter", "HttpAppAdapter", "PythonFunctionAdapter"]