aisubs 0.1.0 → 0.3.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/CHANGELOG.md +17 -0
- package/README.md +478 -427
- package/dist/auth.d.ts +2 -0
- package/dist/auth.js +23 -2
- package/dist/cli.js +10 -7
- package/dist/compatibility.d.ts +14 -0
- package/dist/compatibility.js +1521 -0
- package/dist/dashboard/assets/index-CEDww1hA.css +2 -0
- package/dist/dashboard/assets/index-DrnM3oWy.js +84 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/dashboard.d.ts +5 -2
- package/dist/dashboard.js +200 -75
- package/dist/http.d.ts +9 -6
- package/dist/http.js +258 -150
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/providers/chatgpt.js +2 -0
- package/dist/providers/claude.js +2 -0
- package/dist/providers/copilot.js +0 -2
- package/dist/realtime.d.ts +6 -0
- package/dist/realtime.js +163 -0
- package/dist/store.d.ts +6 -0
- package/dist/store.js +51 -2
- package/examples/direct.mjs +31 -8
- package/examples/server.mjs +17 -5
- package/package.json +9 -1
- package/public/aisubs-dashboard.png +0 -0
- package/dist/dashboard/assets/index-BMoILzPw.js +0 -64
- package/dist/dashboard/assets/index-DHqDdNVe.css +0 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.3.0 - 2026-08-16
|
|
4
|
+
|
|
5
|
+
- Add a universal OpenAI-compatible Chat Completions surface with translation
|
|
6
|
+
to supported native Responses, Anthropic Messages, and Google
|
|
7
|
+
`generateContent` endpoints.
|
|
8
|
+
- Add native OpenAI Realtime WebSocket tunnelling and account-scoped model
|
|
9
|
+
discovery with capability metadata.
|
|
10
|
+
- Add Claude, OpenCode Go, and OpenCode Zen to the dashboard and examples;
|
|
11
|
+
improve provider model metadata and usage reporting.
|
|
12
|
+
- Document desktop-client and SDK setup, local-key handling, compatibility
|
|
13
|
+
behavior, and cross-protocol streaming limits.
|
|
14
|
+
|
|
15
|
+
## 0.2.0 - 2026-08-15
|
|
16
|
+
|
|
17
|
+
- Previous release.
|