vibe-collab 0.3.0 → 0.5.0
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 +0 -1
- package/dist/ai/client.js +1 -1
- package/dist/cli/commands/auth.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/ai/client.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* 모두 없으면 AI 기능 비활성화 (graceful degradation)
|
|
5
5
|
*/
|
|
6
6
|
import { readAuthData } from '../cli/commands/auth.js';
|
|
7
|
-
const VIBE_PROXY_URL =
|
|
7
|
+
const VIBE_PROXY_URL = 'https://vibeorchestratorserver.vercel.app';
|
|
8
8
|
const MODELS = {
|
|
9
9
|
anthropic: {
|
|
10
10
|
smart: 'claude-sonnet-4-6',
|
|
@@ -5,7 +5,7 @@ import path from 'path';
|
|
|
5
5
|
import { execSync } from 'child_process';
|
|
6
6
|
import chalk from 'chalk';
|
|
7
7
|
const AUTH_FILE = path.join(os.homedir(), '.vibe', 'auth.json');
|
|
8
|
-
const PROXY_URL =
|
|
8
|
+
const PROXY_URL = 'https://vibeorchestratorserver.vercel.app';
|
|
9
9
|
const CALLBACK_PORT = 7777;
|
|
10
10
|
/* ── token helpers ─────────────────────────────────────────────── */
|
|
11
11
|
export function readAuthData() {
|