mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-19 10:14:21 -05:00
- Update default summarize model to `claude-sonnet-4-5` - Replace `gpt-4o` references with `gpt-5.2` throughout docs - Replace `gpt-4o-mini` references with `gpt-5-mini` - Add MiniMax-M2.5 and M2.5-lightning to static models list - Update image generation warning to suggest `gpt-5.2` - Update OpenAI chat example script to use `gpt-5-mini` - Update REST API docs and examples with current model names
22 lines
643 B
YAML
22 lines
643 B
YAML
# Example Fabric configuration with notification support
|
|
# Save this to ~/.config/fabric/config.yaml to use as defaults
|
|
|
|
# Enable notifications by default for all commands
|
|
notification: true
|
|
|
|
# Optional: Use a custom notification command
|
|
# Examples:
|
|
# macOS with custom sound:
|
|
# notificationCommand: 'osascript -e "display notification \"$2\" with title \"$1\" sound name \"Ping\""'
|
|
#
|
|
# Linux with custom urgency:
|
|
# notificationCommand: 'notify-send --urgency=normal "$1" "$2"'
|
|
#
|
|
# Custom script:
|
|
# notificationCommand: '/path/to/custom-notification-script.sh "$1" "$2"'
|
|
|
|
# Other common settings
|
|
model: "gpt-5.2"
|
|
temperature: 0.7
|
|
stream: true
|