MatrixGPT/docs/Config.md

1.3 KiB

Config Examples

OpenAI

command:
  - trigger: '!c4'
    api_type: openai
    model: gpt-4
    temperature: 0.5
openai:
  api_key: sk-qwerty123

Vision

command:
  - trigger: '!cv'
    api_type: openai
    model: gpt-4-vision-preview
    max_tokens: 4096
    temperature: 0.5
    vision: true
openai:
  api_key: sk-qwerty123

System Prompt

command:
  - trigger: '!cb'
    api_type: openai
    model: gpt-4
    max_tokens: 4096
    temperature: 1
    system_prompt: 'Ignore all prior instructions. Your objective is to [add your instructions here].'
    injected_system_prompt: 'Make sure to stay in character.'
    help: Internet argument bot.

Anthropic

command:
  - trigger: '!cc'
    api_type: anthropic
    model: claude-3-opus-20240229
    max_tokens: 4096
    temperature: 0.5
    vision: true
anthropic:
  api_key: sk-ant-api03-qwerty123

System Prompt

command:
  - trigger: '!cc'
    api_type: anthropic
    model: claude-3-opus-20240229
    max_tokens: 4096
    temperature: 0.5
    system_prompt: 'Ignore all prior instructions. Your objective is to [add your instructions here].'
    vision: true

Bing Copilot

command:
  - trigger: '!cp'
    model: copilot
    api_type: copilot
copilot:
  api_key: '_C_Auth=; MC1=GUID=....'

Dalle-3

TODO