#!/usr/bin/env python
"""
Entry point script for the Nüm Agents CLI.
"""

from num_agents.cli import main

if __name__ == "__main__":
    main()
