#!/usr/bin/env python3 """ llmops 包的主入口点 允许通过 `python -m llmops` 运行批量任务 """ from .batch_runner import main if __name__ == "__main__": main()