@eminent337/aery 0.1.91 → 0.1.93
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/core/auth-guidance.d.ts +1 -0
- package/dist/core/auth-guidance.d.ts.map +1 -1
- package/dist/core/auth-guidance.js +12 -1
- package/dist/core/auth-guidance.js.map +1 -1
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +6 -0
- package/dist/core/model-registry.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +6 -13
- package/dist/main.js.map +1 -1
- package/dist/migrations.d.ts +1 -0
- package/dist/migrations.d.ts.map +1 -1
- package/dist/migrations.js +15 -0
- package/dist/migrations.js.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +4 -1
- package/dist/modes/interactive/components/oauth-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +2 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/package-manager-cli.d.ts +1 -0
- package/dist/package-manager-cli.d.ts.map +1 -1
- package/dist/package-manager-cli.js +4 -6
- package/dist/package-manager-cli.js.map +1 -1
- package/package.json +3 -3
|
@@ -3839,7 +3839,8 @@ export class InteractiveMode {
|
|
|
3839
3839
|
this.ui.requestRender();
|
|
3840
3840
|
};
|
|
3841
3841
|
try {
|
|
3842
|
-
const
|
|
3842
|
+
const apiKeyPrompt = providerId === "cloudflare-workers-ai" ? "Enter Cloudflare API token:" : "Enter API key:";
|
|
3843
|
+
const apiKey = (await dialog.showPrompt(apiKeyPrompt)).trim();
|
|
3843
3844
|
if (!apiKey) {
|
|
3844
3845
|
throw new Error("API key cannot be empty.");
|
|
3845
3846
|
}
|