add gpt4 turbo (#115)

pull/117/head
Laurel Orr 5 months ago committed by GitHub
parent a657bdd2c2
commit eb7e6faec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,13 @@ from manifest.request import LMRequest
logger = logging.getLogger(__name__)
# List from https://platform.openai.com/docs/models/model-endpoint-compatibility
OPENAICHAT_ENGINES = {"gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "gpt-4-32k"}
OPENAICHAT_ENGINES = {
"gpt-3.5-turbo",
"gpt-3.5-turbo-16k",
"gpt-4",
"gpt-4-32k",
"gpt-4-1106-preview",
}
class OpenAIChatClient(OpenAIClient):

Loading…
Cancel
Save