randydev commited on
Commit
06beaf4
·
verified ·
1 Parent(s): fa71a92

Update lib/@randydev/together/qwen-ai.js

Browse files
Files changed (1) hide show
  1. lib/@randydev/together/qwen-ai.js +24 -1
lib/@randydev/together/qwen-ai.js CHANGED
@@ -1,5 +1,25 @@
1
  import got from 'got';
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  async function AlibabaTogether(message, { system_prompt = "" } = {}) {
4
  const response = await got.post('https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions', {
5
  headers: {
@@ -21,4 +41,7 @@ async function AlibabaTogether(message, { system_prompt = "" } = {}) {
21
  }).json();
22
  return response.choices[0].message.content;
23
  }
24
- export { AlibabaTogether };
 
 
 
 
1
  import got from 'got';
2
 
3
+ async function CloudFlareQwenTogether(message, { system_prompt = "" } = {}) {
4
+ const run = await got.post(`https://api.cloudflare.com/client/v4/accounts/${process.env['ACCOUNT_ID']}/ai/run/`, {
5
+ headers: {
6
+ 'Authorization': 'Bearer ' + process.env['CLOUDFLARE_API_KEY'],
7
+ 'Content-Type': 'application/json'
8
+ },
9
+ json: {
10
+ 'messages': [
11
+ {"role": "system", "content": system_prompt},
12
+
13
+ {'role': 'user', 'content': message}
14
+ ],
15
+ 'max_tokens': 200,
16
+ 'stream': false
17
+ }
18
+ }).json();
19
+ response = run("@cf/qwen/qwen1.5-1.8b-chat")
20
+ return response.result.response;
21
+ }
22
+
23
  async function AlibabaTogether(message, { system_prompt = "" } = {}) {
24
  const response = await got.post('https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions', {
25
  headers: {
 
41
  }).json();
42
  return response.choices[0].message.content;
43
  }
44
+ export {
45
+ AlibabaTogether,
46
+ CloudFlareQwenTogether
47
+ };