Refactor configuration access via pydantic-settings, streamlining how configuration values are accessed and providing type validation.
Implement a new language_prompt function in the CLI tool, allowing users to input a language using ISO 639 codes or language names. This includes a retry mechanism using the tenacity library to handle invalid inputs, enhancing user experience and reliability.
Initially replace YAML configuration with TOML, improving the consistency and readability of the configuration files. This change includes integration with tomli for efficient config parsing and manipulation.
Introduce an automatic mechanism for setting configuration file paths, supporting both program root directory paths and hidden paths.
Introduce 'configure' commands to the CLI, enabling dynamic configuration updates and command execution.
Replace YAML-based configuration handling with pydantic-settings and TOML for enhanced reliability and ease of use.
Refactor file path operations to use pathlib.Path, adopting a more modern and object-oriented approach.
Rebuild the CLI entry point using Click to improve maintainability and user experience.
Version bumped to 0.1.0 to mark the significant updates in configuration management and CLI design.
pydantic-settings
, streamlining how configuration values are accessed and providing type validation.language_prompt
function in the CLI tool, allowing users to input a language using ISO 639 codes or language names. This includes a retry mechanism using the tenacity library to handle invalid inputs, enhancing user experience and reliability.