Spaces:
Running
Running
Abid Ali Awan
commited on
Commit
·
9ad74b8
1
Parent(s):
7c4a838
Enhance RegRadarAgent report formatting by adding structured sections for Executive Summary, Key Findings, Compliance Requirements, Action Items, and Resources. Update section headers with consistent markdown styles and relevant emojis for improved clarity and organization.
Browse files- agents/reg_radar.py +11 -1
agents/reg_radar.py
CHANGED
@@ -118,21 +118,31 @@ class RegRadarAgent:
|
|
118 |
{json.dumps(by_source, indent=2)}
|
119 |
|
120 |
Include:
|
|
|
121 |
---
|
|
|
122 |
## 🏛️ Executive Summary
|
123 |
(2-3 sentences overview)
|
124 |
|
|
|
|
|
125 |
## 🔍 Key Findings
|
126 |
• Finding 1
|
127 |
• Finding 2
|
128 |
• Finding 3
|
129 |
|
130 |
-
|
|
|
|
|
131 |
- List main requirements with priorities
|
132 |
|
|
|
|
|
133 |
## ✅ Action Items
|
134 |
- Specific actions with suggested timelines
|
135 |
|
|
|
|
|
136 |
## 📚 Resources
|
137 |
- Links and references
|
138 |
|
|
|
118 |
{json.dumps(by_source, indent=2)}
|
119 |
|
120 |
Include:
|
121 |
+
|
122 |
---
|
123 |
+
|
124 |
## 🏛️ Executive Summary
|
125 |
(2-3 sentences overview)
|
126 |
|
127 |
+
---
|
128 |
+
|
129 |
## 🔍 Key Findings
|
130 |
• Finding 1
|
131 |
• Finding 2
|
132 |
• Finding 3
|
133 |
|
134 |
+
---
|
135 |
+
|
136 |
+
## 🛡️ Compliance Requirements
|
137 |
- List main requirements with priorities
|
138 |
|
139 |
+
---
|
140 |
+
|
141 |
## ✅ Action Items
|
142 |
- Specific actions with suggested timelines
|
143 |
|
144 |
+
---
|
145 |
+
|
146 |
## 📚 Resources
|
147 |
- Links and references
|
148 |
|