File size: 871 Bytes
f1a87b5
 
699c6ab
f1a87b5
 
 
 
 
 
 
49ba96e
699c6ab
 
49ba96e
 
f1a87b5
 
 
 
 
 
 
a440ae8
3b65686
411e81a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import got from 'got';

async function NvidiaTogether(message, { system_prompt = "" } = {}) {
    const response = await got.post('https://api.together.xyz/v1/chat/completions', {
        headers: {
            'Authorization': 'Bearer ' + process.env['TOGETHER_API_KEY'],
            'Content-Type': 'application/json'
        },
        json: {
            'model': 'nvidia/Llama-3.1-Nemotron-70B-Instruct-HF',
            'messages': [
              {"role": "system", "content": `${system_prompt}`},
              
              {'role': 'user', 'content': `${message}`}
            ],
            'max_tokens': null,
            'temperature': 0.7,
            'top_p': 0.7,
            'top_k': 50,
            'repetition_penalty': 1,
            'stream': false
        }
    }).json();
    return response.choices[0].message.content;
}
export { NvidiaTogether };