-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite-download.html
More file actions
122 lines (116 loc) · 4.79 KB
/
website-download.html
File metadata and controls
122 lines (116 loc) · 4.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Rax AI - RaxCore</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: white;
}
.container { max-width: 800px; margin: 0 auto; padding: 2rem; }
.logo { text-align: center; margin-bottom: 2rem; }
.logo h1 { font-size: 3rem; font-weight: bold; margin-bottom: 0.5rem; }
.logo p { font-size: 1.2rem; opacity: 0.9; }
.download-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 2rem;
margin: 2rem 0;
border: 1px solid rgba(255,255,255,0.2);
}
.download-btn {
display: inline-block;
background: linear-gradient(45deg, #ff6b6b, #ee5a24);
color: white;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
transition: transform 0.3s;
margin: 0.5rem;
}
.download-btn:hover { transform: translateY(-2px); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.feature {
background: rgba(255,255,255,0.1);
padding: 1.5rem;
border-radius: 15px;
text-align: center;
}
.feature h3 { margin-bottom: 0.5rem; color: #ffd700; }
.instructions { background: rgba(0,0,0,0.2); padding: 1.5rem; border-radius: 15px; margin: 2rem 0; }
.code { background: #2d3748; padding: 1rem; border-radius: 10px; font-family: monospace; margin: 1rem 0; }
</style>
</head>
<body>
<div class="container">
<div class="logo">
<h1>🚀 Rax AI</h1>
<p>Advanced AI Assistant by RaxCore</p>
</div>
<div class="download-card">
<h2>📥 Download Rax AI</h2>
<p>One-click installer for your personal AI assistant</p>
<br>
<a href="rax-install.py" class="download-btn" download>
🐍 Download for Python (Universal)
</a>
<div class="features">
<div class="feature">
<h3>🔒 100% Offline</h3>
<p>Complete privacy, no internet required after setup</p>
</div>
<div class="feature">
<h3>🚀 Lightning Fast</h3>
<p>Optimized for CPU inference, works on any computer</p>
</div>
<div class="feature">
<h3>🎯 Smart AI</h3>
<p>Rax 3.5 Chat with advanced conversational abilities</p>
</div>
<div class="feature">
<h3>⚙️ Easy Setup</h3>
<p>Automatic model download and configuration</p>
</div>
</div>
</div>
<div class="instructions">
<h3>📋 Installation Instructions</h3>
<ol>
<li><strong>Download</strong> the installer above</li>
<li><strong>Run</strong> the installer:</li>
</ol>
<div class="code">python3 rax-install.py</div>
<ol start="3">
<li><strong>Launch</strong> Rax AI:</li>
</ol>
<div class="code">r</div>
<p><em>The installer will automatically download the AI model and set everything up for you!</em></p>
</div>
<div class="download-card">
<h3>💡 System Requirements</h3>
<ul>
<li>✅ Python 3.8 or higher</li>
<li>✅ 3GB free disk space</li>
<li>✅ 4GB RAM (8GB recommended)</li>
<li>✅ Any CPU (no GPU required)</li>
<li>✅ Windows, macOS, or Linux</li>
</ul>
</div>
<div class="download-card">
<h3>🌟 About RaxCore</h3>
<p>RaxCore is a leading developer company in Africa and beyond, specializing in AI innovation and accessible technology solutions.</p>
<br>
<p>🌐 <strong>Website:</strong> <a href="https://www.raxcore.dev" style="color: #ffd700;">www.raxcore.dev</a></p>
<p>🤗 <strong>Hugging Face:</strong> <a href="https://huggingface.co/raxcore-dev" style="color: #ffd700;">raxcore-dev</a></p>
</div>
</div>
</body>
</html>