mirror of
https://github.com/Hopiu/llm.git
synced 2026-04-27 00:14:46 +00:00
Provide response_json type hint (#1077)
This commit is contained in:
parent
713ee9b032
commit
5d6f96a908
1 changed files with 1 additions and 1 deletions
|
|
@ -525,7 +525,7 @@ class _BaseResponse:
|
|||
self._chunks: List[str] = []
|
||||
self._done = False
|
||||
self._tool_calls: List[ToolCall] = []
|
||||
self.response_json = None
|
||||
self.response_json: Optional[Dict[str, Any]] = None
|
||||
self.conversation = conversation
|
||||
self.attachments: List[Attachment] = []
|
||||
self._start: Optional[float] = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue