Skip to content

Commit ba9857d

Browse files
feat: Add example YAML config files
- Add configs/minimal.yaml with basic model and sampling configuration - Add configs/override.yaml with different settings for override testing - Use relative paths that resolve correctly from configs/ directory - Include simple_io and conversation mode settings for deterministic testing Co-Authored-By: Jaime Mizrachi <[email protected]>
1 parent bc11249 commit ba9857d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

configs/minimal.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
model:
2+
path: ../models/tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf
3+
n_ctx: 256
4+
sampling:
5+
seed: 42
6+
temp: 0.0
7+
prompt: "Hello from YAML"
8+
n_predict: 16
9+
simple_io: true

configs/override.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
model:
2+
path: ../models/tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf
3+
n_ctx: 256
4+
sampling:
5+
seed: 42
6+
temp: 0.8
7+
prompt: "Hello from YAML override"
8+
n_predict: 32
9+
simple_io: true

0 commit comments

Comments
 (0)