randydev commited on
Commit
1c3c423
·
verified ·
1 Parent(s): dffff10

Create blackbox.js

Browse files
Files changed (1) hide show
  1. lib/@randydev/together/blackbox.js +20 -0
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 };