File size: 14,867 Bytes
56fc5a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7f6407
 
 
 
 
 
 
 
 
56fc5a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7f6407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56fc5a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d7f6407
56fc5a9
 
 
 
 
 
 
 
 
 
 
 
 
 
d7f6407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56fc5a9
d7f6407
56fc5a9
 
 
 
 
 
 
 
 
 
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Helios Distributed AI Network</title>
    <style>
        :root {
            --primary-color: #0d1117;
            --secondary-color: #161b22;
            --text-color: #c9d1d9;
            --accent-color: #58a6ff;
            --border-color: #30363d;
            --header-font: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            --body-font: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
        }
        body {
            font-family: var(--body-font);
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        .container {
            max-width: 900px;
            width: 100%;
            padding: 2rem;
            box-sizing: border-box;
        }
        header {
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }
        header h1 {
            font-family: var(--header-font);
            font-size: 2.8em;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        header .subtitle {
            font-size: 1.2em;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        header .summary {
            max-width: 700px;
            margin: 0 auto;
            font-style: italic;
        }
        .section {
            background-color: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .section h2 {
            font-family: var(--header-font);
            font-size: 2em;
            color: var(--accent-color);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        .section h3 {
            font-family: var(--header-font);
            font-size: 1.4em;
            color: #fff;
            margin-top: 1.5rem;
        }
        .section h4 {
            font-family: var(--header-font);
            font-size: 1.1em;
            color: #c9d1d9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        ul {
            list-style: none;
            padding-left: 0;
        }
        ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 0.8rem;
        }
        ul li::before {
            content: attr(data-emoji);
            position: absolute;
            left: 0;
            top: 0;
        }
        code {
            background-color: var(--primary-color);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.2em 0.5em;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9em;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: #fff;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            text-align: center;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #338dff;
        }
        .buttons-container {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .license-section p {
            margin-bottom: 1em;
        }
        .contact-info {
            background-color: var(--primary-color);
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            margin-top: 1rem;
        }
        .final-notice {
            font-style: italic;
            margin-top: 1.5rem;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-left: 3px solid var(--accent-color);
        }
        footer {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            margin-top: 2rem;
        }
        footer a {
            color: var(--accent-color);
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 2.2em;
            }
            .container {
                padding: 1rem;
            }
            .section {
                padding: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>Helios Distributed AI Network</h1>
            <p class="subtitle">An open-source platform for building a decentralized AI computing network.</p>
            <p class="summary">
                Users contribute idle resources via a multi-modal worker, forming a global supercomputer for complex AI tasks (text, image, audio) managed by an orchestrator server.
            </p>
        </header>

        <div class="section" id="english">
            <h2>🇬🇧 English</h2>
            
            <h3>Key Features</h3>
            <ul>
                <li data-emoji="🌐"><strong>Decentralized Network:</strong> Leverages idle computing power from user devices to create a powerful, distributed AI supercomputer.</li>
                <li data-emoji="🧠"><strong>Multi-Modal AI:</strong> Capable of processing text, documents (.pdf, .docx), images (.png, .jpg), and audio (.mp3, .wav).</li>
                <li data-emoji="🛡️"><strong>Proof-of-Contribution:</strong> A secure and fair system where users contribute by running a worker node to gain access.</li>
                <li data-emoji="🤖"><strong>Dynamic Experts:</strong> Worker nodes are dynamically assigned AI models based on network demand for efficient resource allocation.</li>
                <li data-emoji="💻"><strong>Cross-Platform:</strong> Easy-to-use installers for Windows and Linux, allowing anyone to join with just a few clicks.</li>
            </ul>

            <h3>Getting Started (For Users)</h3>
            <p>To join the Helios network, simply install the worker client for your operating system from the project's releases page.</p>
            <div class="buttons-container">
                <a href="https://github.com/fnoracr/helios-distributed-ai/releases/tag/Version1.0" target="_blank" class="cta-button">Download for Windows (.exe)</a>
                <a href="https://github.com/fnoracr/helios-distributed-ai/releases/tag/Version1.0" target="_blank" class="cta-button">Download for Linux (.tar.gz)</a>
            </div>
            <p>After installation, click the "Helios AI Chat" shortcut to open your personal, authenticated chat session in your web browser.</p>

        </div>

        <div class="section" id="espanol">
            <h2>🇪🇸 Español</h2>

            <p><i>Una plataforma de código abierto para construir una red de computación de IA descentralizada. Los usuarios contribuyen con sus recursos inactivos a través de un worker multi-modal, formando una supercomputadora global para tareas de IA complejas.</i></p>

            <h3>Características Clave</h3>
            <ul>
                <li data-emoji="🌐"><strong>Red Descentralizada:</strong> Aprovecha la potencia de cálculo inactiva de los dispositivos para crear una potente supercomputadora de IA distribuida.</li>
                <li data-emoji="🧠"><strong>IA Multi-Modal:</strong> Capaz de procesar texto, documentos (.pdf, .docx), imágenes (.png, .jpg) y audio (.mp3, .wav).</li>
                <li data-emoji="🛡️"><strong>Prueba de Contribución:</strong> Un sistema seguro y justo donde el acceso se concede a quienes contribuyen ejecutando un nodo worker.</li>
                <li data-emoji="🤖"><strong>Expertos Dinámicos:</strong> Asignación dinámica de modelos de IA a los nodos worker según la demanda de la red.</li>
                <li data-emoji="💻"><strong>Multiplataforma:</strong> Instaladores fáciles de usar para Windows y Linux, permitiendo que cualquiera se una con solo unos clics.</li>
            </ul>
            
            <h3>Cómo Empezar (Para Usuarios)</h3>
            <p>Para unirte a la red Helios, solo necesitas instalar el cliente worker para tu sistema operativo desde la página de Releases del proyecto.</p>
             <div class="buttons-container">
                <a href="https://github.com/fnoracr/helios-distributed-ai/releases/tag/Version1.0" target="_blank" class="cta-button">Descargar para Windows (.exe)</a>
                <a href="https://github.com/fnoracr/helios-distributed-ai/releases/tag/Version1.0" target="_blank" class="cta-button">Descargar para Linux (.tar.gz)</a>
            </div>
            <p>Después de la instalación, haz clic en el acceso directo "Helios AI Chat" para abrir tu sesión de chat personal y autenticada en tu navegador web.</p>
        </div>
        
        <!-- === UPDATED LICENSE BLOCK START === -->
        <div class="section license-section" id="license">
            <h2>License & Terms / Licencia y Términos</h2>

            <div>
                <h3>🇬🇧 English</h3>
                <h4>License Agreement, Disclaimer, and Terms of Use</h4>
                <p><strong>IMPORTANT - PLEASE READ CAREFULLY</strong></p>
                <p>This software ("Helios AI Worker") is an open-source product provided free of charge and is currently in an experimental, developmental stage.</p>
                <p>The software is provided "AS IS", without warranty of any kind, express or implied, including but not to the warranties of merchantability, fitness for a particular purpose, and noninfringement.</p>

                <h4>COMMERCIAL USE RESTRICTIONS</h4>
                <p>All users are free to view, modify, or extend the source code of this software for personal, non-commercial use only.</p>
                <p>Any individual or entity wishing to use all or part of this code in commercial projects must notify Noragentia and may not do so without express written permission. The use of this software or any modified version of it for commercial, business, or enterprise purposes is strictly prohibited without a formal commercial agreement.</p>
                <div class="contact-info">
                    <p>To inquire about a commercial license, please contact:<br>
                    <strong>Noragentia Website:</strong> <a href="https://www.noragentia.com" target="_blank">https://www.noragentia.com</a><br>
                    <strong>Email:</strong> <a href="mailto:info@noragentia.com">info@noragentia.com</a></p>
                </div>

                <h4>LIMITATION OF LIABILITY</h4>
                <p>IN NO EVENT SHALL THE AUTHORS, DEVELOPERS, OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
                <p>This includes, but is not limited to, potential security vulnerabilities, data loss, misuse of your computational resources, or any unexpected behavior.</p>
                <p class="final-notice">By clicking "I accept the agreement" and proceeding with the installation, you acknowledge that you have read, understood, and agree to all of these terms. You are using this software at your own risk.</p>
            </div>

            <hr style="border-color: var(--border-color); margin: 2rem 0;">

            <div>
                <h3>🇪🇸 Español</h3>
                <h4>Acuerdo de Licencia, Exención de Responsabilidad y Términos de Uso</h4>
                <p><strong>IMPORTANTE - POR FAVOR, LEA DETENIDAMENTE</strong></p>
                <p>Este software ("Helios AI Worker") es un producto de código abierto proporcionado de forma gratuita y se encuentra actualmente en una fase experimental y de desarrollo.</p>
                <p>El software se proporciona "TAL CUAL", sin garantía de ningún tipo, expresa o implícita, incluidas, entre otras, las garantías de comerciabilidad, idoneidad para un propósito particular y no infracción.</p>

                <h4>RESTRICCIONES DE USO COMERCIAL</h4>
                <p>Todos los usuarios son libres de ver, modificar o ampliar el código fuente de este software para uso personal y no comercial exclusivamente.</p>
                <p>Cualquier individuo o entidad que desee utilizar todo o parte de este código en proyectos comerciales deberá comunicárselo a Noragentia y no podrá hacerlo sin permiso expreso por escrito. El uso de este software o de cualquier versión modificada del mismo con fines comerciales, de negocio o empresariales está estrictamente prohibido sin un acuerdo comercial formal.</p>
                <div class="contact-info">
                    <p>Para solicitar una licencia de uso comercial, por favor contacte con:<br>
                    <strong>Noragentia Sitio Web:</strong> <a href="https://www.noragentia.com" target="_blank">https://www.noragentia.com</a><br>
                    <strong>Correo Electrónico:</strong> <a href="mailto:info@noragentia.com">info@noragentia.com</a></p>
                </div>
                
                <h4>LIMITACIÓN DE RESPONSABILIDAD</h4>
                <p>EN NINGÚN CASO LOS AUTORES, DESARROLLADORES O TITULARES DEL COPYRIGHT SERÁN RESPONSABLES DE NINGUNA RECLAMACIÓN, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN UNA ACCIÓN DE CONTRATO, AGRAVIO O CUALQUIER OTRO TIPO, QUE SURJA DE, O EN CONEXIÓN CON EL SOFTWARE O EL USO U OTROS TRATOS EN EL SOFTWARE.</p>
                <p>Esto incluye, entre otros, posibles vulnerabilidades de seguridad, pérdida de datos, mal uso de sus recursos computacionales o cualquier comportamiento inesperado.</p>
                <p class="final-notice">Al hacer clic en "Acepto el acuerdo" y continuar con la instalación, usted reconoce que ha leído, entendido y aceptado todos estos términos. Usted utiliza este software bajo su propio riesgo.</p>
            </div>
        </div>
        <!-- === UPDATED LICENSE BLOCK END === -->

        <footer>
            <p>
                <a href="https://www.noragentia.com" target="_blank">Website: www.noragentia.com</a> | 
                <a href="mailto:info@noragentia.com">Email: info@noragentia.com</a>
            </p>
        </footer>
    </div>
</body>
</html>