-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathtitles.py
132 lines (120 loc) · 3.27 KB
/
titles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Titles for chatGPT bot
# So i store texts and titles here to avoid mess in main code.
# We have 4 type of welcome messages
# First 2 is normal and second 2 is for deep-linking
# User is new (/start):
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: str = (
"Welcome back {}\n"
"Let's begin chat!"
)
# User is new (/start=create):
welcome_3: str = (
"Hi {}\n"
"Your account has been created! Enjoy."
)
# User already have account (/start?create):
welcome_4: str = (
"Hi {}\n"
"You already have account."
)
# No account prompt for users with no accounts:
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: str = (
"Dear {}\n\n"
"Your history cleared successfully."
)
# Dan mode prompts for /danmode command
# Dan mode enabled:
dan_mode_enabled: str = (
"DAN mode _version 10.0!_\n"
"Status: *Enabled*"
)
# 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: str = (
"*List of global commands*:\n"
"1. /start: Start bot\n"
"2. /help: Show this message\n"
"3. /ping: Ping the Providers\n\n"
"*List of chat related commands*:\n"
"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* (copy):\n"
"`@{} roles`\n"
"this will show all available roles.\n"
)
# Features prompt for (/features) command
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"
"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"
"5. Multi language\n\n"
"Please submit your Issue or Request in here:\n"
"https://github.com/kozyol/AwesomeChatGPTBot/issues\n\n"
"*Recent changes*:\n"
"# Added more providers.\n"
"# Added Remix AI."
)
# Usage help for (/chat) command:
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: 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: 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."
)