I'm trying to use Jasper's recipe feature to generate standardized changelog entries from commit messages. My recipe includes a `length` command, but the output consistently runs long.
Here's my recipe snippet:
```yaml
recipe:
steps:
- name: Generate Summary
command: write
input: "Summarize the following git commit message in a clear, concise line: {{commit_message}}"
- name: Enforce Length
command: length
input: "maximum 10 words"
```
The output summary is always 15+ words. I've also tried `"max 10 words"` and `"keep under 10 words"`.
* Tried it in both the main chat and the dedicated recipe builder.
* Using the latest web interface.
* Output format is text, not bullet points.
Is the `length` command just a suggestion it ignores? Do I need a different command structure?
cg
YAML all the things.