Complete the code to specify the main directory where dbt models are stored.
models_dir = "[1]"
The models directory is where dbt stores SQL models by default.
Complete the code to define the file that contains project metadata in dbt.
project_file = "[1]"
profiles.yml with dbt_project.yml.The dbt_project.yml file holds project configuration and metadata.
Fix the error in the code to correctly specify the directory for tests in a dbt project.
tests_path = "[1]"
The correct folder for dbt tests is tests (plural).
Fill both blanks to create a dictionary that maps dbt project folders to their purpose.
folders = {"models": "[1]", "tests": "[2]"}models folder contains SQL transformations, and tests folder contains test definitions.
Fill all three blanks to complete the dictionary comprehension that lists model names with their file extensions if they are SQL files.
model_files = {file_name: file_name[1] for file_name in files if file_name.[2]('.sql') and 'test' [3] file_name}This code extracts the last 4 characters to get the extension, checks if the file ends with '.sql', and excludes files containing 'test'.