iaurora 1.0.7 → 1.0.8
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/bin/aurora.exe +0 -0
- package/bin/aurora.js +8 -4
- package/package.json +1 -1
package/bin/aurora.exe
CHANGED
|
Binary file
|
package/bin/aurora.js
CHANGED
|
@@ -33,7 +33,7 @@ function execBinary(args) {
|
|
|
33
33
|
const binary = findBinary();
|
|
34
34
|
if (!binary) {
|
|
35
35
|
console.error('Aurora binary not found.');
|
|
36
|
-
console.error('Run `aurora install` to download
|
|
36
|
+
console.error('Run `aurora install` to download the binary for your platform.');
|
|
37
37
|
process.exit(1);
|
|
38
38
|
}
|
|
39
39
|
const result = spawnSync(binary, args, { stdio: 'inherit' });
|
|
@@ -60,9 +60,13 @@ FLAGS (passed to binary)
|
|
|
60
60
|
-version Show Go binary version info
|
|
61
61
|
|
|
62
62
|
SETUP
|
|
63
|
-
1. ${cmd} install
|
|
64
|
-
2.
|
|
65
|
-
|
|
63
|
+
1. ${cmd} install # Download the binary
|
|
64
|
+
2. Create a .env file with your keys:
|
|
65
|
+
AURORA_MASTER_KEY=<your-key>
|
|
66
|
+
GROQ_API_KEY=gsk_... # (or any provider)
|
|
67
|
+
3. Create a minimal config.yaml (or use the bundled one)
|
|
68
|
+
4. Set AURORA_CONFIG_PATH=./config.yaml
|
|
69
|
+
5. ${cmd} # Start the gateway
|
|
66
70
|
|
|
67
71
|
Docs: https://github.com/gurveeer/Aurora#readme
|
|
68
72
|
`.trim());
|
package/package.json
CHANGED