8 lines
258 B
Python
8 lines
258 B
Python
|
|
"""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"]
|