From ee62522589005fe44a6241f76b47c5d242a093ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinlic=E7=A7=91=E6=8A=80?= Date: Wed, 17 Apr 2024 01:11:20 +0800 Subject: [PATCH 1/7] Update README.md --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 6c73cde..c7442b3 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,6 @@ ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Te https://udify.app/chat/qOXzVl5kkvhQXM8r -## 测试接口 - -此接口实例部署在[Render](#Render部署)上面,遇到容器回收可能导致响应速度较慢,仅供测试,建议自行部署。 - -https://qwen-free-api.onrender.com - ## 效果示例 ### 验明正身Demo From fedb5ce8903db0c770ba2757ceb7448e7c74cbd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinlic=E7=A7=91=E6=8A=80?= Date: Mon, 22 Apr 2024 16:48:10 +0800 Subject: [PATCH 2/7] Update README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c7442b3..1aa5f50 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,17 @@ ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Te 聆心智能 (Emohaa) 接口转API [emohaa-free-api](https://github.com/LLM-Red-Team/emohaa-free-api) -## 声明 +## 免责声明 -仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担! +**逆向API是不稳定的,建议前往阿里云官方 https://dashscope.console.aliyun.com/ 付费使用API,避免封禁的风险。** -仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担! +**本组织和个人不接受任何资金捐助和交易,此项目是纯粹研究交流学习性质!** -仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担! +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** + +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** + +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** ## 目录 From 88950b29aa11eb531f4d7f96c50fda4e65517c92 Mon Sep 17 00:00:00 2001 From: Yanyutin753 <132346501+Yanyutin753@users.noreply.github.com> Date: Wed, 24 Apr 2024 13:20:19 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E2=9C=A8feat=20support=20/v1/models=20to?= =?UTF-8?q?=20be=20better=20use=20lobechat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/routes/index.ts | 4 ++- src/api/routes/models.ts | 56 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 src/api/routes/models.ts diff --git a/src/api/routes/index.ts b/src/api/routes/index.ts index cc1ac33..0c388df 100644 --- a/src/api/routes/index.ts +++ b/src/api/routes/index.ts @@ -5,6 +5,7 @@ import chat from "./chat.ts"; import images from "./images.ts"; import ping from "./ping.ts"; import token from './token.ts'; +import models from './models.ts'; export default [ { @@ -23,5 +24,6 @@ export default [ chat, images, ping, - token + token, + models ]; \ No newline at end of file diff --git a/src/api/routes/models.ts b/src/api/routes/models.ts new file mode 100644 index 0000000..f459982 --- /dev/null +++ b/src/api/routes/models.ts @@ -0,0 +1,56 @@ +import _ from 'lodash'; + +export default { + + prefix: '/v1', + + get: { + '/models': async () => { + return { + "data": [ + { + "id": "qwen-max", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-max-longcontext", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-plus", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-turbo", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-vl-max", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-vl-plus", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-v1", + "object": "model", + "owned_by": "qwen-free-api" + }, + { + "id": "qwen-v1-vision", + "object": "model", + "owned_by": "qwen-free-api" + } + ] + }; + } + + } +} \ No newline at end of file From 1334aaa28839e7d1e214fefea2bdc68f9989780f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vinlic=E7=A7=91=E6=8A=80?= Date: Wed, 24 Apr 2024 14:34:16 +0800 Subject: [PATCH 4/7] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1aa5f50..5efed18 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ 与ChatGPT接口完全兼容。 -还有以下五个free-api欢迎关注: +还有以下六个free-api欢迎关注: Moonshot AI(Kimi.ai)接口转API [kimi-free-api](https://github.com/LLM-Red-Team/kimi-free-api) @@ -17,7 +17,9 @@ Moonshot AI(Kimi.ai)接口转API [kimi-free-api](https://github.com/LLM-Red- ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Team/glm-free-api) -秘塔AI (metaso) 接口转API [metaso-free-api](https://github.com/LLM-Red-Team/metaso-free-api) +秘塔AI (Metaso) 接口转API [metaso-free-api](https://github.com/LLM-Red-Team/metaso-free-api) + +讯飞星火(Spark)接口转API [spark-free-api](https://github.com/LLM-Red-Team/spark-free-api) 聆心智能 (Emohaa) 接口转API [emohaa-free-api](https://github.com/LLM-Red-Team/emohaa-free-api) From 53d0c368bfffbfaee7e2889e9c68620e084b6393 Mon Sep 17 00:00:00 2001 From: Shi Sheng Date: Wed, 24 Apr 2024 12:35:22 -0400 Subject: [PATCH 5/7] Update README.md --- README.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 5efed18..4e86f1f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Qwen AI Free 服务 -![](https://img.shields.io/github/license/llm-red-team/qwen-free-api.svg) +[![](https://img.shields.io/github/license/llm-red-team/kimi-free-api.svg)](LICENSE) ![](https://img.shields.io/github/stars/llm-red-team/qwen-free-api.svg) ![](https://img.shields.io/github/forks/llm-red-team/qwen-free-api.svg) ![](https://img.shields.io/docker/pulls/vinlic/qwen-free-api.svg) @@ -23,21 +23,9 @@ ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Te 聆心智能 (Emohaa) 接口转API [emohaa-free-api](https://github.com/LLM-Red-Team/emohaa-free-api) -## 免责声明 - -**逆向API是不稳定的,建议前往阿里云官方 https://dashscope.console.aliyun.com/ 付费使用API,避免封禁的风险。** - -**本组织和个人不接受任何资金捐助和交易,此项目是纯粹研究交流学习性质!** - -**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** - -**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** - -**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** - ## 目录 -* [声明](#声明) +* [免责声明](#免责声明) * [在线体验](#在线体验) * [效果示例](#效果示例) * [接入准备](#接入准备) @@ -54,6 +42,20 @@ ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Te * [login_tongyi_ticket存活检测](#login_tongyi_ticket存活检测) * [注意事项](#注意事项) * [Nginx反代优化](#Nginx反代优化) + * [Token统计](#Token统计) +* [Star History](#star-history) + +## 免责声明 + +**逆向API是不稳定的,建议前往阿里云官方 https://dashscope.console.aliyun.com/ 付费使用API,避免封禁的风险。** + +**本组织和个人不接受任何资金捐助和交易,此项目是纯粹研究交流学习性质!** + +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** + +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** + +**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!** ## 在线体验 From 5785a3e367426ad774536bde2707ce5f6010e118 Mon Sep 17 00:00:00 2001 From: Shi Sheng Date: Wed, 24 Apr 2024 14:30:54 -0400 Subject: [PATCH 6/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e86f1f..727f8ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Qwen AI Free 服务 -[![](https://img.shields.io/github/license/llm-red-team/kimi-free-api.svg)](LICENSE) +[![](https://img.shields.io/github/license/llm-red-team/qwen-free-api.svg)](LICENSE) ![](https://img.shields.io/github/stars/llm-red-team/qwen-free-api.svg) ![](https://img.shields.io/github/forks/llm-red-team/qwen-free-api.svg) ![](https://img.shields.io/docker/pulls/vinlic/qwen-free-api.svg) From a3e49569d05ea7a5cf838c89a01c8ff292251dcf Mon Sep 17 00:00:00 2001 From: Shi Sheng Date: Wed, 24 Apr 2024 15:54:15 -0400 Subject: [PATCH 7/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 727f8ef..412a53b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Moonshot AI(Kimi.ai)接口转API [kimi-free-api](https://github.com/LLM-Red- 阶跃星辰 (跃问StepChat) 接口转API [step-free-api](https://github.com/LLM-Red-Team/step-free-api) -ZhipuAI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Team/glm-free-api) +智谱AI (智谱清言) 接口转API [glm-free-api](https://github.com/LLM-Red-Team/glm-free-api) 秘塔AI (Metaso) 接口转API [metaso-free-api](https://github.com/LLM-Red-Team/metaso-free-api)