protocol-proxy 2.4.0 → 2.5.0
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/lib/config-store.js +295 -260
- package/lib/converters/gemini-to-anthropic.js +286 -277
- package/lib/converters/gemini-to-openai.js +255 -240
- package/lib/converters/openai-to-anthropic.js +368 -329
- package/lib/proxy-server.js +636 -491
- package/package.json +1 -1
- package/public/app.js +1296 -1222
- package/public/index.html +7 -2
- package/public/style.css +1448 -1344
- package/server.js +767 -747
package/public/index.html
CHANGED
|
@@ -188,9 +188,14 @@
|
|
|
188
188
|
</div>
|
|
189
189
|
</div>
|
|
190
190
|
</div>
|
|
191
|
+
</div>
|
|
192
|
+
<div class="form-row api-keys-row">
|
|
191
193
|
<div class="form-group">
|
|
192
|
-
<
|
|
193
|
-
|
|
194
|
+
<div class="api-keys-header">
|
|
195
|
+
<span>API Keys</span>
|
|
196
|
+
<button type="button" id="api-key-add-btn" class="btn btn-sm">+ 添加 Key</button>
|
|
197
|
+
</div>
|
|
198
|
+
<div id="api-keys-list"></div>
|
|
194
199
|
</div>
|
|
195
200
|
</div>
|
|
196
201
|
<div class="form-row">
|