Spaces:
Running
Running
File size: 447 Bytes
e0d2256 e02be08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
```mermaid
flowchart TD
A[app.py] -->|Sends company, company_website| B[crew.py]
B -->|Returns processed data| A
A -->|Creates 3 downloadable files| D[Downloadable Files]
B --> C1[agents.yaml]
B --> C2[task.yaml]
B --> T1[search_tools]
B --> T2[web_search_tool]
B --> T3[pdf_search_tool]
subgraph Config Folder
C1
C2
end
subgraph Tools Folder
T1
T2
T3
end
|