.. _operators: Operators ========= Cosmos exposes individual operators that correspond to specific dbt commands, which can be used just like traditional `Apache Airflow® `_ operators. Cosmos names these operators using the format ``DbtOperator``. For example, ``DbtBuildLocalOperator``. Clone ----- Requirement * Cosmos >= 1.8.0 * dbt-core >= 1.6.0 The ``DbtCloneLocalOperator`` implement `dbt clone `_ command. Example of how to use .. literalinclude:: ../../dev/dags/example_operators.py :language: python :start-after: [START clone_example] :end-before: [END clone_example]