-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis-access.html
More file actions
70 lines (64 loc) · 2.95 KB
/
thesis-access.html
File metadata and controls
70 lines (64 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Access | Will Hermann</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container nav-container">
<div class="logo">
<a href="index.html">Will Hermann</a>
</div>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Overview</a></li>
<li><a href="projects.html">Work</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="section">
<div class="container" style="max-width: 800px; text-align: center;">
<div style="font-size: 4rem; margin-bottom: 1rem;">🔒</div>
<h1>Protected Research.</h1>
<p class="subtitle" style="margin: 0 auto 3rem auto;">
This document contains proprietary architectural designs for a Neo4j-powered conversational AI system.
</p>
<div class="project-card" style="text-align: left; padding: 3rem; margin-bottom: 3rem;">
<h3>Neo4j-Powered Real-time Language Learning System</h3>
<p class="project-desc" style="margin-top: 1rem;">
<strong>Type:</strong> Bachelor's Thesis & Implementation<br>
<strong>Contents:</strong> Novel agent architecture, graph-based memory systems (SRS), RAG implementation.<br>
<strong>Status:</strong> Controlled Distribution
</p>
<p class="project-desc">
This document outlines significant intellectual property regarding the integration of graph databases with real-time voice agents. Access is granted on a case-by-case basis to researchers and potential collaborators.
</p>
</div>
<a href="contact.html?subject=Thesis Access" class="btn btn-primary">Request Access via Email</a>
<p style="margin-top: 2rem; font-size: 0.9rem; color: var(--text-muted);">
Please include your affiliation and intended use.
</p>
</div>
</section>
</main>
<footer>
<div class="container footer-content">
<div class="copyright">
© 2025 Will Hermann.
</div>
<div class="social-links">
<a href="https://github.com/coding-crying" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/william-hermann" target="_blank">LinkedIn</a>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>