PR Template Update (#84)
* Update: version increment and reminder on template * Update: comment on incrementing as necessary
This commit is contained in:
4
.github/pull_request_template.md
vendored
4
.github/pull_request_template.md
vendored
@@ -14,4 +14,6 @@
|
|||||||
|
|
||||||
## After the Pull Request is Opened
|
## 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).
|
* 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.
|
* 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!!!
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
Ollama is an AI model management tool that allows users to install and use custom large language models locally.
|
Ollama is an AI model management tool that allows users to install and use custom large language models locally.
|
||||||
The project aims to:
|
The project aims to:
|
||||||
* [x] Create a Discord bot that will utilize Ollama and chat to chat with users!
|
* [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] Message Persistance on Channels and Threads
|
||||||
* [x] Threads
|
* [x] Threads
|
||||||
* [x] Channels
|
* [x] Channels
|
||||||
@@ -20,10 +20,10 @@ The project aims to:
|
|||||||
* [x] Slash Commands Compatible
|
* [x] Slash Commands Compatible
|
||||||
* [x] Generated Token Length Handling for >2000
|
* [x] Generated Token Length Handling for >2000
|
||||||
* [x] Token Length Handling of any message size
|
* [x] Token Length Handling of any message size
|
||||||
* [ ] User vs. Server Preferences
|
* [x] User vs. Server Preferences
|
||||||
* [ ] Redis Caching
|
* [ ] Redis Caching
|
||||||
* [x] Administrator Role Compatible
|
* [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
|
* [ ] Automatic and Manual model pulling through the Discord client
|
||||||
* [ ] Allow others to create their own models personalized for their own servers!
|
* [ ] Allow others to create their own models personalized for their own servers!
|
||||||
* [ ] Documentation on creating your own LLM
|
* [ ] Documentation on creating your own LLM
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ services:
|
|||||||
build: ./ # find docker file in designated path
|
build: ./ # find docker file in designated path
|
||||||
container_name: discord
|
container_name: discord
|
||||||
restart: always # rebuild container always
|
restart: always # rebuild container always
|
||||||
image: discord/bot:0.5.4
|
image: discord/bot:0.5.5
|
||||||
environment:
|
environment:
|
||||||
CLIENT_TOKEN: ${CLIENT_TOKEN}
|
CLIENT_TOKEN: ${CLIENT_TOKEN}
|
||||||
GUILD_ID: ${GUILD_ID}
|
GUILD_ID: ${GUILD_ID}
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "discord-ollama",
|
"name": "discord-ollama",
|
||||||
"version": "0.5.4",
|
"version": "0.5.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "discord-ollama",
|
"name": "discord-ollama",
|
||||||
"version": "0.5.4",
|
"version": "0.5.5",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"discord.js": "^14.15.3",
|
"discord.js": "^14.15.3",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "discord-ollama",
|
"name": "discord-ollama",
|
||||||
"version": "0.5.4",
|
"version": "0.5.5",
|
||||||
"description": "Ollama Integration into discord",
|
"description": "Ollama Integration into discord",
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"exports": "./build/index.js",
|
"exports": "./build/index.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user