Senkaro commited on
Commit
3f19ac0
1 Parent(s): 0bdc2d4

Upload bot_strings.py

Browse files
Files changed (1) hide show
  1. bot_strings.py +206 -0
bot_strings.py ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FIRST_START_STRING = """
2
+ Welcome to our Chat-GPT-4 powered Telegram bot! To start, please click the "Start" button below.
3
+
4
+ If you'd like to support our bot, please click the "Donate" button below. This will open another message with links you can use to donate.
5
+
6
+ Thank you for choosing our bot.
7
+ """
8
+
9
+ AGREEMENT_STRING = """
10
+ By using our Chat-GPT-4 powered Telegram bot, you agree to the following:
11
+
12
+ - You are responsible for how you use the bot and any consequences that may result from your actions.
13
+ - We are not responsible for any account bans or other issues that may arise as a result of using the bot.
14
+ """
15
+
16
+ DONATION_STRING = """
17
+ Please note that I am not affiliated with the API provider. If you find my tool useful and would like to support its development, please consider making a donation.
18
+ Your contributions will help me continue to improve and maintain the tool. Thank you!
19
+
20
+ - PayPal: paypal.me/marcelalexandrunitan
21
+ - Revolut: revolut.me/nitanmarcel
22
+
23
+ - BTC: 34n2cToBPuRNu6wa6UU43WTG5ZLcYaGmVq
24
+ - ETH: 0x76321e953b604b57A63014fDd7e769b23fc25De1
25
+ """
26
+
27
+ OAUTH_STRING = """
28
+ To complete the OAuth process, please follow these steps:
29
+
30
+ 1. Click the button to open the authentication link in your browser.
31
+ 2. Log in to the authentication page using your credentials.
32
+ 3. Once you reach a blank page with a URL in the address bar, copy the entire URL.
33
+ 4. Come back to this chat and send me the copied URL in a message.
34
+
35
+ Once I receive the URL, I'll use it to complete the OAuth process.
36
+
37
+ We do not store any of your content or session information with the exception of what is necessary to provide you the service, and only with your consent.
38
+
39
+ You can always log out by running the /start command and clicking on the Logout button, from the /start command then privacy policy, or by stopping the bot.
40
+ """
41
+
42
+ AUTHENTIFICATION_URL_NOT_VALID_STRING = """
43
+ Authentification url invalid.
44
+ """
45
+
46
+ AUTHENTIFICATION_FAILED_STRING = """
47
+ Authentification failed.
48
+ """
49
+
50
+ AUTHENTIFICATION_DONE_STRING = """
51
+ Authentification completed.
52
+
53
+ Here, you can ask me anything you want!
54
+
55
+ There are also two other modes you can use to ask me questions:
56
+
57
+ - Inline mode: To use inline mode, simply mention my name in any chat and type your question, ending with a question mark, exclamation mark or period. For example, "@{} What is the capital of France?" I'll respond to your question right away.
58
+
59
+ - Group mode: To use group mode, mention me or reply to one of my messages in a group chat. Remember that you'll need to be authenticated to use this mode. Once you're authenticated, you can ask me anything you want and I'll do my best to answer your question.
60
+
61
+ """
62
+
63
+ SETTINGS_STRING = """
64
+ Here you can change your bot settings.
65
+
66
+ - Style: Choose a conversation style, between Creative, Balanced and Precise.
67
+ - Chat: Connect up to a chat that can conversate with the bot on your behalf. You need to be admin in the respective chat.
68
+ - Captions: (Inline) If the bot should show the asked query in the inline response.
69
+ - Replies: (Chats) If the bot should reply when someone in replies to it's message, or only on mentioning
70
+ """
71
+
72
+ CHAT_CONNECT_STRING = """
73
+ Enter the id of the chat you want to connect to. You can get this id, by using the `/id` command in the desired chat.
74
+ """
75
+
76
+ INVALID_CHAT_ID_STRING = """
77
+ The id of the entered chat is invalid.
78
+ """
79
+
80
+ CHAT_CONNECT_NOT_ADMIN_STRING = """
81
+ You must be an admin in the target chat, before connecting your account.
82
+ """
83
+
84
+ CHAT_ID_CONNECTED_BROADCAST_STRING = """
85
+ {} connected to this chat. Everyone in this chat can use the bot now.
86
+ """
87
+
88
+ NOT_IN_WHITELST_STRING = """
89
+ You don\'t have access to this service! Make sure you joined and you are accepted in the waitlist.
90
+ """
91
+
92
+ TIMEOUT_ERROR_STRING = """
93
+ Request ended with timeout error. Try again later.
94
+ """
95
+
96
+ PROCESSING_ERROR_STRING = """
97
+ Got empty or unknown response from the server of type.
98
+ """
99
+
100
+ CLOSE_MESSAGE_RECEIVED_STRING = """
101
+ Close message received from server.
102
+ """
103
+
104
+ PROCESSING_IN_PROGRESS = """
105
+ Please wait...
106
+ """
107
+
108
+ PROCESSING_CANCEL = """
109
+ Stop Responding
110
+ """
111
+
112
+ PROCESSING_CANCELED_STRING = """
113
+ Canceled...
114
+ """
115
+
116
+ POCESSING_ALREADY_STRING = """
117
+ Processing of the last query didn't finish yet.
118
+ """
119
+
120
+ RATELIMIT_STRING = """
121
+ Sorry, you've reached the limit of messages you can send to Bing within 24 hours. Check back soon.
122
+ """
123
+
124
+ INLINE_NO_COOKIE_STRING = """
125
+ Sorry, you need to login first to access this service.
126
+ """
127
+
128
+ INLINE_PROCESSING_STRING = """
129
+ Processing your query...
130
+ """
131
+
132
+ NEW_TOPIC_CREATED_STRING = """
133
+ It's always great to start fresh. Ask me anything.
134
+ """
135
+
136
+ TOPIC_EXPIRES_STRING = """
137
+ Topic has expired, replied message deleted, or you are not the sender of the original message.
138
+ """
139
+
140
+ PRIVACY_STRING = """
141
+ This privacy notice outlines the ways in which we collect and process your personal data in compliance with the General Data Protection Regulation (GDPR). We are committed to protecting your privacy and ensuring that your personal data is handled in accordance with the law.
142
+
143
+ Note that this privacy notice only applies to this bot, and any other third party apis used have their own privacy notice which you can find [here](https://privacy.microsoft.com/en-us/privacystatement) and [here](https://telegram.org/privacy).
144
+
145
+ If you have any questions or concerns about our privacy practices or this privacy notice, please contact us at {}. We will be happy to address any questions or concerns you may have.
146
+ """
147
+
148
+ PRIVACY_RETRIEVE_DATA_STRING = """
149
+ Privacy data report for {} ({}), in JSON format.
150
+
151
+ Depending on your cookies settings, even if they appear here they might be only temporary stored by the server.
152
+
153
+ If unsure, you can choose to log out and log in again.
154
+ """
155
+
156
+ PRIVACY_DELETE_DATA_STRING = """
157
+ Are you sure you want to delete your data?
158
+
159
+ This will act the same as the logout button, deleting all your data on the bot server, including user id, cookies, chat id and settings.
160
+ """
161
+
162
+ PRIVACY_COLLECTED_INFORMATION_STRING = """
163
+ We collect the following information:
164
+
165
+ - User ID: This is used to identify the other data in the database.
166
+ - Chat ID: This is used to connect your account to a chat so the members of the specific group can use the services. They are only stored when you connect a chat to the bot.
167
+ - Settings: These are configurations set by the user to change the bot/service response.
168
+ - Cookies: These are used to provide access to the service we use to give you the requested information. They are either stored temporarily or, if you choose, they will be stored in a database.
169
+ """
170
+
171
+ PRIVACY_WHY_WE_COLLECT_STRING = """
172
+ We collect this information for the following reasons:
173
+
174
+ - User ID: This is necessary to identify your data in our database so that we can provide you with the requested information.
175
+ - Chat ID: This is collected to connect your account to a chat so the members of the specific group can use the services. They are only stored when you connect a chat to the bot.
176
+ - Settings: These are collected to customize the bot/service response based on your preferences.
177
+ - Cookies: These are collected to provide you with access to the service we use to give you the requested information.
178
+ """
179
+
180
+ PRIVACY_WHAT_WE_DO_STRING = """
181
+ What do we do with your information?
182
+
183
+ We use your information to provide you with the requested information and to customize the bot/service response based on your preferences. We do not use your information for any other purposes.
184
+ """
185
+
186
+ PRIVACY_WHAT_WE_NOT_DO_STRING = """
187
+ What do we DO NOT do with your information?
188
+
189
+ We DO NOT share your information with any third parties without your consent with the exception of the provider(s) of the services we are giving you. We do not use your information for any purposes other than those stated above.
190
+ """
191
+
192
+ PRIVACY_RIGHT_TO_PROCESS_STRING = """
193
+ Under GDPR, you have the following rights:
194
+
195
+ - Right to access: You have the right to access your personal data that we hold.
196
+ - Right to rectification: You have the right to have any inaccurate or incomplete personal data corrected.
197
+ - Right to erasure: You have the right to have your personal data erased under certain circumstances.
198
+ - Right to restrict processing: You have the right to restrict the processing of your personal data under certain circumstances.
199
+ - Right to data portability: You have the right to receive a copy of your personal data in a structured, machine-readable format.
200
+ - Right to object: You have the right to object to the processing of your personal data under certain circumstances.
201
+ """
202
+
203
+
204
+ PRIVACY_NO_DATA_STRING = """
205
+ 'We don\'t have any of your data in our system.'
206
+ """