Browse Source

Merge pull request #2422 from bertybuttface/patch-1

Bump Matrix Bot ChatGPT from 1.3.2 --> 1.4.1
pull/2423/head
Slavi Pantaleev 3 years ago
committed by GitHub
parent
commit
546535982b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions
  1. +3
    -1
      roles/custom/matrix-bot-chatgpt/defaults/main.yml
  2. +2
    -0
      roles/custom/matrix-bot-chatgpt/templates/env.j2

+ 3
- 1
roles/custom/matrix-bot-chatgpt/defaults/main.yml View File

@@ -9,7 +9,7 @@ matrix_bot_chatgpt_docker_repo: "https://github.com/matrixgpt/matrix-chatgpt-bot
matrix_bot_chatgpt_docker_repo_version: "{{ 'latest' if matrix_bot_chatgpt_version == 'latest' else matrix_bot_chatgpt_version }}"
matrix_bot_chatgpt_docker_src_files_path: "{{ matrix_base_data_path }}/chatgpt/docker-src"

matrix_bot_chatgpt_version: 1.3.2
matrix_bot_chatgpt_version: 1.4.1
matrix_bot_chatgpt_docker_image: "{{ matrix_bot_chatgpt_docker_image_name_prefix }}matrixgpt/matrix-chatgpt-bot:{{ matrix_bot_chatgpt_version }}"
matrix_bot_chatgpt_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_chatgpt_container_image_self_build else 'ghcr.io/' }}"
matrix_bot_chatgpt_docker_image_force_pull: "{{ matrix_bot_chatgpt_docker_image.endswith(':latest') }}"
@@ -33,6 +33,8 @@ matrix_bot_chatgpt_openai_password: '' # OPENAI_PASSWORD=
matrix_bot_chatgpt_openai_login_type: 'google' # OPENAI_LOGIN_TYPE="google"
matrix_bot_chatgpt_openai_pro: false # OPENAI_PRO

matrix_bot_chatgpt_context: 'thread' # CHATGPT_CONTEXT="thread"

# Matrix Static Settings (required, see notes)
# Defaults to "https://matrix.org"
matrix_bot_chatgpt_matrix_homeserver_url: "{{ matrix_homeserver_container_url }}" # MATRIX_HOMESERVER_URL=


+ 2
- 0
roles/custom/matrix-bot-chatgpt/templates/env.j2 View File

@@ -6,6 +6,8 @@ OPENAI_PASSWORD={{ matrix_bot_chatgpt_openai_password }}
OPENAI_LOGIN_TYPE={{ matrix_bot_chatgpt_openai_login_type }}
OPENAI_PRO={{ matrix_bot_chatgpt_openai_pro | to_json }}

CHATGPT_CONTEXT={{ matrix_bot_chatgpt_context }}

# With the @ and :DOMAIN, ie @SOMETHING:DOMAIN
MATRIX_BOT_USERNAME={{ matrix_bot_chatgpt_matrix_bot_username }}
MATRIX_BOT_PASSWORD={{ matrix_bot_chatgpt_matrix_bot_password }}


Loading…
Cancel
Save