Skip to content

Commit

Permalink
add vision
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwd9000-ML committed Jan 21, 2024
1 parent 5167de0 commit b6159b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 06_librechat_app_config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ locals {
# # Azure #
# #============#
# AZURE_API_KEY = ""
# AZURE_OPENAI_MODELS = "gpt-3.5-turbo,gpt-4"
# AZURE_OPENAI_MODELS = "gpt-4-1106-preview,gpt-4,gpt-3.5-turbo,gpt-3.5-turbo-1106,gpt-4-vision-preview"
# AZURE_OPENAI_DEFAULT_MODEL = "gpt-3.5-turbo"
# PLUGINS_USE_AZURE = true
# AZURE_USE_MODEL_AS_DEPLOYMENT_NAME = true
Expand Down
14 changes: 11 additions & 3 deletions tests/auto_test1/testing.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,20 @@ oai_network_acls = null
oai_storage = null
oai_model_deployment = [
{
deployment_id = "gpt-4"
model_name = "gpt-4"
deployment_id = "gpt-4-1106-Preview"
model_name = "gpt-4-1106-Preview"
model_format = "OpenAI"
model_version = "1106-Preview"
scale_type = "Standard"
scale_capacity = 10 # 34K == Roughly 204 RPM (Requests per minute)
scale_capacity = 20 # 34K == Roughly 204 RPM (Requests per minute)
},
{
deployment_id = "gpt-4-vision-preview"
model_name = "gpt-4-vision-preview"
model_format = "OpenAI"
model_version = "vision-preview"
scale_type = "Standard"
scale_capacity = 20 # 34K == Roughly 204 RPM (Requests per minute)
}
]

Expand Down

0 comments on commit b6159b5

Please sign in to comment.