-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jake
authored and
Jake
committed
Dec 15, 2024
0 parents
commit 625da79
Showing
27 changed files
with
4,799 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Discord bot token | ||
TOKEN= | ||
# Administrator Discord user ID | ||
ADMIN= | ||
# Require bot mention (default: false) | ||
REQUIRE_MENTION= | ||
|
||
# Turn vision on or off. Turning vision off will turn OCR on. (default: false) | ||
USE_VISION= | ||
|
||
# Leave blank to not use ollama | ||
OLLAMAURL=http://host.docker.internal:11434 | ||
# Example provider API key. Include as many API keys as necessary. | ||
OPENAI_API_KEY= sk-...8YIH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* text=auto eol=lf | ||
*.sh text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# macOS system files | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# Environment files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Python virtual environment | ||
venv/ | ||
env/ | ||
*.pyc | ||
__pycache__/ | ||
|
||
# Node.js | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
# IDEs and editors | ||
.idea/ | ||
.vscode/ | ||
*.swp | ||
*.swo | ||
*~ |
Oops, something went wrong.