fixing up the response

This commit is contained in:
Moishe Lettvin
2023-12-27 19:11:49 -05:00
parent 927aaadf39
commit 3f1bb7cac1
2 changed files with 7 additions and 10 deletions

View File

@@ -214,11 +214,6 @@ class AsyncProcessor:
pass
class ResponseArgs(TypedDict):
services: AIServiceConfig
message_handler: MessageHandler
output_queue: Queue
class Response(AsyncProcessor):
def __init__(
self,
@@ -234,8 +229,6 @@ class Response(AsyncProcessor):
self.chunks_in_preparation = Queue()
# self.sprite_loader = sprite_loader.SpriteLoader()
self.llm_responses: list[str] = []
def get_preparation_iterator(self) -> Iterator: