Files
Auto-GPT/autogpt/types/openai.py
2023-04-17 22:10:40 -07:00

10 lines
218 B
Python

"""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