biter-zephyr / index.html
askbyte's picture
Update index.html
2d74b8f verified
raw
history blame
1.95 kB
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BITER - Tu Mentor de Negocios IA</title>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
h1 {
color: #1a1a1a;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
}
.card {
background: #fff;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.info {
background-color: #e9f5ff;
border-left: 4px solid #0070f3;
padding: 15px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.loading {
text-align: center;
margin: 40px 0;
font-style: italic;
color: #666;
}
</style>
</head>
<body>
<h1>BITER - Tu Mentor en Tiempo Real</h1>
<div class="card">
<h2>Estado del Servicio</h2>
<p>✅ BITER está activo y funcionando</p>
<p>Modelo: Microsoft Phi-2 (2.7B parámetros)</p>
</div>
<div class="info">
<h3>Información Importante</h3>
<p>La primera consulta puede tardar hasta 1-2 minutos mientras se carga el modelo en memoria.</p>
<p>Este servicio está optimizado para funcionar en CPU con recursos limitados.</p>
</div>
<div class="loading">
<p>Para comenzar a usar BITER, simplemente haz clic en el botón "Abrir en una nueva pestaña" arriba.</p>
</div>
</body>
</html>