9 lines
315 B
Python
9 lines
315 B
Python
"""Frontend protocols and (later) concrete app implementations."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from beaver_gateway.frontends.anthropic import AnthropicMessagesFrontend
|
|
from beaver_gateway.frontends.base import Frontend, GatewayRuntime
|
|
|
|
__all__ = ["AnthropicMessagesFrontend", "Frontend", "GatewayRuntime"]
|