gni commited on
Commit ·
9aa0b6c
1
Parent(s): 05d63f9
feat: finalize SEO, rate limiting, and use hero.png
Browse files- api/requirements.txt +1 -0
- ui/index.html +3 -3
api/requirements.txt
CHANGED
|
@@ -6,4 +6,5 @@ spacy>=3.8.11
|
|
| 6 |
requests>=2.32.5
|
| 7 |
langdetect>=1.0.9
|
| 8 |
slowapi>=0.1.9
|
|
|
|
| 9 |
pytest>=9.0.2
|
|
|
|
| 6 |
requests>=2.32.5
|
| 7 |
langdetect>=1.0.9
|
| 8 |
slowapi>=0.1.9
|
| 9 |
+
Pillow>=10.2.0
|
| 10 |
pytest>=9.0.2
|
ui/index.html
CHANGED
|
@@ -19,14 +19,14 @@
|
|
| 19 |
<meta property="og:url" content="https://lbl-redaction.hf.space" />
|
| 20 |
<meta property="og:title" content="Redac | AI-Powered PII Data Redaction" />
|
| 21 |
<meta property="og:description" content="Securely sanitize your documents. Automated PII detection and redaction for French and English texts." />
|
| 22 |
-
<meta property="og:image" content="/
|
| 23 |
|
| 24 |
<!-- Twitter -->
|
| 25 |
-
<meta property="twitter:card" content="
|
| 26 |
<meta property="twitter:url" content="https://lbl-redaction.hf.space" />
|
| 27 |
<meta property="twitter:title" content="Redac - AI PII Redaction Tool" />
|
| 28 |
<meta property="twitter:description" content="Protect sensitive data before sending to LLMs. Fast, secure, and automated PII redaction." />
|
| 29 |
-
<meta property="twitter:image" content="/
|
| 30 |
</head>
|
| 31 |
<body>
|
| 32 |
<div id="root"></div>
|
|
|
|
| 19 |
<meta property="og:url" content="https://lbl-redaction.hf.space" />
|
| 20 |
<meta property="og:title" content="Redac | AI-Powered PII Data Redaction" />
|
| 21 |
<meta property="og:description" content="Securely sanitize your documents. Automated PII detection and redaction for French and English texts." />
|
| 22 |
+
<meta property="og:image" content="/src/assets/hero.png" />
|
| 23 |
|
| 24 |
<!-- Twitter -->
|
| 25 |
+
<meta property="twitter:card" content="summary_large_image" />
|
| 26 |
<meta property="twitter:url" content="https://lbl-redaction.hf.space" />
|
| 27 |
<meta property="twitter:title" content="Redac - AI PII Redaction Tool" />
|
| 28 |
<meta property="twitter:description" content="Protect sensitive data before sending to LLMs. Fast, secure, and automated PII redaction." />
|
| 29 |
+
<meta property="twitter:image" content="/src/assets/hero.png" />
|
| 30 |
</head>
|
| 31 |
<body>
|
| 32 |
<div id="root"></div>
|