bps-school-chatbot / config.py
ellawang9's picture
Update config.py
8c3c3d4 verified
raw
history blame contribute delete
615 Bytes
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")