Create blackbox.js
Browse files
lib/@randydev/together/blackbox.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import axios from 'axios';
|
2 |
+
|
3 |
+
async function DeepSeekR1(query) {
|
4 |
+
const url = 'https://api.blackbox.ai/api/chat';
|
5 |
+
const data = {
|
6 |
+
messages: [
|
7 |
+
{content: query, role: 'user'}
|
8 |
+
],
|
9 |
+
model: 'deepseek-ai/DeepSeek-R1',
|
10 |
+
max_tokens: '1024'
|
11 |
+
};
|
12 |
+
const config = {
|
13 |
+
headers: {
|
14 |
+
'Content-Type': 'application/json'
|
15 |
+
}
|
16 |
+
};
|
17 |
+
const response = await axios.post(url, data, config);
|
18 |
+
return response.data;
|
19 |
+
|
20 |
+
export { DeepSeekR1 };
|