summaryrefslogtreecommitdiffstats
path: root/g4f/api/__init__.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 19:30:53 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-02-23 19:30:53 +0100
commit6b3be02d63b4c3592654a0059474c37465015e11 (patch)
treef19fcd829039435d1aae9ace02873770ca756dca /g4f/api/__init__.py
parentImprove readme, add smartphone guide (diff)
downloadgpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar.gz
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar.bz2
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar.lz
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar.xz
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.tar.zst
gpt4free-6b3be02d63b4c3592654a0059474c37465015e11.zip
Diffstat (limited to 'g4f/api/__init__.py')
-rw-r--r--g4f/api/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/g4f/api/__init__.py b/g4f/api/__init__.py
index 18268eec..abfe3b04 100644
--- a/g4f/api/__init__.py
+++ b/g4f/api/__init__.py
@@ -16,12 +16,12 @@ from g4f.typing import Messages
class ChatCompletionsConfig(BaseModel):
messages: Messages
model: str
- provider: Union[str, None]
+ provider: Union[str, None] = None
stream: bool = False
- temperature: Union[float, None]
- max_tokens: int = None
- stop: Union[list[str], str, None]
- api_key: Union[str, None]
+ temperature: Union[float, None] = None
+ max_tokens: Union[int, None] = None
+ stop: Union[list[str], str, None] = None
+ api_key: Union[str, None] = None
class Api:
def __init__(self, engine: g4f, debug: bool = True, sentry: bool = False,