Spaces:
Sleeping
Sleeping
Updated HLD
Browse files
High Level Design → High Level Design.md
RENAMED
@@ -1,23 +1,20 @@
|
|
|
|
1 |
flowchart TD
|
2 |
-
%% User Interface Layer
|
3 |
A[app.py] -->|Sends company, company_website| B[crew.py]
|
4 |
B -->|Returns processed data| A
|
5 |
A -->|Creates 3 downloadable files| D[Downloadable Files]
|
6 |
|
7 |
-
%% Processing Layer
|
8 |
B --> C1[agents.yaml]
|
9 |
B --> C2[task.yaml]
|
10 |
B --> T1[search_tools]
|
11 |
B --> T2[web_search_tool]
|
12 |
B --> T3[pdf_search_tool]
|
13 |
|
14 |
-
%% Configuration Folder
|
15 |
subgraph Config Folder
|
16 |
C1
|
17 |
C2
|
18 |
end
|
19 |
|
20 |
-
%% Tools Folder
|
21 |
subgraph Tools Folder
|
22 |
T1
|
23 |
T2
|
|
|
1 |
+
```mermaid
|
2 |
flowchart TD
|
|
|
3 |
A[app.py] -->|Sends company, company_website| B[crew.py]
|
4 |
B -->|Returns processed data| A
|
5 |
A -->|Creates 3 downloadable files| D[Downloadable Files]
|
6 |
|
|
|
7 |
B --> C1[agents.yaml]
|
8 |
B --> C2[task.yaml]
|
9 |
B --> T1[search_tools]
|
10 |
B --> T2[web_search_tool]
|
11 |
B --> T3[pdf_search_tool]
|
12 |
|
|
|
13 |
subgraph Config Folder
|
14 |
C1
|
15 |
C2
|
16 |
end
|
17 |
|
|
|
18 |
subgraph Tools Folder
|
19 |
T1
|
20 |
T2
|