From 81a4a6c767c22a673d6f1bd91b32e023f452617d Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Sun, 23 Feb 2025 09:49:31 -0400 Subject: [PATCH] ADD AI params to ai adapters --- Readme.org | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Readme.org b/Readme.org index 2099009..dc28abe 100644 --- a/Readme.org +++ b/Readme.org @@ -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.