From 0c5513ed4210e05ef55e64dea718b8366487458d Mon Sep 17 00:00:00 2001 From: Cyberes Date: Wed, 10 Apr 2024 16:48:35 -0600 Subject: [PATCH] add config documentation --- docs/Config.md | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 docs/Config.md diff --git a/docs/Config.md b/docs/Config.md new file mode 100644 index 0000000..9bcd0ab --- /dev/null +++ b/docs/Config.md @@ -0,0 +1,83 @@ +# Config Examples + +### OpenAI + +```yaml +command: + - trigger: '!c4' + api_type: openai + model: gpt-4 + temperature: 0.5 +openai: + api_key: sk-qwerty123 +``` + +#### Vision + +```yaml +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 + +```yaml +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 + +```yaml +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 + +```yaml +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 + +```yaml +command: + - trigger: '!cp' + model: copilot + api_type: copilot +copilot: + api_key: '_C_Auth=; MC1=GUID=....' +``` + +### Dalle-3 + +TODO \ No newline at end of file