What's New
Configurable AI Language 🗣️
The AI-powered filename generation is no longer limited to French! We've made the prompt language fully configurable, allowing you to generate document names in any language supported by your Ollama model.
Changes
- Configurable Language Setting: New
LANGUAGEenvironment variable controls the language used for AI-generated filenames - Dynamic Prompt System: Converted hardcoded French prompts to a flexible template-based system
- Default Language: Ships with English as the default
- Docker Integration: Added
LANGUAGEconfiguration to Docker Compose setup - Documentation Updates: README now includes the new configuration option with usage examples
Configuration
Set your preferred language via environment variable:
export LANGUAGE=spanish
# Or: english, german, italian, etc.Or in Docker Compose:
environment:
- LANGUAGE=spanishTechnical Details
- Modified
config/config.goto load and store language preference - Updated
agent/ollama.goto use dynamic prompt templates - Maintains backward compatibility with sensible defaults
Upgrade Notes
Existing installations will automatically use English as the default language. To maintain French filenames, set:
LANGUAGE=frenchFull Changelog: View commits since v1.0.0