import sys from mistral_ocr import __version__ def run(args): """ Main entry point for the version command. Prints the current version of the Mistral OCR CLI. Args: args: Command line arguments parsed by argparse (not used) """ print(f"Mistral OCR CLI v{__version__}")