Skip to content

ProviderProtocol

fastagency.base.ProviderProtocol #

Bases: Protocol

names property #

names: list[str]

get_description #

get_description(name: str) -> str
Source code in fastagency/base.py
def get_description(self, name: str) -> str: ...

run #

run(
    name: str,
    ui: UI,
    user_id: Optional[str] = None,
    **kwargs: Any
) -> str
Source code in fastagency/base.py
def run(
    self,
    name: str,
    ui: UI,
    user_id: Optional[str] = None,
    **kwargs: Any,
) -> str: ...