vue2server7 7.0.53 → 7.0.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2server7",
3
- "version": "7.0.53",
3
+ "version": "7.0.54",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "dev": "nodemon --watch src --ext ts --exec \"ts-node src/app.ts\"",
Binary file
package/test/11.js DELETED
@@ -1,19 +0,0 @@
1
- // Please install OpenAI SDK first: `npm install openai`
2
-
3
- import OpenAI from "openai";
4
-
5
- const openai = new OpenAI({
6
- baseURL: 'https://api.deepseek.com',
7
- apiKey: process.env.DEEPSEEK_API_KEY,
8
- });
9
-
10
- async function main() {
11
- const completion = await openai.chat.completions.create({
12
- messages: [{ role: "system", content: "You are a helpful assistant." }],
13
- model: "deepseek-chat",
14
- });
15
-
16
- console.log(completion.choices[0].message.content);
17
- }
18
-
19
- main();