File size: 541 Bytes
c487b8d
 
 
 
 
 
ed673e6
d4f9e0d
c487b8d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 = "meta-llama/Llama-2-7b-chat-hf"
# 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 = None

HF_TOKEN = os.getenv("HF_TOKEN")