Skip to content

Commit 0b82551

Browse files
adding kotlin models
1 parent 0370cb6 commit 0b82551

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

  • examples/android/RunAnywhereAI/app/src/main/java/com/runanywhere/runanywhereai/data

examples/android/RunAnywhereAI/app/src/main/java/com/runanywhere/runanywhereai/data/ModelList.kt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,36 @@ object ModelList {
3333
url = "https://huggingface.co/Triangle104/Qwen2.5-0.5B-Instruct-Q6_K-GGUF/resolve/main/qwen2.5-0.5b-instruct-q6_k.gguf",
3434
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
3535
memoryRequirement = 600_000_000, supportsLoraAdapters = true),
36+
AppModel(id = "qwen2.5-1.5b-instruct-q4_k_m", name = "Qwen 2.5 1.5B Instruct Q4_K_M",
37+
url = "https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct-GGUF/resolve/main/qwen2.5-1.5b-instruct-q4_k_m.gguf",
38+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
39+
memoryRequirement = 2_500_000_000),
40+
// Qwen3 models
41+
AppModel(id = "qwen3-0.6b-q4_k_m", name = "Qwen3 0.6B Q4_K_M",
42+
url = "https://huggingface.co/unsloth/Qwen3-0.6B-GGUF/resolve/main/Qwen3-0.6B-Q4_K_M.gguf",
43+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
44+
memoryRequirement = 500_000_000),
45+
AppModel(id = "qwen3-1.7b-q4_k_m", name = "Qwen3 1.7B Q4_K_M",
46+
url = "https://huggingface.co/unsloth/Qwen3-1.7B-GGUF/resolve/main/Qwen3-1.7B-Q4_K_M.gguf",
47+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
48+
memoryRequirement = 1_200_000_000),
49+
AppModel(id = "qwen3-4b-q4_k_m", name = "Qwen3 4B Q4_K_M",
50+
url = "https://huggingface.co/unsloth/Qwen3-4B-GGUF/resolve/main/Qwen3-4B-Q4_K_M.gguf",
51+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
52+
memoryRequirement = 2_800_000_000),
53+
// Qwen3.5 models
54+
AppModel(id = "qwen3.5-0.8b-q4_k_m", name = "Qwen3.5 0.8B Q4_K_M",
55+
url = "https://huggingface.co/unsloth/Qwen3.5-0.8B-GGUF/resolve/main/Qwen3.5-0.8B-Q4_K_M.gguf",
56+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
57+
memoryRequirement = 600_000_000),
58+
AppModel(id = "qwen3.5-2b-q4_k_m", name = "Qwen3.5 2B Q4_K_M",
59+
url = "https://huggingface.co/unsloth/Qwen3.5-2B-GGUF/resolve/main/Qwen3.5-2B-Q4_K_M.gguf",
60+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
61+
memoryRequirement = 1_500_000_000),
62+
AppModel(id = "qwen3.5-4b-q4_k_m", name = "Qwen3.5 4B Q4_K_M",
63+
url = "https://huggingface.co/unsloth/Qwen3.5-4B-GGUF/resolve/main/Qwen3.5-4B-Q4_K_M.gguf",
64+
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,
65+
memoryRequirement = 2_800_000_000),
3666
AppModel(id = "lfm2-350m-q4_k_m", name = "LiquidAI LFM2 350M Q4_K_M",
3767
url = "https://huggingface.co/LiquidAI/LFM2-350M-GGUF/resolve/main/LFM2-350M-Q4_K_M.gguf",
3868
framework = InferenceFramework.LLAMA_CPP, category = ModelCategory.LANGUAGE,

0 commit comments

Comments
 (0)