quantumbit Copilot commited on
Commit
398d1a9
·
1 Parent(s): c1cfb54

mermaid update

Browse files

Co-authored-by: Copilot <copilot@github.com>

Files changed (1) hide show
  1. main.py +11 -12
main.py CHANGED
@@ -81,21 +81,20 @@ async def process_logs(request: LogsRequest):
81
  )
82
 
83
  combined = f"""
84
- # REPORT:
85
- {report}
86
 
87
- # STATE FLOW
88
- ```mermaid
89
- {state_flow.replace("\n", """
90
- """)}
91
- ```
92
 
93
- # INSIGHTS:
94
- {insights}
95
 
96
- # SUGESTIONS:
97
- {suggestions}
98
- """
99
  os.makedirs("output", exist_ok=True)
100
  x = len(os.listdir("output"))
101
  file_name = f"output/output{x}.md"
 
81
  )
82
 
83
  combined = f"""
84
+ # REPORT:
85
+ {report}
86
 
87
+ # STATE FLOW
88
+ ```mermaid
89
+ {state_flow}
90
+ ```
 
91
 
92
+ # INSIGHTS:
93
+ {insights}
94
 
95
+ # SUGESTIONS:
96
+ {suggestions}
97
+ """
98
  os.makedirs("output", exist_ok=True)
99
  x = len(os.listdir("output"))
100
  file_name = f"output/output{x}.md"