Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions text2flow_optimized.yaml
Original file line number Diff line number Diff line change
@@ -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
Comment thread
coderabbitai[bot] marked this conversation as resolved.