File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 77from unittest .mock import Mock , AsyncMock
88from dotenv import load_dotenv
99
10- from getstream .models import MessageRequest , ChannelInput , MessagePaginationParams
10+ from getstream .models import (
11+ Message ,
12+ MessageRequest ,
13+ ChannelInput ,
14+ MessagePaginationParams ,
15+ )
1116from getstream import AsyncStream
1217
1318from vision_agents .plugins .getstream .stream_conversation import StreamConversation
@@ -48,7 +53,7 @@ def mock_channel(self):
4853 def stream_conversation (self , mock_channel ):
4954 """Create a StreamConversation instance with mocked dependencies."""
5055 instructions = "You are a helpful assistant."
51- messages = []
56+ messages : list [ Message ] = []
5257 conversation = StreamConversation (
5358 instructions = instructions , messages = messages , channel = mock_channel
5459 )
You can’t perform that action at this time.
0 commit comments