ADD AI params to ai adapters

This commit is contained in:
maximo tejeda 2025-02-23 09:49:31 -04:00
parent 8372d75457
commit 81a4a6c767

View File

@ -62,7 +62,15 @@ ENV=development // define log level on start
ADMINS=admin_ids_comma_separated // id for admins, those will not need auth
RATE_LIMIT_SEC=12 // amount of time to limit hits in sec
RATE_LIMIT_AMOUNT=2 // amount of hit limits in x times
AI_SERVER_URI=http://10.0.0.164
AI_CHAT_SERVER_PORT=11434
AI_CHAT_MODEL=deepseek-r1:8b
AI_CHAT_MODEL_FAST=llama3.2:latest
AI_CHAT_IMAGE=llava:7b
AI_TRANSCRIBE_SERVER_PORT=8080
AI_TRANSCRIBE_MODEL=whisper-1
#+END_SRC
** Running the Bot
@ -99,6 +107,10 @@ In the functions added for the template you can find things like:
- Command Handlers
- Callback Query Handlers
- Interactions Handlers
- Photos Hanlder
- Voice Note Handler
- Location Handler
- Document Handlers
- Middlewares
- Singleflight
- Loging
@ -109,6 +121,7 @@ In the functions added for the template you can find things like:
- File
- Photo
- Keyboard
- Folder creation to handle photos voice or documents
This template heavily relies on the **[[tgbuser]]** microservice for
handling user authentication and permissions.