tessl install tessl/pypi-apache-airflow-providers-dbt-cloud@4.4.0Provider package for integrating Apache Airflow with dbt Cloud for data transformation workflow orchestration
Agent Success
Agent success rate when using this tile
84%
Improvement
Agent success rate improvement when using this tile compared to baseline
1x
Baseline
Agent success rate without this tile
84%
{
"context": "This criteria evaluates how well the engineer uses the apache-airflow-providers-dbt-cloud package to implement concurrent artifact retrieval from dbt Cloud job runs. The focus is on proper use of async I/O patterns and the package's async artifact retrieval methods.",
"type": "weighted_checklist",
"checklist": [
{
"name": "DbtCloudHook usage",
"description": "Uses DbtCloudHook class to establish connection to dbt Cloud API with proper authentication",
"max_score": 15
},
{
"name": "Async artifact method",
"description": "Uses the get_job_run_artifact_async or similar async method from DbtCloudHook to retrieve individual artifacts asynchronously",
"max_score": 25
},
{
"name": "Concurrent execution",
"description": "Implements concurrent download using asyncio.gather, asyncio.create_task, or similar async patterns to download multiple artifacts simultaneously rather than sequentially",
"max_score": 30
},
{
"name": "Proper async function",
"description": "Defines the main function as async and properly uses await keywords for async operations",
"max_score": 15
},
{
"name": "Error handling",
"description": "Implements appropriate error handling for failed artifact downloads while allowing other downloads to complete",
"max_score": 10
},
{
"name": "Result structure",
"description": "Returns results as a dictionary mapping artifact paths to their contents as specified in the API",
"max_score": 5
}
]
}