mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-21 16:04:21 +01:00
10 lines
218 B
Python
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
|