Skip to content

Commit 1230286

Browse files
committed
feat: convert workflow to tools
1 parent 3fce302 commit 1230286

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,34 @@ In this repository, you will find:
1111
- **Documentation**: Guides, tutorials, and explanations on how to use, customize, and deploy the workflows.
1212
- **Scripts**: Any additional scripts or tools used alongside Alteryx workflows.
1313

14+
## Architecture
15+
16+
```mermaid
17+
flowchart LR
18+
A[Alteryx Workflow<br/>.yxmd] --> B[alt2md.py]
19+
B --> C{LLM Enhancement<br/>Enabled?}
20+
C -->|Yes| D[LLM Process<br/>Enhancer]
21+
C -->|No| E[Markdown<br/>.md]
22+
D --> E
23+
E --> F[md2af.py]
24+
F --> G{LLM Enhancement<br/>Enabled?}
25+
G -->|Yes| H[LLM Process<br/>Enhancer]
26+
G -->|No| I[Airflow DAG<br/>.py]
27+
H --> I
28+
29+
style A fill:#e1f5ff
30+
style E fill:#fff4e1
31+
style I fill:#e8f5e9
32+
style D fill:#f3e5f5,stroke-dasharray: 5 5
33+
style H fill:#f3e5f5,stroke-dasharray: 5 5
34+
style C fill:#fff,stroke-dasharray: 5 5
35+
style G fill:#fff,stroke-dasharray: 5 5
36+
```
37+
38+
**Legend:**
39+
- Solid boxes: Required steps
40+
- Dashed boxes: Optional LLM enhancement (configurable via `.env`)
41+
1442
## Workflow Conversion Tools
1543

1644
This repository includes a 2-step conversion pipeline with optional LLM enhancement:

0 commit comments

Comments
 (0)