How to use extra ansible modules?

hi, I’m a new man to using ansible. I have some simple questions about how to use ansible modules. I want to use the openvswitch module1. What commands should I execute ? Should I use " ansible " or “ansible-playbook” ?

Thanks
Zhi Chang

All modules are currently bundled with Ansible, just make sure you
have the correct version.

ansible is for 'adhoc' or 'single task' runs, -m <modulename> is the
option to use a specific module

ansible-playbook play.yml <- would require writing a play that uses the module.