(self, final)
| 1975 | self.io.tool_warning("Empty response received from LLM. Check your provider account?") |
| 1976 | |
| 1977 | def live_incremental_response(self, final): |
| 1978 | show_resp = self.render_incremental_response(final) |
| 1979 | # Apply any reasoning tag formatting |
| 1980 | show_resp = replace_reasoning_tags(show_resp, self.reasoning_tag_name) |
| 1981 | self.mdstream.update(show_resp, final=final) |
| 1982 | |
| 1983 | def render_incremental_response(self, final): |
| 1984 | return self.get_multi_response_content_in_progress() |