diff options
Diffstat (limited to 'g4f')
-rw-r--r-- | g4f/Provider/AmigoChat.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/g4f/Provider/AmigoChat.py b/g4f/Provider/AmigoChat.py index 5e896dc8..5d579841 100644 --- a/g4f/Provider/AmigoChat.py +++ b/g4f/Provider/AmigoChat.py @@ -14,7 +14,6 @@ class AmigoChat(AsyncGeneratorProvider, ProviderModelMixin): chat_api_endpoint = "https://api.amigochat.io/v1/chat/completions" image_api_endpoint = "https://api.amigochat.io/v1/images/generations" working = True - supports_gpt_4 = True supports_stream = True supports_system_message = True supports_message_history = True @@ -159,7 +158,7 @@ class AmigoChat(AsyncGeneratorProvider, ProviderModelMixin): pass else: # Image generation - prompt = messages[0]['content'] + prompt = messages[-1]['content'] data = { "prompt": prompt, "model": model, |