# coding=utf-8
# Copyright 2023 The HuggingFace Inc. team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Constants used as default values."""

NEURON_FILE_NAME = "model.neuron"
ENCODER_NAME = "encoder"
DECODER_NAME = "decoder"
DIFFUSION_MODEL_TEXT_ENCODER_NAME = "text_encoder"
DIFFUSION_MODEL_TEXT_ENCODER_2_NAME = "text_encoder_2"
DIFFUSION_MODEL_UNET_NAME = "unet"
DIFFUSION_MODEL_TRANSFORMER_NAME = "transformer"
DIFFUSION_MODEL_VAE_ENCODER_NAME = "vae_encoder"
DIFFUSION_MODEL_VAE_DECODER_NAME = "vae_decoder"
DIFFUSION_MODEL_CONTROLNET_NAME = "controlnet"
DIFFUSION_MODEL_IMAGE_ENCODER_NAME = "image_encoder"

NEURON_BINARIES_PATH = "/opt/aws/neuron/bin"
