Files
opendan/agent_jarvis/jarvis/gpt/message.py
T

10 lines
218 B
Python
Raw Normal View History

2023-06-05 13:21:34 +08:00
"""Type helpers for working with the OpenAI library"""
from typing import TypedDict
class Message(TypedDict):
"""OpenAI Message object containing a role and the message content"""
role: str
content: str