mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-03-24 12:10:28 +01:00
7 lines
249 B
Python
7 lines
249 B
Python
from enum import Enum
|
|
|
|
|
|
class ModelId(Enum):
|
|
APPLE_OPENELM_1_1B_INSTRUCT = "apple/OpenELM-1_1B-Instruct"
|
|
META_LLAMA_3_2_3B_INSTRUCT = "meta-llama/Llama-3.2-3B-Instruct"
|
|
MICROSOFT_PHI_3_MINI4K_INSTRUCT = "microsoft/Phi-3-mini-4k-instruct" |