mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-23 21:21:03 +01:00
Compare commits
No commits in common. "3d67d7e3a840c7dce5878f701981ddb334de9a90" and "9fe244bc2e0ba3af0759a75232e4bf76871c3233" have entirely different histories.
3d67d7e3a8
...
9fe244bc2e
@ -45,7 +45,7 @@ docker compose down -v
|
|||||||
|
|
||||||
## Bridges
|
## Bridges
|
||||||
|
|
||||||
### Mautrix
|
### General
|
||||||
Contact one of the following bots for more information:
|
Contact one of the following bots for more information:
|
||||||
|
|
||||||
- @signalbot:yourdomain.tld
|
- @signalbot:yourdomain.tld
|
||||||
@ -53,13 +53,9 @@ Contact one of the following bots for more information:
|
|||||||
- @whatsappbot:yourdomain.tld
|
- @whatsappbot:yourdomain.tld
|
||||||
- @slackbot:yourdomain.tld
|
- @slackbot:yourdomain.tld
|
||||||
|
|
||||||
#### Slack
|
### Slack
|
||||||
For login with Token checkout [this guide](https://docs.mau.fi/bridges/go/slack/authentication.html).
|
For login with Token checkout [this guide](https://docs.mau.fi/bridges/go/slack/authentication.html).
|
||||||
|
|
||||||
### ChatGPT
|
|
||||||
- Create API Token: https://platform.openai.com/api-keys
|
|
||||||
- Set ``matrix_chatgpt_bridge_access_token``
|
|
||||||
|
|
||||||
## Debug:
|
## Debug:
|
||||||
- https://federationtester.matrix.org/
|
- https://federationtester.matrix.org/
|
||||||
|
|
||||||
|
@ -127,10 +127,3 @@
|
|||||||
chdir: "{{ docker_compose_instance_directory }}"
|
chdir: "{{ docker_compose_instance_directory }}"
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
when: mode_setup | bool
|
when: mode_setup | bool
|
||||||
|
|
||||||
- name: create chatgpt bot
|
|
||||||
command:
|
|
||||||
cmd: docker compose exec -it synapse register_new_matrix_user -u chatgptbot -p {{matrix_chatgpt_bridge_user_password}} -a -c /data/homeserver.yaml http://localhost:8008
|
|
||||||
chdir: "{{ docker_compose_instance_directory }}"
|
|
||||||
ignore_errors: true
|
|
||||||
when: mode_setup | bool
|
|
@ -64,48 +64,7 @@ services:
|
|||||||
{% include 'templates/docker/container/networks.yml.j2' %}
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
matrix-chatgpt-bot:
|
|
||||||
restart: {{docker_restart_policy}}
|
|
||||||
container_name: matrix-chatgpt
|
|
||||||
image: ghcr.io/matrixgpt/matrix-chatgpt-bot:latest
|
|
||||||
volumes:
|
|
||||||
- chatgpt_data:/storage
|
|
||||||
environment:
|
|
||||||
OPENAI_API_KEY: '{{matrix_chatgpt_bridge_openai_api_key}}'
|
|
||||||
# Uncomment the next two lines if you are using Azure OpenAI API
|
|
||||||
# OPENAI_AZURE: 'false'
|
|
||||||
# CHATGPT_REVERSE_PROXY: 'your-completion-endpoint-here'
|
|
||||||
CHATGPT_CONTEXT: 'thread'
|
|
||||||
CHATGPT_API_MODEL: 'gpt-3.5-turbo'
|
|
||||||
# Uncomment and edit the next line if needed
|
|
||||||
# CHATGPT_PROMPT_PREFIX: 'Instructions:\nYou are ChatGPT, a large language model trained by OpenAI.'
|
|
||||||
# CHATGPT_IGNORE_MEDIA: 'false'
|
|
||||||
CHATGPT_REVERSE_PROXY: 'https://api.openai.com/v1/chat/completions'
|
|
||||||
# Uncomment and edit the next line if needed
|
|
||||||
# CHATGPT_TEMPERATURE: '0.8'
|
|
||||||
# Uncomment and edit the next line if needed
|
|
||||||
# CHATGPT_MAX_CONTEXT_TOKENS: '4097'
|
|
||||||
# CHATGPT_MAX_PROMPT_TOKENS: '3097'
|
|
||||||
KEYV_BACKEND: 'file'
|
|
||||||
KEYV_URL: ''
|
|
||||||
KEYV_BOT_ENCRYPTION: 'false'
|
|
||||||
KEYV_BOT_STORAGE: 'true'
|
|
||||||
MATRIX_HOMESERVER_URL: 'http://synapse'
|
|
||||||
MATRIX_BOT_USERNAME: '@chatgptbot:{{matrix_server_name}}'
|
|
||||||
MATRIX_ACCESS_TOKEN: '{{ matrix_chatgpt_bridge_access_token | default('') }}'
|
|
||||||
MATRIX_BOT_PASSWORD: '{{matrix_chatgpt_bridge_user_password}}'
|
|
||||||
MATRIX_DEFAULT_PREFIX: '!chatgpt'
|
|
||||||
MATRIX_DEFAULT_PREFIX_REPLY: 'false'
|
|
||||||
#MATRIX_BLACKLIST: ''
|
|
||||||
MATRIX_WHITELIST: ':{{matrix_server_name}}'
|
|
||||||
MATRIX_AUTOJOIN: 'true'
|
|
||||||
MATRIX_ENCRYPTION: 'true'
|
|
||||||
MATRIX_THREADS: 'true'
|
|
||||||
MATRIX_PREFIX_DM: 'false'
|
|
||||||
MATRIX_RICH_TEXT: 'true'
|
|
||||||
|
|
||||||
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
||||||
synapse_data:
|
synapse_data:
|
||||||
chatgpt_data:
|
|
||||||
|
|
||||||
{% include 'templates/docker/compose/networks.yml.j2' %}
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|
@ -30,8 +30,3 @@ bridges:
|
|||||||
database_username: "mautrix_facebook_bridge"
|
database_username: "mautrix_facebook_bridge"
|
||||||
database_name: "mautrix_facebook_bridge"
|
database_name: "mautrix_facebook_bridge"
|
||||||
bridge_name: "facebook"
|
bridge_name: "facebook"
|
||||||
|
|
||||||
- database_password: "{{ mautrix_instagram_bridge_database_password }}"
|
|
||||||
database_username: "mautrix_instagram_bridge"
|
|
||||||
database_name: "mautrix_instagram_bridge"
|
|
||||||
bridge_name: "instagram"
|
|
Loading…
Reference in New Issue
Block a user