Spaces:
Running
Running
Create config.js
Browse files- 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 |
+
};
|