File size: 2,328 Bytes
4b7b699
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fbe0e15
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Persistent Session-State Continuity for Local Inference</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #f8f9fa; color: #1a1a2e; }
        header { background: #1a2e1a; color: #fff; padding: 2rem; text-align: center; }
        header h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
        header p { opacity: 0.8; font-size: 0.95rem; max-width: 700px; margin: 0 auto; line-height: 1.5; }
        .links { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
        .links a { color: #a8ead8; text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0.8rem; border: 1px solid #a8ead8; border-radius: 4px; }
        .links a:hover { background: rgba(168,234,216,0.15); }
        .pdf-container { width: 100%; max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
        .pdf-container iframe { width: 100%; height: 85vh; border: 1px solid #ddd; border-radius: 6px; background: #fff; }
        .download { text-align: center; margin: 1rem 0 2rem; }
        .download a { color: #1a1a2e; font-weight: 500; }
    </style>
</head>
<body>
    <header>
        <h1>Persistent Session-State Continuity for Local Inference</h1>
        <p>Checkpoint, kill, restore, continue. Exact-fidelity session recovery for large language models on Apple Silicon unified memory.</p>
        <div class="links">
            <a href="persistent-session-state-continuity.pdf">PDF</a>
            <a href="persistent-session-state-continuity.tex">LaTeX source</a>
            <a href="https://doi.org/10.5281/zenodo.19560698">Zenodo DOI</a>
            <a href="https://github.com/Thump604">GitHub</a>
        </div>
    </header>
    <div class="pdf-container">
        <iframe src="persistent-session-state-continuity.pdf" title="Persistent Session-State Continuity paper"></iframe>
    </div>
    <div class="download">
        <a href="persistent-session-state-continuity.pdf" download>Download PDF</a> &middot; <a href="persistent-session-state-continuity.tex" download>Download LaTeX</a>
    </div>
</body>
</html>