nia-opencode 0.1.2 → 0.1.3
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/README.md +1 -1
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -210,7 +210,7 @@ async function install(options) {
|
|
|
210
210
|
console.log("Step 1: Configure API Key");
|
|
211
211
|
let apiKey = options.apiKey || process.env.NIA_API_KEY || "";
|
|
212
212
|
if (!apiKey && options.tui && rl) {
|
|
213
|
-
console.log(`Get your API key from: https://trynia.ai
|
|
213
|
+
console.log(`Get your API key from: https://app.trynia.ai
|
|
214
214
|
`);
|
|
215
215
|
apiKey = await prompt(rl, "Enter your Nia API key (nk_...): ");
|
|
216
216
|
}
|
|
@@ -281,7 +281,7 @@ Step 4: Add Nia Instructions to AGENTS.md`);
|
|
|
281
281
|
`);
|
|
282
282
|
if (!apiKey) {
|
|
283
283
|
console.log("Next steps:");
|
|
284
|
-
console.log("1. Get your API key from: https://trynia.ai
|
|
284
|
+
console.log("1. Get your API key from: https://app.trynia.ai");
|
|
285
285
|
console.log("2. Set the environment variable:");
|
|
286
286
|
console.log(' export NIA_API_KEY="nk_..."');
|
|
287
287
|
console.log(" Or edit ~/.config/opencode/nia.json");
|