feat(b2b-marketing): Finalize grounding architecture and frontend improvements

- Upgrade backend to use gemini-2.5-flash with sanitized HTML parsing (no token limit).
- Implement robust retry logic and increased timeouts (600s) for deep analysis.
- Add file-based logging for prompts and responses.
- Fix API endpoint (v1) and regex parsing issues.
- Frontend: Optimize PDF export (landscape, no scrollbars), fix copy-paste button, add 'Repeat Step 6' feature.
- Update documentation to 'Completed' status.
This commit is contained in:
2025-12-23 10:40:48 +00:00
parent b14d63fbe8
commit 9220949ecb
12 changed files with 3758 additions and 569 deletions

View File

@@ -18,35 +18,77 @@
</script>
<style>
@media print {
@page {
size: landscape;
margin: 1cm;
}
body {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
color-adjust: exact;
background-color: #fff;
color: #000;
background-color: #fff !important;
color: #000 !important;
font-size: 11px;
}
main {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
padding: 0 !important;
margin: 0 !important;
width: 100% !important;
max-width: none !important;
}
section {
page-break-inside: avoid;
margin-bottom: 2rem;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
}
h2 {
font-size: 16px !important;
margin-bottom: 10px !important;
color: #000 !important;
}
/* Break scroll containers */
.overflow-x-auto {
overflow: visible !important;
display: block !important;
width: 100% !important;
}
table {
width: 100% !important;
table-layout: fixed;
border-collapse: collapse !important;
table-layout: auto !important; /* Allow columns to adapt */
}
td, th {
word-wrap: break-word;
th, td {
border: 1px solid #ccc !important;
padding: 4px 6px !important;
word-wrap: break-word !important;
white-space: normal !important;
page-break-inside: avoid;
}
th {
background-color: #f0f0f0 !important;
color: #000 !important;
}
/* Style textareas to look like text */
textarea {
border: none !important;
resize: none !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
padding: 0 !important;
min-height: auto !important;
height: auto !important;
overflow: visible !important;
white-space: pre-wrap !important;
font-size: 11px !important;
}
.overflow-x-auto {
overflow-x: visible !important;
/* Hide UI elements */
button, .print\:hidden, input[type="text"] {
display: none !important;
}
/* Hide scrollbars */
::-webkit-scrollbar {
display: none;
}
}
</style>