Spaces:
Build error
Build error
add updated mermaid graph
Browse files
README.md
CHANGED
@@ -11,15 +11,19 @@ Planning AI is a sophisticated tool designed to process and analyse responses to
|
|
11 |
```mermaid
|
12 |
%%{init: {'flowchart': {'curve': 'linear'}}}%%
|
13 |
graph TD;
|
14 |
-
__start__([__start__]):::first
|
|
|
|
|
15 |
generate_summary(generate_summary)
|
16 |
check_hallucination(check_hallucination)
|
17 |
fix_hallucination(fix_hallucination)
|
18 |
generate_final_summary(generate_final_summary)
|
19 |
-
__end__([__end__]):::last
|
|
|
20 |
check_hallucination --> generate_final_summary;
|
21 |
generate_final_summary --> __end__;
|
22 |
-
|
|
|
23 |
generate_summary -.-> check_hallucination;
|
24 |
check_hallucination -.-> fix_hallucination;
|
25 |
fix_hallucination -.-> check_hallucination;
|
|
|
11 |
```mermaid
|
12 |
%%{init: {'flowchart': {'curve': 'linear'}}}%%
|
13 |
graph TD;
|
14 |
+
__start__([<p>__start__</p>]):::first
|
15 |
+
add_entities(add_entities)
|
16 |
+
retrieve_themes(retrieve_themes)
|
17 |
generate_summary(generate_summary)
|
18 |
check_hallucination(check_hallucination)
|
19 |
fix_hallucination(fix_hallucination)
|
20 |
generate_final_summary(generate_final_summary)
|
21 |
+
__end__([<p>__end__</p>]):::last
|
22 |
+
__start__ --> add_entities;
|
23 |
check_hallucination --> generate_final_summary;
|
24 |
generate_final_summary --> __end__;
|
25 |
+
add_entities -.-> retrieve_themes;
|
26 |
+
retrieve_themes -.-> generate_summary;
|
27 |
generate_summary -.-> check_hallucination;
|
28 |
check_hallucination -.-> fix_hallucination;
|
29 |
fix_hallucination -.-> check_hallucination;
|