File size: 163 Bytes
bf41ce7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from typing import TypedDict


class Message(TypedDict):
    """OpenAI Message object containing a role and the message content"""

    role: str
    content: str