fluxflow-cli 1.10.7 → 1.10.8
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 +2 -2
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -902,7 +902,7 @@ ${mode === "Flux" ? `- FILE TOOLS (path = relative to CWD) -
|
|
|
902
902
|
6. [tool:functions.WriteDoc(path="...", content="...")]. A4 Word doc. Proper margins and page breaks
|
|
903
903
|
7. [tool:functions.Run(command="...")]. Runs a shell command. Destructive/Irreversible ops -> ask user
|
|
904
904
|
8. [tool:functions.SearchKeyword(keyword="...")]. Global search. Finds definitions/logic without reading every file
|
|
905
|
-
9. [tool:functions.GenerateImage(
|
|
905
|
+
9. [tool:functions.GenerateImage(path="... png", prompt="...", ratio="16:9, 9:16, 1:1, 4:3, 3:4")]. AI images. Usage: Mockups, PDF thumbnails, any visual content
|
|
906
906
|
|
|
907
907
|
- VERIFY RESULT CONTENTS. Fix errors. No hallucinations
|
|
908
908
|
- File tools > code chat
|
|
@@ -3598,7 +3598,7 @@ ${thinkingLevel != "Fast" ? "[SYSTEM] **STRICTLY FOLLOW THINKING POLICY AS STRIC
|
|
|
3598
3598
|
if (chunk.text) {
|
|
3599
3599
|
if (isDedupeActive) {
|
|
3600
3600
|
dedupeBuffer += chunk.text;
|
|
3601
|
-
if (dedupeBuffer.length >=
|
|
3601
|
+
if (dedupeBuffer.length >= 30) {
|
|
3602
3602
|
let overlapLen = 0;
|
|
3603
3603
|
const maxPossibleOverlap = Math.min(accumulatedContext.length, dedupeBuffer.length);
|
|
3604
3604
|
for (let len = maxPossibleOverlap; len > 0; len--) {
|