aicodeswitch 1.6.0 → 1.6.1
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/README.md +55 -35
- package/dist/server/main.js +18 -0
- package/dist/ui/assets/{index-Bw_1Ltv0.js → index-i28c5f0H.js} +90 -71
- package/dist/ui/index.html +1 -1
- package/docs/vendors-recommand.md +14 -0
- package/donate-to-me.png +0 -0
- package/package.json +3 -2
package/dist/ui/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>AI Code Switch</title>
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-i28c5f0H.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="./assets/index-dcQX0zYo.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#### 🚀 智谱 GLM Coding Plan
|
|
2
|
+
|
|
3
|
+
> 价格便宜,国内速度快,支持多工具(Claude Code等 20+ 大编程工具),而且其中的GLM-4.7是目前国内最强编程模型。适合对模型有一定要求,同时又无法获取国外模型的朋友入手。
|
|
4
|
+
>
|
|
5
|
+
> 链接:[https://www.bigmodel.cn/glm-coding](https://www.bigmodel.cn/glm-coding?ic=5AH7ATEZSC) | [一键配置](# "glm")
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
#### 🗿 AI Code With
|
|
9
|
+
|
|
10
|
+
> 支持Claude、GPT、Gemni三大系列模型,可接入Claude Code、Codex,经实测,非常稳定,速度快,但是没有包月套餐,只能使用tokens流量,适合追求稳定的朋友。
|
|
11
|
+
>
|
|
12
|
+
> 链接:[https://aicodewith.com/](https://aicodewith.com/login?tab=register&invitation=QCA74W) | [一键配置](# "aicodewith")
|
|
13
|
+
|
|
14
|
+
|
package/donate-to-me.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aicodeswitch",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "A tool to help you manage AI programming tools to access large language models locally. It allows your Claude Code, Codex and other tools to no longer be limited to official models.",
|
|
5
5
|
"author": "tangshuang",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"main": "dist/server/main.js",
|
|
33
33
|
"bin": {
|
|
34
|
-
"aicos": "./bin/cli.js"
|
|
34
|
+
"aicos": "./bin/cli.js",
|
|
35
|
+
"aicodeswitch": "./bin/cli.js"
|
|
35
36
|
},
|
|
36
37
|
"scripts": {
|
|
37
38
|
"dev": "concurrently \"npm run dev:server\" \"npm run dev:ui\"",
|