Skip to content

Commit a57a235

Browse files
committed
add constants for hf qwen 7b
1 parent 93b5e2e commit a57a235

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

utilities/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ class S3:
309309
class HuggingFace:
310310
TINYLLAMA: str = "hf://TinyLlama/TinyLlama-1.1B-Chat-v1.0"
311311
OPT125M: str = "hf://facebook/opt-125m"
312+
QWEN_7B_INSTRUCT: str = "hf://Qwen/Qwen2.5-7B-Instruct"
312313

313314

314315
class OCIRegistry:

utilities/llmd_constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class ModelStorage:
3535
S3_QWEN: str = SharedModelStorage.S3.QWEN_7B_INSTRUCT
3636
HF_TINYLLAMA: str = SharedModelStorage.HuggingFace.TINYLLAMA
3737
HF_OPT125M: str = SharedModelStorage.HuggingFace.OPT125M
38+
HF_QWEN_7B_INSTRUCT: str = SharedModelStorage.HuggingFace.QWEN_7B_INSTRUCT
3839

3940

4041
class ContainerImages:

0 commit comments

Comments
 (0)