@relayplane/proxy 0.1.3 → 0.1.4
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 +4 -4
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,10 +88,10 @@ Unlike static routing rules, RelayPlane adapts to **your** usage patterns.
|
|
|
88
88
|
|
|
89
89
|
| Provider | Models | Streaming | Tools |
|
|
90
90
|
|----------|--------|-----------|-------|
|
|
91
|
-
| **Anthropic** | Claude Opus, Sonnet, Haiku | ✓ | ✓ |
|
|
92
|
-
| **OpenAI** | GPT-
|
|
93
|
-
| **Google** | Gemini 2.0 Flash,
|
|
94
|
-
| **xAI** | Grok-
|
|
91
|
+
| **Anthropic** | Claude 4.5 (Opus, Sonnet, Haiku) | ✓ | ✓ |
|
|
92
|
+
| **OpenAI** | GPT-5.2, GPT-5.2-Codex, o1, o3 | ✓ | ✓ |
|
|
93
|
+
| **Google** | Gemini 2.0 Flash, 2.0 Pro | ✓ | ✓ |
|
|
94
|
+
| **xAI** | Grok-3, Grok-3-mini | ✓ | ✓ |
|
|
95
95
|
| **Moonshot** | v1-8k, v1-32k, v1-128k | ✓ | ✓ |
|
|
96
96
|
|
|
97
97
|
## Routing Modes
|
package/dist/cli.js
CHANGED
|
@@ -2400,7 +2400,7 @@ async function startProxy(config = {}) {
|
|
|
2400
2400
|
targetProvider = "anthropic";
|
|
2401
2401
|
}
|
|
2402
2402
|
} else if (routingMode === "quality") {
|
|
2403
|
-
const qualityModel = process.env["RELAYPLANE_QUALITY_MODEL"] || "claude-
|
|
2403
|
+
const qualityModel = process.env["RELAYPLANE_QUALITY_MODEL"] || "claude-sonnet-4-20250514";
|
|
2404
2404
|
targetModel = qualityModel;
|
|
2405
2405
|
targetProvider = "anthropic";
|
|
2406
2406
|
}
|