KoboldAI-Client/.gitignore
Henk e5dcf91a08 Defaults Support
This adds support for loading settings from the defaults folder, settings are loaded in the following order and overwritten if needed by the higher number.

1. The model config file.
2. The defaults folder.
3. The users defined settings file.

With this support we can begin to ship better defaults for models we do not manage. Our community tuners have been most helpful at adding good defaults to their configuration files, but for other models such as the base models this gives us the flexibility to define better settings for each model without messing with a users desired settings if they already exist.
2022-06-01 10:34:16 +02:00

36 lines
542 B
Plaintext

# Ignore client settings file
settings
# Ignore stories file except for test_story
stories
!stories/sample_story.json
# Ignore stuff that would polute our Git
/.project
*.bak
miniconda3
runtime
bin
*.settings
__pycache__
*.log
cache
userscripts
!userscripts/examples
!userscripts/kaipreset_*.lua
!userscripts/Readme.*
!userscripts/api_documentation.*
softprompts
models
!models/models go here.txt
Uninstall
.ipynb_checkpoints
# Ignore PyCharm project files.
.idea
# Ignore compiled Python files.
*.pyc
# Don't ignore defaults
!defaults/*