diff options
Diffstat (limited to 'g4f/Provider/nexra/NexraBing.py')
-rw-r--r-- | g4f/Provider/nexra/NexraBing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/Provider/nexra/NexraBing.py b/g4f/Provider/nexra/NexraBing.py index 755bedd5..b7e8f73a 100644 --- a/g4f/Provider/nexra/NexraBing.py +++ b/g4f/Provider/nexra/NexraBing.py @@ -38,6 +38,7 @@ class NexraBing(AbstractProvider, ProviderModelMixin): model: str, messages: Messages, stream: bool, + markdown: bool = False, **kwargs ) -> CreateResult: model = cls.get_model(model) @@ -54,7 +55,7 @@ class NexraBing(AbstractProvider, ProviderModelMixin): } ], "conversation_style": model, - "markdown": False, + "markdown": markdown, "stream": stream, "model": "Bing" } |