fluxflow-cli 3.16.3 → 3.16.4
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/dist/fluxflow.js +3 -2
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -16047,9 +16047,10 @@ ${ideCtx.warnings}
|
|
|
16047
16047
|
}
|
|
16048
16048
|
const osDetected = process.platform === "win32" ? "Windows" : process.platform === "darwin" ? "macOS" : "Linux";
|
|
16049
16049
|
const cleanPromptForModel = cleanAgentText.replace(/\\(@\[[^\]]+\])/g, "$1");
|
|
16050
|
-
const firstUserMsg = `[METADATA, Chat Context > Metadata]
|
|
16050
|
+
const firstUserMsg = `[SYSTEM METADATA, Chat Context > Metadata]
|
|
16051
16051
|
Time: ${dateTimeStr}
|
|
16052
|
-
OS: ${osDetected}${systemSettings?.dynamicDirAwareness ? dirStructure : ""}${cwdMismatch ? `
|
|
16052
|
+
OS: ${osDetected}${systemSettings?.dynamicDirAwareness ? dirStructure : ""}${cwdMismatch ? `
|
|
16053
|
+
WARNING: CWD Changed from previous: "${lastCwd}" to current: "${process.cwd()}", write change in chat to avoid future path mismatches
|
|
16053
16054
|
` : ""}${memoryPrompt}${ideBlock}
|
|
16054
16055
|
[/METADATA]
|
|
16055
16056
|
${activeSummaryBlock}${thinkingLevel !== "Fast" && (aiProvider === "Mistral" || thinkingLevel !== "xHigh" && aiProvider === "Google") ? `${aiProvider === "Mistral" || modelName.toLowerCase().startsWith("gemma") ? "[SYSTEM] **STRICTLY FOLLOW THINKING POLICY AS HIGH PRIORITY. DO NOT START A RESPONSE WITHOUT <think> ... </think>** [/SYSTEM]\n" : ""}` : ""}[SYSTEM Priority: HIGH] ONLY use the system prompt tool schema. eg: [tool:functions.ReadFolder(path=".")] [/SYSTEM]
|