Merge pull request #4193 from tanavamsikrishna/main

This commit is contained in:
paul-gauthier 2025-06-08 07:11:31 -07:00 committed by GitHub
commit 8d48def24d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1001,7 +1001,11 @@ class InputOutput:
self.console.print(*messages, style=style)
def get_assistant_mdstream(self):
mdargs = dict(style=self.assistant_output_color, code_theme=self.code_theme)
mdargs = dict(
style=self.assistant_output_color,
code_theme=self.code_theme,
inline_code_lexer="text",
)
mdStream = MarkdownStream(mdargs=mdargs)
return mdStream