-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
74 lines (74 loc) · 2.29 KB
/
config.example.json
File metadata and controls
74 lines (74 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"theme": "stoic",
"seed": "auto",
"__seed_options__": "auto, random, or any numerical integer value",
"color_mode": "balanced",
"__color_mode_options__": "minimal, balanced, vibrant, wild",
"layout_hint": "minimal",
"palette_hint": "dark",
"quote_style": "stoic",
"layout": "minimal",
"__layout_options__": "minimal, centered",
"quote_provider": "csv",
"__quote_provider_options__": "csv, pollinations",
"image_provider": "mesh",
"__image_provider_options__": "mesh, gradient, noise, flow, voronoi, aurora, waves, ribbons, reaction, pollinations",
"palette_provider": "system_theme",
"__palette_provider_options__": "system_theme, theme_palette, random",
"image_prompt_provider": "pollinations:text",
"llm": {
"ollama": {
"base_url": "http://localhost:11434/v1",
"api_key": "ollama",
"model": "llama3"
},
"local_server": {
"base_url": "http://localhost:8080/v1",
"api_key": "sk-no-key-needed",
"model": "MaziyarPanahi/Qwen3-4B-GGUF:Q6_K",
"request_params": {
"temperature": 0.8,
"max_tokens": 2000
}
}
},
"noise": {
"scale": 10,
"opacity": 0.25,
"style": "smooth"
},
"pollinations": {
"image": {
"model": "flux",
"nologo": true,
"api_key": "YOUR_API_KEY_HERE"
},
"text": {
"model": "gpt-5"
}
},
"huggingface": {
"api_key": "hf_YOUR_TOKEN_HERE"
},
"resolution": {
"width": 1920,
"height": 1080
},
"csv": {
"file": "~/.local/share/genwal/quotes.csv"
},
"prompts": {
"quote": "Generate a single, short, punchy, direct motivational quote based on the following theme hints.\n",
"image_description": "Generate a concise visual description for an image to accompany this quote. Focus on abstract, nature, or technological themes. No text in the image.\n"
},
"wallpaper_settings": {
"apply_wallpaper": true,
"save_path": "~/.cache/gen-wal/archive"
},
"watermark": {
"enabled": true,
"position": "bottom_right",
"font_size": 25,
"opacity": 50
}
}