brain_my / Brain /src /service /llm /base.py
Thomas Richardson
new requirement
a495cf3
from typing import TypedDict
class Message(TypedDict):
"""OpenAI Message object containing a role and the message content"""
role: str
content: str