From e41bbdce02e87f3e2844bdd91ab148124619fda6 Mon Sep 17 00:00:00 2001 From: H Lohaus Date: Mon, 6 May 2024 16:42:56 +0200 Subject: Update __init__.py --- g4f/api/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/g4f/api/__init__.py b/g4f/api/__init__.py index f1374dc9..3972c079 100644 --- a/g4f/api/__init__.py +++ b/g4f/api/__init__.py @@ -51,6 +51,7 @@ class AppConfig(): list_ignored_providers: Optional[list[str]] = None g4f_api_key: Optional[str] = None ignore_cookie_files: bool = False + defaults: dict = {} @classmethod def set_config(cls, **data): @@ -145,7 +146,11 @@ class Api: if auth_header and auth_header != "Bearer": config.api_key = auth_header response = self.client.chat.completions.create( - **config.dict(exclude_none=True), + { + **AppConfig.defaults, + **config.dict(exclude_none=True), + }, + ignored=AppConfig.list_ignored_providers ) except Exception as e: -- cgit v1.2.3