lemonteaa commited on
Commit
f7ba720
·
verified ·
1 Parent(s): 07e3bc7

Create config.yaml

Browse files
Files changed (1) hide show
  1. config.yaml +36 -0
config.yaml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ macros:
2
+ "latest-llama": >
3
+ /app/llama.cpp/build/bin/llama-server
4
+ --port ${PORT}
5
+ --no-mmap
6
+ --threads 2
7
+
8
+ models:
9
+ "Ernie-4.5-0.3B":
10
+ cmd: |
11
+ ${latest-llama}
12
+ -m /app/llama.cpp/build/ERNIE-4.5-0.3B-PT-UD-Q8_K_XL.gguf
13
+ -c 32000
14
+ --jinja
15
+ ttl: 360
16
+ "LFM2-VL-450M":
17
+ cmd: |
18
+ ${latest-llama}
19
+ -m /app/llama.cpp/build/LFM2-VL-450M-Q8_0.gguf
20
+ --mmproj /app/llama.cpp/build/mmproj-LFM2-VL-450M-F16.gguf
21
+ -c 32000
22
+ ttl: 360
23
+ "gemma-3-270m-it":
24
+ cmd: |
25
+ ${latest-llama}
26
+ -m /app/llama.cpp/build/gemma-3-270m-it-UD-Q8_K_XL.gguf
27
+ -c 32000
28
+ --jinja
29
+ ttl: 360
30
+ "Qwen3-0.6B":
31
+ cmd: |
32
+ ${latest-llama}
33
+ -m /app/llama.cpp/build/Qwen3-0.6B-UD-Q8_K_XL.gguf
34
+ -c 32000
35
+ --jinja
36
+ ttl: 360