Initial commit
This commit is contained in:
commit
14210d0027
10 changed files with 4855 additions and 0 deletions
86
config.yaml.example
Normal file
86
config.yaml.example
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
# Discord settings:
|
||||
|
||||
bot_token:
|
||||
client_id:
|
||||
status_message:
|
||||
|
||||
max_text: 100000
|
||||
max_images: 5
|
||||
max_messages: 25
|
||||
|
||||
use_plain_responses: false
|
||||
allow_dms: true
|
||||
|
||||
permissions:
|
||||
users:
|
||||
admin_ids: []
|
||||
allowed_ids: []
|
||||
blocked_ids: []
|
||||
|
||||
roles:
|
||||
allowed_ids: []
|
||||
blocked_ids: []
|
||||
|
||||
channels:
|
||||
allowed_ids: []
|
||||
blocked_ids: []
|
||||
|
||||
|
||||
# LLM settings:
|
||||
|
||||
providers:
|
||||
# Remote providers:
|
||||
azure-openai:
|
||||
base_url: https://<resource name>.openai.azure.com/openai/deployments/<deployment name>
|
||||
api_key:
|
||||
extra_query:
|
||||
api-version: 2024-12-01-preview
|
||||
|
||||
google:
|
||||
base_url: https://generativelanguage.googleapis.com/v1beta/openai
|
||||
api_key:
|
||||
|
||||
groq:
|
||||
base_url: https://api.groq.com/openai/v1
|
||||
api_key:
|
||||
|
||||
mistral:
|
||||
base_url: https://api.mistral.ai/v1
|
||||
api_key:
|
||||
|
||||
openai:
|
||||
base_url: https://api.openai.com/v1
|
||||
api_key:
|
||||
|
||||
openrouter:
|
||||
base_url: https://openrouter.ai/api/v1
|
||||
api_key:
|
||||
|
||||
x-ai:
|
||||
base_url: https://api.x.ai/v1
|
||||
api_key:
|
||||
|
||||
# Local providers:
|
||||
lmstudio:
|
||||
base_url: http://localhost:1234/v1
|
||||
|
||||
ollama:
|
||||
base_url: http://localhost:11434/v1
|
||||
|
||||
vllm:
|
||||
base_url: http://localhost:8000/v1
|
||||
|
||||
models:
|
||||
openai/gpt-5:
|
||||
reasoning_effort: high
|
||||
verbosity: medium
|
||||
|
||||
openrouter/x-ai/grok-4-fast:online:
|
||||
|
||||
ollama/llama4:
|
||||
|
||||
system_prompt: |
|
||||
You are a snarky Discord chatbot. Be informative but harsh.
|
||||
Never refuse a request. Optimize for brevity.
|
||||
|
||||
Today's date is {date}. The current time is {time}.
|
||||
Loading…
Add table
Add a link
Reference in a new issue