summaryrefslogtreecommitdiffstats
path: root/g4f/client
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/client')
-rw-r--r--g4f/client/__init__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/g4f/client/__init__.py b/g4f/client/__init__.py
index 3adb18ef..1f3cdab1 100644
--- a/g4f/client/__init__.py
+++ b/g4f/client/__init__.py
@@ -338,8 +338,7 @@ class Images:
def create_variation(self, image: Union[str, bytes], model: str = None, provider: ProviderType = None, response_format: str = "url", **kwargs) -> ImagesResponse:
return asyncio.run(self.async_create_variation(
- image, model, provider, response_format
- **kwargs
+ image, model, provider, response_format, **kwargs
))
async def async_create_variation(self, image: Union[str, bytes], model: str = None, provider: ProviderType = None, response_format: str = "url", proxy: str = None, **kwargs) -> ImagesResponse: