init.php
364 lines
| 1 | <?php |
| 2 | |
| 3 | require_once( MWAI_PATH . '/constants/engines.php' ); |
| 4 | require_once( MWAI_PATH . '/constants/models.php' ); |
| 5 | |
| 6 | define( 'MWAI_CHATBOT_DEFAULT_PARAMS', [ |
| 7 | // UI Parameters |
| 8 | 'aiName' => "AI: ", |
| 9 | 'userName' => "User: ", |
| 10 | 'guestName' => "Guest: ", |
| 11 | 'textSend' => 'Send', |
| 12 | 'textClear' => 'Clear', |
| 13 | 'textInputPlaceholder' => 'Type your message...', |
| 14 | 'textInputMaxLength' => 512, |
| 15 | 'textCompliance' => '', |
| 16 | 'startSentence' => "Hi! How can I help you?", |
| 17 | 'themeId' => 'chatgpt', |
| 18 | 'window' => false, |
| 19 | 'icon' => '', |
| 20 | 'iconText' => '', |
| 21 | 'iconTextDelay' => 1, |
| 22 | 'iconAlt' => 'AI Engine Chatbot', |
| 23 | 'iconPosition' => 'bottom-right', |
| 24 | 'iconBubble' => false, |
| 25 | 'fullscreen' => false, |
| 26 | 'copyButton' => false, |
| 27 | 'headerSubtitle' => 'Discuss with', |
| 28 | 'localMemory' => true, |
| 29 | // Chatbot System Parameters |
| 30 | 'botId' => null, |
| 31 | 'instructions' => "Converse as if you were an AI assistant. Be friendly, creative.", |
| 32 | 'scope' => 'chatbot', |
| 33 | 'mode' => 'chat', |
| 34 | 'contentAware' => false, |
| 35 | 'embeddingsEnvId' => '', |
| 36 | // AI Parameters |
| 37 | 'model' => MWAI_FALLBACK_MODEL, |
| 38 | 'temperature' => 0.8, |
| 39 | 'maxMessages' => 15, |
| 40 | 'maxTokens' => 1024, |
| 41 | 'maxResults' => 1, |
| 42 | 'apiKey' => null |
| 43 | ] ); |
| 44 | |
| 45 | define( 'MWAI_LANGUAGES', [ |
| 46 | 'en' => 'English', |
| 47 | 'de' => 'German', |
| 48 | 'fr' => 'French', |
| 49 | 'es' => 'Spanish', |
| 50 | 'it' => 'Italian', |
| 51 | 'zh' => 'Chinese', |
| 52 | 'ja' => 'Japanese', |
| 53 | 'pt' => 'Portuguese', |
| 54 | //'ru' => 'Russian', |
| 55 | ] ); |
| 56 | |
| 57 | define ( 'MWAI_LIMITS', [ |
| 58 | 'enabled' => true, |
| 59 | 'guests' => [ |
| 60 | 'credits' => 3, |
| 61 | 'creditType' => 'queries', |
| 62 | 'timeFrame' => 'day', |
| 63 | 'isAbsolute' => false, |
| 64 | 'overLimitMessage' => "You have reached the limit (check the Queries Tab > Limits > Guests).", |
| 65 | ], |
| 66 | 'users' => [ |
| 67 | 'credits' => 10, |
| 68 | 'creditType' => 'price', |
| 69 | 'timeFrame' => 'month', |
| 70 | 'isAbsolute' => false, |
| 71 | 'overLimitMessage' => "You have reached the limit (check the Queries Tab > Limits > Users).", |
| 72 | 'ignoredUsers' => "administrator,editor", |
| 73 | ], |
| 74 | 'system' => [ |
| 75 | 'credits' => 20, |
| 76 | 'creditType' => 'price', |
| 77 | 'timeFrame' => 'month', |
| 78 | 'isAbsolute' => false, |
| 79 | 'overLimitMessage' => "Our chatbot went to sleep. Please try again later.", |
| 80 | 'ignoredUsers' => "", |
| 81 | ], |
| 82 | ] ); |
| 83 | |
| 84 | define( 'MWAI_OPTIONS', [ |
| 85 | 'module_addons' => true, |
| 86 | 'module_suggestions' => true, |
| 87 | 'module_chatbots' => true, |
| 88 | 'module_forms' => false, |
| 89 | 'module_blocks' => false, |
| 90 | 'module_playground' => true, |
| 91 | 'module_generator_content' => true, |
| 92 | 'module_generator_images' => true, |
| 93 | 'module_moderation' => false, |
| 94 | 'module_statistics' => false, |
| 95 | 'module_finetunes' => false, |
| 96 | 'module_embeddings' => false, |
| 97 | 'module_transcription' => false, |
| 98 | 'module_advisor' => false, |
| 99 | 'module_mcp' => false, |
| 100 | 'speech_recognition' => false, |
| 101 | 'speech_synthesis' => false, |
| 102 | 'virtual_keyboard_fix' => false, |
| 103 | 'chatbot_gdpr_consent' => false, |
| 104 | 'chatbot_gdpr_text' => 'By using this chatbot, you agree to the recording and processing of your data by our website and the external services it might use (LLMs, vector databases, etc.).', |
| 105 | 'chatbot_gdpr_button' => 'I understand', |
| 106 | 'chatbot_typewriter' => false, |
| 107 | 'chatbot_discussions' => false, |
| 108 | 'chatbot_discussions_titling' => true, |
| 109 | 'chatbot_moderation' => false, |
| 110 | 'syntax_highlight' => false, |
| 111 | 'privacy_first' => false, |
| 112 | 'limits' => MWAI_LIMITS, |
| 113 | |
| 114 | // Settings for Images |
| 115 | 'image_local_upload' => 'uploads', |
| 116 | 'image_remote_upload' => 'data', |
| 117 | 'image_expires' => 1 * HOUR_IN_SECONDS, |
| 118 | |
| 119 | 'ai_models' => [], |
| 120 | 'ai_models_usage' => [], |
| 121 | 'ai_streaming' => false, |
| 122 | 'ai_default_env' => null, |
| 123 | 'ai_default_model' => MWAI_FALLBACK_MODEL, |
| 124 | 'ai_envs' => [ |
| 125 | [ |
| 126 | 'name' => 'OpenAI', |
| 127 | 'type' => 'openai', |
| 128 | 'apikey' => '', |
| 129 | 'finetunes' => [], |
| 130 | 'finetunes_deleted' => [], |
| 131 | 'legacy_finetunes' => [], |
| 132 | 'legacy_finetunes_deleted' => [], |
| 133 | 'usage' => [], // TODO: We should only keep the last year of usage |
| 134 | ], |
| 135 | [ |
| 136 | 'name' => 'Claude', |
| 137 | 'type' => 'anthropic', |
| 138 | 'apikey' => '', |
| 139 | ] |
| 140 | ], |
| 141 | |
| 142 | 'embeddings_default_env' => null, |
| 143 | 'embeddings_envs' => [ |
| 144 | [ |
| 145 | 'name' => 'Pinecone', |
| 146 | 'type' => 'pinecone', |
| 147 | 'apikey' => '', |
| 148 | 'server' => '' |
| 149 | ] |
| 150 | ], |
| 151 | 'embeddings' => [ |
| 152 | 'rewriteContent' => true, |
| 153 | 'rewritePrompt' => "Rewrite the content concisely in {LANGUAGE}, maintaining the same style and information. The revised text should be under 800 words, with paragraphs ranging from 160-280 words each. Omit non-textual elements and avoid unnecessary repetition. Conclude with a statement directing readers to find more information at {URL}. If you cannot meet these requirements, please leave a blank response. The content is below, between '== START ==' and '== END =='.\n\n== START ==\n{CONTENT}\n== END ==\n\n", |
| 154 | 'forceRecreate' => false, |
| 155 | 'syncPosts' => false, |
| 156 | 'syncPostsEnvId' => null, |
| 157 | 'syncPostTypes' => ['post', 'page', 'product'], |
| 158 | 'syncPostStatus' => ['publish'], |
| 159 | 'syncPostCategories' => [], |
| 160 | ], |
| 161 | 'public_api' => false, |
| 162 | 'debug_mode' => true, |
| 163 | 'server_debug_mode' => true, |
| 164 | 'logs_path' => null, |
| 165 | 'resolve_shortcodes' => false, |
| 166 | 'context_max_length' => 4096, |
| 167 | 'banned_words' => [], |
| 168 | 'ignore_word_boundaries' => false, |
| 169 | 'banned_ips' => [], |
| 170 | 'languages' => MWAI_LANGUAGES, |
| 171 | 'clean_uninstall' => false, |
| 172 | |
| 173 | // ADMIN UI |
| 174 | 'intro_message' => true, |
| 175 | 'chatbot_select' => 'tabs' |
| 176 | ] ); |
| 177 | |
| 178 | define( 'MWAI_ALL_LANGUAGES', [ |
| 179 | 'aa' => 'Afar', |
| 180 | 'ab' => 'Abkhazian', |
| 181 | 'af' => 'Afrikaans', |
| 182 | 'ak' => 'Akan', |
| 183 | 'sq' => 'Albanian', |
| 184 | 'am' => 'Amharic', |
| 185 | 'ar' => 'Arabic', |
| 186 | 'an' => 'Aragonese', |
| 187 | 'hy' => 'Armenian', |
| 188 | 'as' => 'Assamese', |
| 189 | 'av' => 'Avaric', |
| 190 | 'ae' => 'Avestan', |
| 191 | 'ay' => 'Aymara', |
| 192 | 'az' => 'Azerbaijani', |
| 193 | 'ba' => 'Bashkir', |
| 194 | 'bm' => 'Bambara', |
| 195 | 'eu' => 'Basque', |
| 196 | 'be' => 'Belarusian', |
| 197 | 'bn' => 'Bengali', |
| 198 | 'bh' => 'Bihari', |
| 199 | 'bi' => 'Bislama', |
| 200 | 'bs' => 'Bosnian', |
| 201 | 'br' => 'Breton', |
| 202 | 'bg' => 'Bulgarian', |
| 203 | 'my' => 'Burmese', |
| 204 | 'ca' => 'Catalan; Valencian', |
| 205 | 'ch' => 'Chamorro', |
| 206 | 'ce' => 'Chechen', |
| 207 | 'zh' => 'Chinese', |
| 208 | 'cu' => 'Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic', |
| 209 | 'cv' => 'Chuvash', |
| 210 | 'kw' => 'Cornish', |
| 211 | 'co' => 'Corsican', |
| 212 | 'cr' => 'Cree', |
| 213 | 'cs' => 'Czech', |
| 214 | 'da' => 'Danish', |
| 215 | 'dv' => 'Divehi; Dhivehi; Maldivian', |
| 216 | 'nl' => 'Dutch; Flemish', |
| 217 | 'dz' => 'Dzongkha', |
| 218 | 'en' => 'English', |
| 219 | 'eo' => 'Esperanto', |
| 220 | 'et' => 'Estonian', |
| 221 | 'ee' => 'Ewe', |
| 222 | 'fo' => 'Faroese', |
| 223 | 'fj' => 'Fijjian', |
| 224 | 'fi' => 'Finnish', |
| 225 | 'fr' => 'French', |
| 226 | 'fy' => 'Western Frisian', |
| 227 | 'ff' => 'Fulah', |
| 228 | 'ka' => 'Georgian', |
| 229 | 'de' => 'German', |
| 230 | 'gd' => 'Gaelic; Scottish Gaelic', |
| 231 | 'ga' => 'Irish', |
| 232 | 'gl' => 'Galician', |
| 233 | 'gv' => 'Manx', |
| 234 | 'el' => 'Greek, Modern', |
| 235 | 'gn' => 'Guarani', |
| 236 | 'gu' => 'Gujarati', |
| 237 | 'ht' => 'Haitian; Haitian Creole', |
| 238 | 'ha' => 'Hausa', |
| 239 | 'he' => 'Hebrew', |
| 240 | 'hz' => 'Herero', |
| 241 | 'hi' => 'Hindi', |
| 242 | 'ho' => 'Hiri Motu', |
| 243 | 'hu' => 'Hungarian', |
| 244 | 'ig' => 'Igbo', |
| 245 | 'is' => 'Icelandic', |
| 246 | 'io' => 'Ido', |
| 247 | 'ii' => 'Sichuan Yi', |
| 248 | 'iu' => 'Inuktitut', |
| 249 | 'ie' => 'Interlingue', |
| 250 | 'ia' => 'Interlingua (International Auxiliary Language Association)', |
| 251 | 'id' => 'Indonesian', |
| 252 | 'ik' => 'Inupiaq', |
| 253 | 'it' => 'Italian', |
| 254 | 'jv' => 'Javanese', |
| 255 | 'ja' => 'Japanese', |
| 256 | 'kl' => 'Kalaallisut; Greenlandic', |
| 257 | 'kn' => 'Kannada', |
| 258 | 'ks' => 'Kashmiri', |
| 259 | 'kr' => 'Kanuri', |
| 260 | 'kk' => 'Kazakh', |
| 261 | 'km' => 'Central Khmer', |
| 262 | 'ki' => 'Kikuyu; Gikuyu', |
| 263 | 'rw' => 'Kinyarwanda', |
| 264 | 'ky' => 'Kirghiz; Kyrgyz', |
| 265 | 'kv' => 'Komi', |
| 266 | 'kg' => 'Kongo', |
| 267 | 'ko' => 'Korean', |
| 268 | 'kj' => 'Kuanyama; Kwanyama', |
| 269 | 'ku' => 'Kurdish', |
| 270 | 'lo' => 'Lao', |
| 271 | 'la' => 'Latin', |
| 272 | 'lv' => 'Latvian', |
| 273 | 'li' => 'Limburgan; Limburger; Limburgish', |
| 274 | 'ln' => 'Lingala', |
| 275 | 'lt' => 'Lithuanian', |
| 276 | 'lb' => 'Luxembourgish; Letzeburgesch', |
| 277 | 'lu' => 'Luba-Katanga', |
| 278 | 'lg' => 'Ganda', |
| 279 | 'mk' => 'Macedonian', |
| 280 | 'mh' => 'Marshallese', |
| 281 | 'ml' => 'Malayalam', |
| 282 | 'mi' => 'Maori', |
| 283 | 'mr' => 'Marathi', |
| 284 | 'ms' => 'Malay', |
| 285 | 'mg' => 'Malagasy', |
| 286 | 'mt' => 'Maltese', |
| 287 | 'mo' => 'Moldavian', |
| 288 | 'mn' => 'Mongolian', |
| 289 | 'na' => 'Nauru', |
| 290 | 'nv' => 'Navajo; Navaho', |
| 291 | 'nr' => 'Ndebele, South; South Ndebele', |
| 292 | 'nd' => 'Ndebele, North; North Ndebele', |
| 293 | 'ng' => 'Ndonga', |
| 294 | 'ne' => 'Nepali', |
| 295 | 'nn' => 'Norwegian Nynorsk; Nynorsk, Norwegian', |
| 296 | 'nb' => 'Bokmål, Norwegian, Norwegian Bokmål', |
| 297 | 'no' => 'Norwegian', |
| 298 | 'ny' => 'Chichewa; Chewa; Nyanja', |
| 299 | 'oc' => 'Occitan, Provençal', |
| 300 | 'oj' => 'Ojibwa', |
| 301 | 'or' => 'Oriya', |
| 302 | 'om' => 'Oromo', |
| 303 | 'os' => 'Ossetian; Ossetic', |
| 304 | 'pa' => 'Panjabi; Punjabi', |
| 305 | 'fa' => 'Persian', |
| 306 | 'pi' => 'Pali', |
| 307 | 'pl' => 'Polish', |
| 308 | 'pt' => 'Portuguese', |
| 309 | 'ps' => 'Pushto', |
| 310 | 'qu' => 'Quechua', |
| 311 | 'rm' => 'Romansh', |
| 312 | 'ro' => 'Romanian', |
| 313 | 'rn' => 'Rundi', |
| 314 | 'ru' => 'Russian', |
| 315 | 'sg' => 'Sango', |
| 316 | 'sa' => 'Sanskrit', |
| 317 | 'sr' => 'Serbian', |
| 318 | 'hr' => 'Croatian', |
| 319 | 'si' => 'Sinhala; Sinhalese', |
| 320 | 'sk' => 'Slovak', |
| 321 | 'sl' => 'Slovenian', |
| 322 | 'se' => 'Northern Sami', |
| 323 | 'sm' => 'Samoan', |
| 324 | 'sn' => 'Shona', |
| 325 | 'sd' => 'Sindhi', |
| 326 | 'so' => 'Somali', |
| 327 | 'st' => 'Sotho, Southern', |
| 328 | 'es' => 'Spanish; Castilian', |
| 329 | 'sc' => 'Sardinian', |
| 330 | 'ss' => 'Swati', |
| 331 | 'su' => 'Sundanese', |
| 332 | 'sw' => 'Swahili', |
| 333 | 'sv' => 'Swedish', |
| 334 | 'ty' => 'Tahitian', |
| 335 | 'ta' => 'Tamil', |
| 336 | 'tt' => 'Tatar', |
| 337 | 'te' => 'Telugu', |
| 338 | 'tg' => 'Tajik', |
| 339 | 'tl' => 'Tagalog', |
| 340 | 'th' => 'Thai', |
| 341 | 'bo' => 'Tibetan', |
| 342 | 'ti' => 'Tigrinya', |
| 343 | 'to' => 'Tonga (Tonga Islands)', |
| 344 | 'tn' => 'Tswana', |
| 345 | 'ts' => 'Tsonga', |
| 346 | 'tk' => 'Turkmen', |
| 347 | 'tr' => 'Turkish', |
| 348 | 'tw' => 'Twi', |
| 349 | 'ug' => 'Uighur; Uyghur', |
| 350 | 'uk' => 'Ukrainian', |
| 351 | 'ur' => 'Urdu', |
| 352 | 'uz' => 'Uzbek', |
| 353 | 've' => 'Venda', |
| 354 | 'vi' => 'Vietnamese', |
| 355 | 'vo' => 'Volapük', |
| 356 | 'cy' => 'Welsh', |
| 357 | 'wa' => 'Walloon', |
| 358 | 'wo' => 'Wolof', |
| 359 | 'xh' => 'Xhosa', |
| 360 | 'yi' => 'Yiddish', |
| 361 | 'yo' => 'Yoruba', |
| 362 | 'za' => 'Zhuang; Chuang', |
| 363 | 'zu' => 'Zulu', |
| 364 | ] ); |