Tai Truong
fix readme
d202ada
from typing import Any, Literal, TypeAlias
from pydantic import BaseModel
from typing_extensions import Protocol
from langflow.schema.message import ContentBlock, Message
from langflow.schema.playground_events import PlaygroundEvent
LoggableType: TypeAlias = str | dict | list | int | float | bool | None | BaseModel | PlaygroundEvent
class LogFunctionType(Protocol):
def __call__(self, message: LoggableType | list[LoggableType], *, name: str | None = None) -> None: ...
class SendMessageFunctionType(Protocol):
async def __call__(
self,
message: Message | None = None,
text: str | None = None,
background_color: str | None = None,
text_color: str | None = None,
icon: str | None = None,
content_blocks: list[ContentBlock] | None = None,
format_type: Literal["default", "error", "warning", "info"] = "default",
id_: str | None = None,
*,
allow_markdown: bool = True,
) -> Message: ...
class OnTokenFunctionType(Protocol):
def __call__(self, data: dict[str, Any]) -> None: ...