osai-agent 4.1.1 → 4.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/package.json +1 -1
- package/src/commands/pro.js +2 -1
package/README.md
CHANGED
|
@@ -134,7 +134,7 @@ DuckDuckGo is always available with no API key required.
|
|
|
134
134
|
osai-agent pro --key <code> Activate a pro access code
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
-
|
|
137
|
+
Upgrade to Pro for higher daily limits (500 msgs/day, 30 req/min, 5 connections). Bring your own API key (BYOK) for unlimited usage on any plan.
|
|
138
138
|
|
|
139
139
|
### Other Commands
|
|
140
140
|
|
package/package.json
CHANGED
package/src/commands/pro.js
CHANGED
|
@@ -38,7 +38,8 @@ export const claimProKey = async ({ key, server: serverOverride } = {}) => {
|
|
|
38
38
|
|
|
39
39
|
spinner.succeed('Pro access code activated!');
|
|
40
40
|
console.log(chalk.gray(` Plan: ${data.plan_type} (expires ${new Date(data.pro_expires_at).toLocaleDateString()})`));
|
|
41
|
-
console.log(chalk.green('\
|
|
41
|
+
console.log(chalk.green('\nPro plan activated! You now have higher limits: 500 msgs/day, 30 req/min, 5 connections.'));
|
|
42
|
+
console.log(chalk.gray(' Switch to your own provider (BYOK) for truly unlimited usage.'));
|
|
42
43
|
} catch (err) {
|
|
43
44
|
spinner.fail('Network error');
|
|
44
45
|
console.log(chalk.red(` Could not reach server: ${err.message}`));
|