18 lines
426 B
YAML
18 lines
426 B
YAML
version: '3'
|
|
tasks:
|
|
default:
|
|
desc: test
|
|
cmds:
|
|
- ../ai_output_parser --think ai_output.md > think.txt
|
|
# - ../ai_output_parser --yaml ai_output.md > rougail.yaml
|
|
# - ../ai_output_parser --explanation ai_output.md > explanation.txt
|
|
generates:
|
|
- think.txt
|
|
# - rougail.yaml
|
|
# - explanation.txt
|
|
|
|
clean:
|
|
desc: Suppress generated files
|
|
cmds:
|
|
- rm -f {{.GENERATES}}
|
|
|