diff options
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/FlowGpt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/Provider/FlowGpt.py b/g4f/Provider/FlowGpt.py index 89d44c6c..39192bf9 100644 --- a/g4f/Provider/FlowGpt.py +++ b/g4f/Provider/FlowGpt.py @@ -56,7 +56,7 @@ class FlowGpt(AsyncGeneratorProvider, ProviderModelMixin): "nsfw": False, "question": messages[-1]["content"], "history": [{"role": "assistant", "content": "Hello, how can I help you today?"}, *messages[:-1]], - "system": "You are helpful assitant. Follow the user's instructions carefully. Respond using markdown", + "system": kwargs.get("system_message", "You are helpful assistant. Follow the user's instructions carefully."), "temperature": kwargs.get("temperature", 0.7), "promptId": f"model-{model}", "documentIds": [], |