Spaces:
Build error
Build error
File size: 615 Bytes
c487b8d eb189bb c487b8d fee4cb4 8c3c3d4 eb189bb c487b8d eb189bb d94a89d c487b8d eb189bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
from dotenv import load_dotenv
# Load from .env file. Store your HF token in the .env file.
load_dotenv()
# BASE_MODEL = "HuggingFaceH4/zephyr-7b-beta"
BASE_MODEL = "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
# BASE_MODEL = "Qwen/Qwen2.5-3B"
# Other options:
# MODEL = "meta-llama/Llama-2-7b-chat-hf"
# MODEL = "openlm-research/open_llama_3b"
# If you finetune the model or change it in any way, save it to huggingface hub, then set MY_MODEL to your model ID. The model ID is in the format "your-username/your-model-name".
# MY_MODEL = "ellawang9/bps-chatbot"
MY_MODEL = None
HF_TOKEN = os.getenv("HF_TOKEN") |