We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26380e3 commit ae7423cCopy full SHA for ae7423c
src/datapilot/core/platforms/dbt/cli/cli.py
@@ -108,10 +108,9 @@ def project_health(
108
for check in llm_insights:
109
click.echo(f"Check: {check['name']}")
110
for answer in check["answer"]:
111
- click.echo(f"Rule: {answer['Rule']}")
112
- click.echo(f"Location: {answer['Location']}")
113
- click.echo(f"Issue: {answer['Issue']}")
114
- click.echo(f"Fix: {answer['Fix']}")
+ click.echo(f"Path: {answer['path']}")
+ click.echo(f"Reason to Flag: {answer['reason_to_flag']}")
+ click.echo(f"Recommendation: {answer['recommendation']}")
115
click.echo("\n")
116
117
0 commit comments