Skip to content
Merged
Changes from 1 commit
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
30 changes: 30 additions & 0 deletions text2flow_optimized.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Pyragify Config: Optimized for Text2Flow/Visualization Project which is on my repo.
Comment thread
ThomasBury marked this conversation as resolved.
Outdated

# 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

# # Provide essential feedback in the terminal while processing
verbose: true
Comment thread
coderabbitai[bot] marked this conversation as resolved.