()
| 472 | |
| 473 | |
| 474 | async def run(): |
| 475 | args = parse_args() |
| 476 | |
| 477 | config.init_config(args.config, args) |
| 478 | logger.init_logger(config) |
| 479 | logger.info(f"| Config: {config.pretty_text}") |
| 480 | |
| 481 | await model_manager.initialize(use_local_proxy=config.use_local_proxy) |
| 482 | logger.info(f"| Models: {model_manager.list()}") |
| 483 | |
| 484 | """Run the comprehensive test suite.""" |
| 485 | tester = FaissTester() |
| 486 | await tester.run_all_tests() |
| 487 | |
| 488 | |
| 489 | if __name__ == "__main__": |
no test coverage detected