fluxy-bot 0.4.7 → 0.4.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxy-bot",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
4
4
  "description": "Self-hosted, self-evolving AI agent with its own dashboard.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/shared/relay.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { log } from './logger.js';
2
2
 
3
- const RELAY_API = 'https://www.fluxy.bot/api';
3
+ const RELAY_API = 'https://api.fluxy.bot/api';
4
4
 
5
5
  // ─── Register a new handle ──────────────────────────────────────────────────
6
6
 
@@ -28,8 +28,8 @@ const MODELS: Record<string, { id: string; label: string }[]> = {
28
28
  // TOTAL_STEPS is dynamic — set inside the component based on isInitialSetup
29
29
 
30
30
  const HANDLES = [
31
- { tier: 'premium', label: (n: string) => `${n}.fluxy.bot`, badge: '$5', badgeCls: 'bg-[#AF27E3]/15 text-[#AF27E3] border-[#AF27E3]/20', highlight: true },
32
- { tier: 'at', label: (n: string) => `${n}.at.fluxy.bot`, badge: 'Free', badgeCls: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', highlight: false },
31
+ { tier: 'premium', label: (n: string) => `fluxy.bot/${n}`, badge: '$5', badgeCls: 'bg-[#AF27E3]/15 text-[#AF27E3] border-[#AF27E3]/20', highlight: true },
32
+ { tier: 'at', label: (n: string) => `fluxy.bot/${n}`, badge: 'Free', badgeCls: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', highlight: false },
33
33
  ] as const;
34
34
 
35
35
  /* ── Dropdown ── */