@meet-ai/cli 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -248,7 +248,7 @@ function checkIdleAgents(inboxDir, members, excludeAgent, notified, now = Date.n
248
248
  }
249
249
 
250
250
  // src/index.ts
251
- var API_URL = process.env.MEET_AI_URL || "http://localhost:8787";
251
+ var API_URL = process.env.MEET_AI_URL || "https://meet-ai.cc";
252
252
  var API_KEY = process.env.MEET_AI_KEY;
253
253
  var client = createClient(API_URL, API_KEY);
254
254
  var [command, ...args] = process.argv.slice(2);
@@ -383,8 +383,8 @@ switch (command) {
383
383
  console.log(`meet-ai CLI
384
384
 
385
385
  Environment variables:
386
- MEET_AI_URL Server URL (default: http://localhost:8787)
387
- MEET_AI_KEY API key for authentication (optional for local, required for production)
386
+ MEET_AI_URL Server URL (default: https://meet-ai.cc)
387
+ MEET_AI_KEY API key for authentication
388
388
 
389
389
  Commands:
390
390
  create-room <name> Create a new chat room
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meet-ai/cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "CLI for meet-ai chat rooms — create rooms, send messages, and stream via WebSocket",
5
5
  "type": "module",
6
6
  "bin": {