Skip to main content

vtcode_config/constants/models/
lmstudio.rs

1pub const DEFAULT_MODEL: &str = META_LLAMA_31_8B_INSTRUCT;
2pub const SUPPORTED_MODELS: &[&str] = &[
3    META_LLAMA_3_8B_INSTRUCT,
4    META_LLAMA_31_8B_INSTRUCT,
5    QWEN25_7B_INSTRUCT,
6    GEMMA_2_2B_IT,
7    GEMMA_2_9B_IT,
8    PHI_31_MINI_4K_INSTRUCT,
9];
10
11pub const META_LLAMA_3_8B_INSTRUCT: &str = "lmstudio-community/meta-llama-3-8b-instruct";
12pub const META_LLAMA_31_8B_INSTRUCT: &str = "lmstudio-community/meta-llama-3.1-8b-instruct";
13pub const QWEN25_7B_INSTRUCT: &str = "lmstudio-community/qwen2.5-7b-instruct";
14pub const GEMMA_2_2B_IT: &str = "lmstudio-community/gemma-2-2b-it";
15pub const GEMMA_2_9B_IT: &str = "lmstudio-community/gemma-2-9b-it";
16pub const PHI_31_MINI_4K_INSTRUCT: &str = "lmstudio-community/phi-3.1-mini-4k-instruct";