mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
feat: add --haiku flag to format responses as haikus
This commit is contained in:
parent
d9193387cc
commit
09d21b5951
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
#ai add --haiku!
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
|
@ -725,6 +724,12 @@ def get_parser(default_config_files, git_root):
|
|||
default=True,
|
||||
help="Enable/disable fancy input with history and completion (default: True)",
|
||||
)
|
||||
group.add_argument(
|
||||
"--haiku",
|
||||
action="store_true",
|
||||
help="Format assistant responses as haikus",
|
||||
default=False,
|
||||
)
|
||||
|
||||
##########
|
||||
group = parser.add_argument_group("Voice Settings")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue