Skip to content

Commit

Permalink
Updated help command with better help message
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiannis128 committed Feb 10, 2025
1 parent 25daef1 commit b67f54a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions esbmc_ai/commands/help_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def __init__(self) -> None:

@override
def execute(self, **_: Optional[Any]) -> Optional[Any]:
print()
print("Commands:")

for command in self.commands:
Expand All @@ -30,8 +29,7 @@ def execute(self, **_: Optional[Any]) -> Optional[Any]:
print(f"\tAuthors: {command.authors}")

print()
print("Useful AI Questions:")
print("1) How can I correct this code?")
print("2) What is the line with the error?")
print("3) What is the exact error?")
print()
print("User Chat Mode Prompts:")
print("1) What is the exact error?")
print("2) Please explain the error to me.")
print("3) What is the cause of this error?")

0 comments on commit b67f54a

Please sign in to comment.