Improve help command, model attribution, and model config
help: grouped into AI / Games / Random / Server categories with Option B purple header; descriptions auto-pulled from the command registry. Model attribution: added _MODEL_DISPLAY map so 'via lotusllm' becomes 'via Llama 3.2 1B', 'via gemma3:latest' becomes 'via Gemma 3 4B', etc. Config: OLLAMA_MODEL switched from lotusllm to llama3.2:latest; added BALL_MODEL (sadiq-bd/llama3.2-1b-uncensored) as a dedicated config var for the 8ball so it stays on the uncensored model without affecting fortune. Descriptions: fortune -> AI-generated fortune cookie; ask -> Ask LotusBot; health -> Bot health & stats (admin only). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+2
-1
@@ -18,7 +18,8 @@ LOG_LEVEL = os.getenv("LOG_LEVEL", "INFO")
|
||||
|
||||
# Integrations
|
||||
OLLAMA_URL = os.getenv("OLLAMA_URL", "http://10.10.10.157:11434")
|
||||
OLLAMA_MODEL = os.getenv("OLLAMA_MODEL", "lotusllm")
|
||||
OLLAMA_MODEL = os.getenv("OLLAMA_MODEL", "llama3.2:latest")
|
||||
BALL_MODEL = os.getenv("BALL_MODEL", "sadiq-bd/llama3.2-1b-uncensored:latest")
|
||||
ASK_MODEL = os.getenv("ASK_MODEL", "gemma3:latest")
|
||||
MINECRAFT_RCON_HOST = os.getenv("MINECRAFT_RCON_HOST", "10.10.10.67")
|
||||
MINECRAFT_RCON_PORT = int(os.getenv("MINECRAFT_RCON_PORT", "25575"))
|
||||
|
||||
Reference in New Issue
Block a user