Skip to content

📦 Montscan v1.1.0

Latest

Choose a tag to compare

@SystemVll SystemVll released this 16 Feb 01:27
· 12 commits to main since this release

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 LANGUAGE environment 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 LANGUAGE configuration 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=spanish

Technical Details

  • Modified config/config.go to load and store language preference
  • Updated agent/ollama.go to 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=french

Full Changelog: View commits since v1.0.0