Create cohere.js
Browse files
lib/@randydev/together/cohere.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import got from 'got';
|
2 |
+
|
3 |
+
async function CohereAI(message) {
|
4 |
+
const response = await got.post('https://api.cohere.com/v1/chat', {
|
5 |
+
headers: {
|
6 |
+
'Authorization': 'Bearer ' + process.env['COHERE_API_KEY'],
|
7 |
+
'Content-Type': 'application/json'
|
8 |
+
},
|
9 |
+
json: {
|
10 |
+
"model": "command-r-08-2024",
|
11 |
+
'message': `${message}`,
|
12 |
+
"temperature": 0.3,
|
13 |
+
"chat_history": [],
|
14 |
+
"prompt_truncation": "AUTO",
|
15 |
+
"stream": false
|
16 |
+
}
|
17 |
+
}).json();
|
18 |
+
return response;
|
19 |
+
}
|
20 |
+
export { CohereAI };
|