Skip to content

Commit 73e5678

Browse files
committed
Fix types/chat_streaming_data import
1 parent ae6716d commit 73e5678

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/writerai/types/chat_streaming_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33

44
from .._models import BaseModel
5-
from .chat_completion import ChatCompletion
5+
from .chat import Chat
66

77
__all__ = ["ChatStreamingData"]
88

99

1010
class ChatStreamingData(BaseModel):
11-
data: ChatCompletion
11+
data: Chat

0 commit comments

Comments
 (0)