Fix: correct Ollama model name from mistral-3:8b to ministral-3:8b

- Update README.md Discord agent AI integration section
- Update AGENTS.md Discord agent LLM configuration
- Update RESTORE.md Discord agent environment variables and config
- Correct all references to use proper model name
This commit is contained in:
Jamie Miller
2026-02-06 04:41:50 +00:00
parent a3f6855f32
commit e7cf672603
3 changed files with 5 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ This document provides a comprehensive overview of the Docker infrastructure man
- **Network**: `internal_net`, `db_net`
- **Configuration**: `/docker/discord-agent/config/agent-config.yaml`
- **Data**: `/docker/discord-agent/data/`
- **LLM**: Ollama (mistral-3:8b) at `http://192.168.0.31:11434`
- **LLM**: Ollama (ministral-3:8b) at `http://192.168.0.31:11434`
- **Features**: Discord commands, service integrations, AI chat capabilities
- **Database**: MySQL for conversation persistence
- **Cogs**: Modular architecture with base_cog and integration_cog

View File

@@ -47,7 +47,7 @@ This infrastructure manages a comprehensive self-hosted environment including me
- **Data**: `/docker/discord-agent/data/`
### Features
- **AI Integration**: Uses Ollama LLM (mistral-3:8b) at `http://192.168.0.31:11434`
- **AI Integration**: Uses Ollama LLM (ministral-3:8b) at `http://192.168.0.31:11434`
- **Modular Architecture**: Cogs for service integrations
- **Database Support**: MySQL for conversation persistence
- **Caching**: Redis for improved performance (configurable)
@@ -71,7 +71,7 @@ This infrastructure manages a comprehensive self-hosted environment including me
```
DISCORD_BOT_TOKEN=your_discord_bot_token_here
OLLAMA_ENDPOINT=http://192.168.0.31:11434
OLLAMA_MODEL=mistral-3:8b
OLLAMA_MODEL=ministral-3:8b
TZ=Pacific/Auckland
```

View File

@@ -54,7 +54,7 @@ Add these to your `.env` file:
# Discord Agent
DISCORD_BOT_TOKEN=your_discord_bot_token_here
OLLAMA_ENDPOINT=http://192.168.0.31:11434
OLLAMA_MODEL=mistral-3:8b
OLLAMA_MODEL=ministral-3:8b
TZ=Pacific/Auckland
```
@@ -68,7 +68,7 @@ discord:
ollama:
endpoint: "${OLLAMA_ENDPOINT:http://192.168.0.31:11434}"
model: "${OLLAMA_MODEL:mistral-3:8b}"
model: "${OLLAMA_MODEL:ministral-3:8b}"
parameters:
temperature: 0.7
top_p: 0.9