diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-23 02:51:10 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-23 02:51:10 +0100 |
commit | d733930a2b1876340039d90f19ece81fab0d078d (patch) | |
tree | 208266ba04a3d4d056a85f20c104d324a1b625c8 /g4f/api/__init__.py | |
parent | Use new client in inter api (diff) | |
download | gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.gz gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.bz2 gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.lz gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.xz gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.tar.zst gpt4free-d733930a2b1876340039d90f19ece81fab0d078d.zip |
Diffstat (limited to 'g4f/api/__init__.py')
-rw-r--r-- | g4f/api/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/g4f/api/__init__.py b/g4f/api/__init__.py index 9033aafe..d1e8539f 100644 --- a/g4f/api/__init__.py +++ b/g4f/api/__init__.py @@ -6,7 +6,7 @@ import nest_asyncio from fastapi import FastAPI, Response, Request from fastapi.responses import StreamingResponse, RedirectResponse, HTMLResponse, JSONResponse from pydantic import BaseModel -from typing import List +from typing import List, Union import g4f import g4f.debug @@ -16,12 +16,12 @@ from g4f.typing import Messages class ChatCompletionsConfig(BaseModel): messages: Messages model: str - provider: str | None + provider: Union[str, None] stream: bool = False - temperature: float | None + temperature: Union[float, None] max_tokens: int = None - stop: list[str] | str | None - access_token: str | None + stop: Union[list[str], str, None] + access_token: Union[str, None] class Api: def __init__(self, engine: g4f, debug: bool = True, sentry: bool = False, |