Update types.py

This commit is contained in:
H Lohaus 2024-04-06 20:41:30 +02:00 committed by GitHub
parent 0c4a1d0bfa
commit b4399866ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,20 @@
from ..providers.types import BaseProvider, ProviderType
from ..providers.types import BaseProvider, ProviderType, FinishReason
from typing import Union, Iterator
ImageProvider = Union[BaseProvider, object]
Proxies = Union[dict, str]
IterResponse = Iterator[Union[ChatCompletion, ChatCompletionChunk]]
class Client():
def __init__(
self,
api_key: str = None,
proxies: Proxies = None,
provider: ProviderType = None,
image_provider: ImageProvider = None,
**kwargs
) -> None:
self.api_key: str = api_key
self.proxies: Proxies = proxies
self.chat: Chat = Chat(self, provider)
self.images: Images = Images(self, image_provider)