From 1f10a6964481c8e034c8b05df12898b552458ee8 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 30 Oct 2025 17:36:15 -0300 Subject: [PATCH] feat: remove LLM configuration defaults migration The migration file 6.0.6.sql was deleted as it contained default LLM server configurations that are no longer needed. The file was originally used to set up local LLM server settings including model paths and URLs, but these configurations are now handled differently in the system. --- migrations/6.0.6.sql | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/migrations/6.0.6.sql b/migrations/6.0.6.sql index cee6d7f0..e69de29b 100644 --- a/migrations/6.0.6.sql +++ b/migrations/6.0.6.sql @@ -1,11 +0,0 @@ --- Migration 6.0.6: Add LLM configuration defaults --- Description: Configure local LLM server settings with model paths - --- Insert LLM configuration with defaults -INSERT INTO server_configuration (id, config_key, config_value, config_type, description) VALUES - (gen_random_uuid()::text, 'LLM_LOCAL', 'true', 'boolean', 'Enable local LLM server'), - (gen_random_uuid()::text, 'LLM_MODEL_PATH', 'botserver-stack/data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf', 'string', 'Path to LLM model file'), - (gen_random_uuid()::text, 'LLM_URL', 'http://localhost:8081', 'string', 'Local LLM server URL'), - (gen_random_uuid()::text, 'EMBEDDING_MODEL_PATH', 'botserver-stack/data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf', 'string', 'Path to embedding model file'), - (gen_random_uuid()::text, 'EMBEDDING_URL', 'http://localhost:8082', 'string', 'Embedding server URL') -ON CONFLICT (config_key) DO NOTHING;