From ae9cac65a92aa9e27293057fa72f40e816ecc474 Mon Sep 17 00:00:00 2001 From: Kevin Dang <77701718+kevinthedang@users.noreply.github.com> Date: Thu, 11 Jul 2024 17:08:34 -0700 Subject: [PATCH] PR Template Update (#84) * Update: version increment and reminder on template * Update: comment on incrementing as necessary --- .github/pull_request_template.md | 4 +++- README.md | 6 +++--- docker-compose.yml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 62f8f6b..6452a41 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -14,4 +14,6 @@ ## After the Pull Request is Opened * One the Pull Request has been created, please add any Issue(s) that are being addressed by this change (if any). -* If the reviewer(s) mention any changes or open threads for questions, please resolve those as soon as you can. \ No newline at end of file +* If the reviewer(s) mention any changes or open threads for questions, please resolve those as soon as you can. + +# Ensure you version increment as necessary!!! \ No newline at end of file diff --git a/README.md b/README.md index 7c77a4e..63c5224 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Ollama is an AI model management tool that allows users to install and use custom large language models locally. The project aims to: * [x] Create a Discord bot that will utilize Ollama and chat to chat with users! - * [ ] User Preferences on Chat + * [x] User Preferences on Chat * [x] Message Persistance on Channels and Threads * [x] Threads * [x] Channels @@ -20,10 +20,10 @@ The project aims to: * [x] Slash Commands Compatible * [x] Generated Token Length Handling for >2000 * [x] Token Length Handling of any message size - * [ ] User vs. Server Preferences + * [x] User vs. Server Preferences * [ ] Redis Caching * [x] Administrator Role Compatible - * [ ] Multi-User Chat Generation (Multiple users chatting at the same time) + * [x] Multi-User Chat Generation (Multiple users chatting at the same time) - This was built into from Ollama `v0.2.1+` * [ ] Automatic and Manual model pulling through the Discord client * [ ] Allow others to create their own models personalized for their own servers! * [ ] Documentation on creating your own LLM diff --git a/docker-compose.yml b/docker-compose.yml index 207df14..c1e1002 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: build: ./ # find docker file in designated path container_name: discord restart: always # rebuild container always - image: discord/bot:0.5.4 + image: discord/bot:0.5.5 environment: CLIENT_TOKEN: ${CLIENT_TOKEN} GUILD_ID: ${GUILD_ID} diff --git a/package-lock.json b/package-lock.json index 302930b..75bc2ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "discord-ollama", - "version": "0.5.4", + "version": "0.5.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "discord-ollama", - "version": "0.5.4", + "version": "0.5.5", "license": "ISC", "dependencies": { "discord.js": "^14.15.3", diff --git a/package.json b/package.json index 8724956..f32e9fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "discord-ollama", - "version": "0.5.4", + "version": "0.5.5", "description": "Ollama Integration into discord", "main": "build/index.js", "exports": "./build/index.js",