(self, response_text: str)
| 7527 | message["function_call"] = dict(cast(Dict[str, Any], tool_calls[0]["function"])) |
| 7528 | |
| 7529 | def parse_completion_message(self, response_text: str) -> Dict[str, Any]: |
| 7530 | parsed = self.parse_chat_response(response_text, partial=False) |
| 7531 | return self._parsed_chat_message(parsed=parsed) |
| 7532 | |
| 7533 | def _stream_state_message(self, *, partial: bool) -> Dict[str, Any]: |
| 7534 | assert self._stream_state is not None |
no test coverage detected