Spaces:
Runtime error
Runtime error
app.py
Browse files
app.py
CHANGED
@@ -103,8 +103,9 @@ if uploaded_file:
|
|
103 |
# Add a title and style
|
104 |
title = doc.add_heading('AI Assistant Report', 0)
|
105 |
title.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # Center align the title
|
106 |
-
title.
|
107 |
-
|
|
|
108 |
|
109 |
# Add Executive Summary
|
110 |
doc.add_heading('Executive Summary', level=1)
|
|
|
103 |
# Add a title and style
|
104 |
title = doc.add_heading('AI Assistant Report', 0)
|
105 |
title.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # Center align the title
|
106 |
+
run = title.add_run("AI Assistant Report")
|
107 |
+
run.bold = True
|
108 |
+
run.font.size = Pt(18)
|
109 |
|
110 |
# Add Executive Summary
|
111 |
doc.add_heading('Executive Summary', level=1)
|