We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93b5e2e commit a57a235Copy full SHA for a57a235
utilities/constants.py
@@ -309,6 +309,7 @@ class S3:
309
class HuggingFace:
310
TINYLLAMA: str = "hf://TinyLlama/TinyLlama-1.1B-Chat-v1.0"
311
OPT125M: str = "hf://facebook/opt-125m"
312
+ QWEN_7B_INSTRUCT: str = "hf://Qwen/Qwen2.5-7B-Instruct"
313
314
315
class OCIRegistry:
utilities/llmd_constants.py
@@ -35,6 +35,7 @@ class ModelStorage:
35
S3_QWEN: str = SharedModelStorage.S3.QWEN_7B_INSTRUCT
36
HF_TINYLLAMA: str = SharedModelStorage.HuggingFace.TINYLLAMA
37
HF_OPT125M: str = SharedModelStorage.HuggingFace.OPT125M
38
+ HF_QWEN_7B_INSTRUCT: str = SharedModelStorage.HuggingFace.QWEN_7B_INSTRUCT
39
40
41
class ContainerImages:
0 commit comments