Skip to content

Commit 9ceea28

Browse files
authored
Merge pull request #140 from GitHubSecurityLab/p--fix-cmd-samples
fix sample calls printed to the terminal
2 parents fc07aba + 3305881 commit 9ceea28

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/seclab_taskflow_agent/__main__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,8 @@ def parse_prompt_args(available_tools: AvailableTools, user_prompt: str | None =
8383
# parser.add_argument('remainder', nargs=argparse.REMAINDER, help="Remaining args")
8484
help_msg = parser.format_help()
8585
help_msg += "\nExamples:\n\n"
86-
help_msg += "`-p assistant explain modems to me please`\n"
87-
help_msg += "`-t example -g fruit=apples`\n"
88-
help_msg += "`-t example -g fruit=apples -g color=red`\n"
86+
help_msg += "`-p seclab_taskflow_agent.personalities.assistant explain modems to me please`\n"
87+
help_msg += "`-t examples.taskflows.example_globals -g fruit=apples`\n"
8988
try:
9089
args = parser.parse_known_args(user_prompt.split(" ") if user_prompt else None)
9190
except SystemExit as e:

0 commit comments

Comments
 (0)