Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update titles.py #58

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 39 additions & 22 deletions titles.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,56 +4,56 @@
# We have 4 type of welcome messages
# First 2 is normal and second 2 is for deep-linking
# User is new (/start):
welcome_1 = (
welcome_1: str = (
"Hi {}\n\n"
"Welcome to ChatGPT bot!\n"
"Press /help if you need any help..."
)
# User already have account (/start):
welcome_2 = (
welcome_2: str = (
"Welcome back {}\n"
"Let's begin chat!"
)
# User is new (/start=create):
welcome_3 = (
welcome_3: str = (
"Hi {}\n"
"Your account has been created! Enjoy."
)
# User already have account (/start?create):
welcome_4 = (
welcome_4: str = (
"Hi {}\n"
"You already have account."
)

# No account prompt for users with no accounts:
no_account_warn = (
no_account_warn: str = (
"Dear {}\n\n"
"You need to start the bot before using it! "
"We need to create an account for you first:\n\n"
"t.me/{}?start=create"
)

# History cleared prompt:
history_cleared = (
history_cleared: str = (
"Dear {}\n\n"
"Your history cleared successfully."
)

# Dan mode prompts for /danmode command
# Dan mode enabled:
dan_mode_enabled = (
dan_mode_enabled: str = (
"DAN mode _version 10.0!_\n"
"Status: *Enabled*"
)
# Dan mode disabled:
dan_mode_disabled = (
dan_mode_disabled: str = (
"DAN mode _version 10.0!_\n"
"Status: *Disabled*\n\n"
"Note: History file also reset!"
)

# Help prompt for (/help) command:
help_message = (
help_message: str = (
"*List of global commands*:\n"
"1. /start: Start bot\n"
"2. /help: Show this message\n"
Expand All @@ -62,55 +62,72 @@
"1. /reset: Reset chat history\n"
"2. /history: Get chat history\n"
"3. /chat: Chat in groups\n"
"4. /tts: Voice response\n"
"4. /settings: Providers settings\n"
"4. /danmode: Use DAN mode in GPT\n\n"
"*Other commands*:\n"
"1. /features: See feature changes\n\n"
"*Inline usage*:\n"
"`\n@{} roles`\n"
"this will show all available roles.\n\n"
"*Chat command usage*:\n"
"`\n/chat hello world!`"
"*Inline usage* (copy):\n"
"`@{} roles`\n"
"this will show all available roles.\n"
)

# Features prompt for (/features) command
features = (
features: str = (
"*Main features*:\n"
"1. Includes long-term memory\n"
"2. Includes roles and DAN mode\n"
"3. Supports both group and private chat\n"
"4. Includes re-generate option\n\n"
"4. Includes re-generate option\n"
"5. Voice response\n\n"
"*Other features*:\n"
"1. MarkdownV2 escaper\n"
"2. History checker and fixer\n\n"
"*Upcoming Features*:\n"
"1. Smart reply option\n"
"2. Code generator\n"
"3. Image generator\n"
"4. Voice response\n"
"5. Multi language\n\n"
"Please submit your Issue or Request in here:\n"
"https://github.com/Kourva/AwesomeChatGPTBot/issues\n\n"
"*Recent changes*:\n"
"# Added multiple providers.\n"
"# Changes on commands.\n"
"# Added more providers.\n"
"# Changes on commands (/tts, /settings).\n"
"# Changes on user configs file."
)

# Usage help for (/chat) command:
chat_help = (
chat_help: str = (
"Hi {}\n"
"Please Ask your question after /chat\n\n"
"*Example*: /chat hi"
)

# Usage for (/tts) command:
tts_help: str = (
"Hi {}\n"
"Please Ask your question after /tts\n\n"
"*Example*: /tts hi"
)

# Response prompt:
response_prompt = (
response_prompt: str = (
"Generating response... Please wait."
)

# Response prompt:
tts_response_prompt: str = (
"Generating voice response... Please wait. (It can take up to minute!)"
)

# GPT response error:
response_error = (
response_error: str = (
"Error!\n"
"ChatGPT is not responding at this time!"
)

# Settings prompt
settings_prompt: str = (
"Your providers:\n"
"You can Enable/Disable them by clicking on them."
)
Loading