~ | g4f v-0.1.8.9

This commit is contained in:
abc 2023-11-20 19:00:56 +00:00
parent 9140541179
commit 063696630c
4 changed files with 13 additions and 9 deletions

View file

@ -1,14 +1,18 @@
from __future__ import annotations
from asyncio import AbstractEventLoop
import sys
from asyncio import AbstractEventLoop
from concurrent.futures import ThreadPoolExecutor
from abc import ABC, abstractmethod
from inspect import signature, Parameter
from types import NoneType
from abc import ABC, abstractmethod
from inspect import signature, Parameter
from .helper import get_event_loop, get_cookies, format_prompt
from ..typing import CreateResult, AsyncResult, Messages
from .helper import get_event_loop, get_cookies, format_prompt
from ..typing import CreateResult, AsyncResult, Messages
if sys.version_info < (3, 10):
NoneType = type(None)
else:
from types import NoneType
class BaseProvider(ABC):
url: str