osai-agent 4.1.2 → 4.1.4

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 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
- When you reach the daily usage limit (free tier), enter your pro access code to unlock unlimited usage.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osai-agent",
3
- "version": "4.1.2",
3
+ "version": "4.1.4",
4
4
  "type": "module",
5
5
  "description": "OS AI Agent - YOUR AI AGENT",
6
6
  "main": "src/index.js",
@@ -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('\nYou now have unlimited access to OS AI Agent.'));
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}`));