-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
89 lines (87 loc) · 4.73 KB
/
about.html
File metadata and controls
89 lines (87 loc) · 4.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4VMEHN8W95"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4VMEHN8W95');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Document Categorization API Demo</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar container" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="https://www.marketscanai.com/wp-content/uploads/2025/03/marketai-logo-2.png"
alt="MarketScanAI Logo">
<strong>Document Categorizer</strong> by MarketScanAI
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="index.html">Home</a>
<a class="navbar-item" href="examples.html">Examples</a>
<a class="navbar-item" href="request.html">Request Access</a>
<a class="navbar-item is-active" href="about.html">About</a>
</div>
</div>
</nav>
</header>
<section class="section">
<div class="container" style="max-width: 70%; margin: 0 auto;">
<h1 class="title">About</h1>
<div class="box">
<main>
<p>This is a demo of an API powered by a Large Language Model (LLM) designed for intelligent document categorization and processing. The solution can seamlessly integrate into larger systems, automating workflows and enhancing document management processes.</p>
<h2 class="title is-4 mt-5">Key Features:</h2>
<ul>
<li><strong>Document Categorization:</strong> Automatically classify documents based on their content.</li>
<li><strong>Validation Checks:</strong> Identify the presence of required stamps or signatures.</li>
<li><strong>Custom Actions:</strong> Forward documents to specific teams or individuals, or register tasks based on document content.</li>
<li><strong>Sentiment Analysis:</strong> Analyze the sentiment conveyed in the document's text.</li>
<li><strong>Flexible Storage:</strong> Store processed results in your preferred database, filesystem, or spreadsheet.</li>
</ul>
<p>This API can process multiple documents at once and adapt to your organization’s needs, making it a versatile tool for document automation.</p>
<p class="mt-5"><strong>Note:</strong> This is a demo version showcasing the capabilities of the API. It can be customized and scaled to fit your business requirements as part of a larger system.</p>
<p class="mt-5"><strong>Note: </strong>The application does not store the contents of uploaded documents. However, we may store document titles and associated keywords to help us improve our service and enhance application functionality.</p>
<p><strong>Fun fact: </strong>Whole application was written without writing the code. Only commands for ChatGPT/Perplexity and some minor code fixes.</p>
<p><strong>Integrated systems: </strong>Netlify, Supabase DB, Gemini-2.0-flash</p>
<p><strong>Time spent: </strong> 4 hours <i>(70% time resolving issues with authorisation and Supabase DB due to incorrect code from LLM)</i></p>
<p><strong>Contact:</strong> piotr [at] orpi.pl</p>
</main>
</div>
</div>
</section>
<footer class="footer custom-footer">
<hr />
<div class="content has-text-centered is-flex is-justify-content-space-between">
<div>
<a href="https://marketscanai.com" class="footer-link">
© 2025 MarketScanAi.com
</a>
</div>
<div>
<a href="https://x.com/marketscanai" class="footer-link">
Follow us on X
</a>
</div>
</div>
</footer>
<script src="navigation.js"></script>
</body>
</html>