likhonsheikh commited on
Commit
5a4d69e
·
verified ·
1 Parent(s): ebd0572

Create config.js

Browse files
Files changed (1) hide show
  1. js/config.js +9 -0
js/config.js ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ const config = {
2
+ COHERE_API_KEY: 'zOfD6HqQGurB2UI9kiIjs9elnj2cYR6L93uwmw2E',
3
+ COHERE_API_URL: 'https://api.cohere.ai/v1/generate',
4
+ BOT_NAME: 'Rekt Chat',
5
+ WELCOME_MESSAGE: "Hello! I'm your AI assistant. How can I help you today?",
6
+ MAX_RETRIES: 3,
7
+ RETRY_DELAY: 1000,
8
+ MAX_CHARS: 1000
9
+ };