Spaces:
Running
Running
VinOS Agent commited on
Commit Β·
99f2bdb
1
Parent(s): 78c8a12
VinOS Auto-Update: Strategic Sync
Browse files- server.js +2 -2
- skills/carousel_flow.js +1 -1
server.js
CHANGED
|
@@ -603,7 +603,7 @@ app.post('/api/telegram-webhook', async (req, res) => {
|
|
| 603 |
}
|
| 604 |
|
| 605 |
if (userText === '/social' || userText === '/post') {
|
| 606 |
-
const socialGuide = `
|
| 607 |
|
| 608 |
To get the highest engagement from the AI Remixer, feed it raw text or ideas using this framework:
|
| 609 |
|
|
@@ -638,7 +638,7 @@ Tell the AI what emotion or 'edge' you want.
|
|
| 638 |
await apiCaller.sendTelegramMessage(chatId, "β Usage: /research [url]");
|
| 639 |
return;
|
| 640 |
}
|
| 641 |
-
await apiCaller.sendTelegramMessage(chatId, `π <b>Research Auto-Pilot</b>\nAnalyzing URL...`);
|
| 642 |
|
| 643 |
const researchModule = require('./research');
|
| 644 |
const aiContent = require('./ai-content');
|
|
|
|
| 603 |
}
|
| 604 |
|
| 605 |
if (userText === '/social' || userText === '/post') {
|
| 606 |
+
const socialGuide = `π± <b>Social Media Instructions (v1.0)</b>
|
| 607 |
|
| 608 |
To get the highest engagement from the AI Remixer, feed it raw text or ideas using this framework:
|
| 609 |
|
|
|
|
| 638 |
await apiCaller.sendTelegramMessage(chatId, "β Usage: /research [url]");
|
| 639 |
return;
|
| 640 |
}
|
| 641 |
+
await apiCaller.sendTelegramMessage(chatId, `π <b>Research Auto-Pilot (v0.9)</b>\nAnalyzing URL...`);
|
| 642 |
|
| 643 |
const researchModule = require('./research');
|
| 644 |
const aiContent = require('./ai-content');
|
skills/carousel_flow.js
CHANGED
|
@@ -64,7 +64,7 @@ module.exports = {
|
|
| 64 |
|
| 65 |
// --- AUTOPILOT ITERATIVE FLOW ---
|
| 66 |
const topic = text || "Latest AI Trends";
|
| 67 |
-
await apiCaller.sendTelegramMessage(chatId, `
|
| 68 |
|
| 69 |
// Simple brain-dump for "Research" phase
|
| 70 |
const researchPrompt = `Research and provide a bulleted summary of the core pillars for a high-engagement social media carousel about: "${topic}". Focus on actionable value.`;
|
|
|
|
| 64 |
|
| 65 |
// --- AUTOPILOT ITERATIVE FLOW ---
|
| 66 |
const topic = text || "Latest AI Trends";
|
| 67 |
+
await apiCaller.sendTelegramMessage(chatId, `π <b>Stage 1: Carousel Autopilot (v0.8)</b>\nResearching topic: <i>${topic}</i>`);
|
| 68 |
|
| 69 |
// Simple brain-dump for "Research" phase
|
| 70 |
const researchPrompt = `Research and provide a bulleted summary of the core pillars for a high-engagement social media carousel about: "${topic}". Focus on actionable value.`;
|