-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
48 lines (37 loc) · 1.37 KB
/
config.yaml.example
File metadata and controls
48 lines (37 loc) · 1.37 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
# ComfyUI-DiscordSend Bot Configuration
# Copy this file to bot/config.yaml and fill in your values
# Environment variables will override these settings (see .env.example)
discord:
# Your Discord bot token (required)
# Get one at: https://discord.com/developers/applications
token: "YOUR_BOT_TOKEN_HERE"
# Your Discord application ID (optional)
# Used for slash command registration
application_id: "YOUR_APP_ID_HERE"
comfyui:
# ComfyUI server URL (default: http://127.0.0.1:8188)
url: "http://127.0.0.1:8188"
# WebSocket URL for real-time updates (auto-derived from url if not set)
# ws_url: "ws://127.0.0.1:8188/ws"
# Request timeout in seconds
timeout: 30
defaults:
# Maximum pending jobs per user per server
max_queue_per_user: 3
# How often to update progress embeds (seconds)
progress_update_interval: 2.0
# Default generation parameters
default_steps: 20
default_cfg: 7.0
default_width: 512
default_height: 512
# Path to default workflow (relative to bot/data/)
# workflow_path: "default_workflow_api.json"
database:
# Database URL (default: SQLite in bot/data/bot.db)
# For PostgreSQL: postgresql+asyncpg://user:pass@localhost/dbname
# url: "sqlite+aiosqlite:///bot/data/bot.db"
security:
# Restrict bot to specific guild IDs (empty = all guilds allowed)
allowed_guilds: []
# Example: allowed_guilds: [123456789, 987654321]