pi-free 2.2.4 → 2.2.5
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/CHANGELOG.md +8 -0
- package/config.ts +779 -774
- package/constants.ts +1 -1
- package/lib/built-in-toggle.ts +427 -259
- package/package.json +74 -74
- package/providers/qoder/models.ts +63 -175
- package/providers/qoder/qoder.ts +49 -84
- package/providers/qoder/stream.ts +182 -274
- package/providers/qoder/transform.ts +5 -2
- package/providers/qoder/encoding.ts +0 -48
package/constants.ts
CHANGED
|
@@ -83,7 +83,7 @@ export const BASE_URL_BAI = "https://api.b.ai/v1";
|
|
|
83
83
|
* NOT include `/v1`. See {@link PROVIDER_OPENMODEL}.
|
|
84
84
|
*/
|
|
85
85
|
export const BASE_URL_OPENMODEL = "https://api.openmodel.ai";
|
|
86
|
-
export const BASE_URL_QODER = "https://
|
|
86
|
+
export const BASE_URL_QODER = "https://api2-v2.qoder.sh";
|
|
87
87
|
|
|
88
88
|
/** Cline fetches free models from OpenRouter */
|
|
89
89
|
export const BASE_URL_OPENROUTER = "https://openrouter.ai/api/v1";
|