-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package bot | ||
|
||
const ( | ||
errorMessage = "Unknown command. Please use the `!help` command to access the available commands" | ||
helpMessage = `**Commands** | ||
helpMsg = `**Commands** | ||
- *!image [text]*: Creates an image based on the provided text. | ||
- *!reset [text]*: Resets the user history. If a text is provided after the reset command, it will generate a GPT response based on this text. | ||
- *[text]*: If only text is provided, the bot will generate a GPT-based response related to that text. | ||
**Notes** | ||
- You can use the first letter of a command as an alias. For example, "!i" for "!image". | ||
- If you wish to terminate the current processing, simply delete your message from the chat. | ||
- The bot responds with ❌ reaction if there are any errors. Contact the administrator if you see this. | ||
` | ||
timeoutMsg = "Timeout error. Please try again. If issue persists, contact the administrator." | ||
unknownCommandMsg = "Unknown command. Please use the `!help` command to access the available commands" | ||
) |