ai-fly 0.4.0-alpha.5 → 0.4.0-alpha.7
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/dist/app/main.js +2 -0
- package/package.json +1 -1
- package/webui/dist/assets/{index-DhMNFq4g.js → index-BlacE8xb.js} +17 -17
- package/webui/dist/assets/{index-CfTIXjnj.css → index-tP1nMXNW.css} +1 -1
- package/webui/dist/icons/presets/anthropic.svg +5 -1
- package/webui/dist/icons/presets/codex.svg +5 -1
- package/webui/dist/icons/presets/deepseek.svg +5 -1
- package/webui/dist/icons/presets/openai.svg +3 -1
- package/webui/dist/index.html +2 -2
package/dist/app/main.js
CHANGED
|
@@ -8849,6 +8849,8 @@ async function assembleApp(deps) {
|
|
|
8849
8849
|
else {
|
|
8850
8850
|
log.info(`tray + app window ready (v${readPackageVersion(root)})`);
|
|
8851
8851
|
log.info(`ui entry (one-time token): ${uiUrl}`);
|
|
8852
|
+
const extraTokens = Number.parseInt(process.env.AIFLY_EXTRA_UI_TOKEN ?? "0", 10) || 0;
|
|
8853
|
+
for (let i = 0; i < extraTokens && i < 16; i += 1) log.info(`ui entry (extra one-time token): ${webServer.uiUrl(port)}`);
|
|
8852
8854
|
}
|
|
8853
8855
|
return {
|
|
8854
8856
|
host,
|
package/package.json
CHANGED