mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-26 09:57:24 +03:00
Merge pull request #1835 from ochen1/patch-1
Add model alias for gpt-4-turbo-preview in OpenaiChat Provider
This commit is contained in:
commit
fc33573b1b
@ -44,7 +44,7 @@ class OpenaiChat(AsyncGeneratorProvider, ProviderModelMixin):
|
||||
supports_system_message = True
|
||||
default_model = None
|
||||
models = ["gpt-3.5-turbo", "gpt-4", "gpt-4-gizmo"]
|
||||
model_aliases = {"text-davinci-002-render-sha": "gpt-3.5-turbo", "": "gpt-3.5-turbo"}
|
||||
model_aliases = {"text-davinci-002-render-sha": "gpt-3.5-turbo", "": "gpt-3.5-turbo", "gpt-4-turbo-preview": "gpt-4"}
|
||||
_api_key: str = None
|
||||
_headers: dict = None
|
||||
_cookies: Cookies = None
|
||||
@ -784,4 +784,4 @@ class Response():
|
||||
async def get_messages(self) -> list:
|
||||
messages = self._messages
|
||||
messages.append({"role": "assistant", "content": await self.message()})
|
||||
return messages
|
||||
return messages
|
||||
|
Loading…
Reference in New Issue
Block a user