cjber commited on
Commit
c712e06
·
1 Parent(s): 589c45d

add mermaid diagram

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -8,6 +8,26 @@
8
 
9
  Planning AI is a sophisticated tool designed to process and analyze responses to local government planning applications. It leverages advanced natural language processing capabilities to summarize and categorize feedback, providing insights into public opinion on proposed developments.
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ## Features
12
 
13
  - **Document Processing**: Extracts and processes text from various document formats including PDFs and Excel files.
 
8
 
9
  Planning AI is a sophisticated tool designed to process and analyze responses to local government planning applications. It leverages advanced natural language processing capabilities to summarize and categorize feedback, providing insights into public opinion on proposed developments.
10
 
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
+ __start__ -.-> generate_summary;
23
+ generate_summary -.-> check_hallucination;
24
+ check_hallucination -.-> fix_hallucination;
25
+ fix_hallucination -.-> check_hallucination;
26
+ classDef default fill:#f2f0ff,line-height:1.2
27
+ classDef first fill-opacity:0
28
+ classDef last fill:#bfb6fc
29
+ ```
30
+
31
  ## Features
32
 
33
  - **Document Processing**: Extracts and processes text from various document formats including PDFs and Excel files.