fluxy-bot 0.2.6 → 0.2.7

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.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Self-hosted AI bot — run your own AI assistant from anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -125,6 +125,8 @@ export async function startSupervisor() {
125
125
  if (!content) return;
126
126
  if (data.conversationId) convId = data.conversationId;
127
127
 
128
+ log.info(`[fluxy] provider=${config.ai.provider}, model=${config.ai.model}, hasApiKey=${!!config.ai.apiKey}, ai=${!!ai}`);
129
+
128
130
  // Route Anthropic through Agent SDK (uses OAuth token, not API key)
129
131
  if (config.ai.provider === 'anthropic') {
130
132
  startFluxyAgentQuery(convId, content, config.ai.model, (type, eventData) => {