protocol-proxy 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/app.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protocol-proxy",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "OpenAI / Anthropic 协议转换透明代理",
5
5
  "main": "server.js",
6
6
  "bin": {
package/public/app.js CHANGED
@@ -162,6 +162,7 @@ function renderProviderOptions() {
162
162
  if (!ok) return;
163
163
  const providers = loadProviders().filter(pr => pr.url !== url);
164
164
  saveProviders(providers);
165
+ localStorage.removeItem(getModelKey(url));
165
166
  if (getSelectedProviderUrl() === url) {
166
167
  selectProvider('');
167
168
  }