diff --git a/text2flow_optimized.yaml b/text2flow_optimized.yaml new file mode 100644 index 0000000..8f0a4db --- /dev/null +++ b/text2flow_optimized.yaml @@ -0,0 +1,33 @@ +# Pyragify Config: Optimized for Text2Flow/Visualization. + +# Use the current directory as the source for weaving +repo_path: "." + +# The folder where the LLM-ready "weaved" text will be saved +output_dir: "./llm_analysis" + +# These are the files to ignore so we only push the essential files to the LLM. +skip_patterns: + - "*.min.js" + - "*.map" + - "bundle.js" + - "*-lock.json" + - "*.svg" + +# Standard heavy folders/files to bypass. +skip_dirs: + - "node_modules" + - "dist" + - "build" + - "__pycache__" + - ".git" + +# High max_words allows complex flowchart grammars to stay +# within a single window for better RAG performance. +max_words: 500000 + +# Required to prevent CLI runtime failure. +max_file_size: 10485760 #10MB + +# # Provide essential feedback in the terminal while processing. +verbose: true