Fix for chat continuation in llm chat, refs #601

This commit is contained in:
Simon Willison 2024-11-01 14:17:25 -07:00
parent a44ba49c21
commit 122265a3d2

View file

@ -160,6 +160,7 @@ class Response(ABC):
self._done = False
self.response_json = None
self.conversation = conversation
self.attachments = []
def __iter__(self) -> Iterator[str]:
self._start = time.monotonic()