-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
173 lines (145 loc) · 4.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat with API</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#chat-container {
display: none;
width: 300px;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#messages {
height: 300px;
overflow-y: scroll;
border: 1px solid #ddd;
margin-bottom: 10px;
padding: 10px;
}
#messages p {
margin: 5px 0;
}
.user-message {
text-align: right;
color: blue;
}
.api-response {
text-align: left;
color: green;
}
#input-container {
display: flex;
gap: 10px;
}
#message-input {
flex: 1;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
#send-button {
padding: 10px 15px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#db-dialog {
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#db-dialog {
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f9;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#db-dialog h3 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
#db-dialog p {
color: #666;
line-height: 1.6;
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #444;
}
#db-input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1em;
margin-bottom: 15px;
}
.db-example {
font-size: 0.9em;
color: #888;
margin-bottom: 8px;
}
#db-username {
width: 100%;
padding: 12px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
font-size: 1em;
cursor: pointer;
}
#db-username:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div id="db-dialog">
<h3>Bienvenido a la Demo de Business Intelligence (BI)</h3>
<p>Esta demostración está diseñada como una herramienta para un agente LLM. Por esta razón, no cuenta con
memoria ni con capacidades de razonamiento a largo plazo.</p>
<p>Su propósito es responder preguntas basadas en los datos disponibles en la base de datos. Si la respuesta no
es satisfactoria, te recomendamos reformular la pregunta.</p>
<label for="db-input">Por favor, ingresa una URL de conexión a la base de datos (sin incluir el motor de base de
datos):</label>
<input type="text" id="db-input" placeholder="Ejemplo: root:[email protected]:3306/messagehistoryrag" />
<p class="db-example">Si no tienes acceso a una base de datos, puedes utilizar esta de prueba:</p>
<p class="db-example">test_asuna:[email protected]:3306/inpos_ayudakarla2</p>
<button id="db-username">Confirmar</button>
</div>
<div id="chat-container">
<div id="messages"></div>
<div id="input-container">
<input type="text" id="message-input" placeholder="Escribe un mensaje..." />
<button id="send-button">Enviar</button>
</div>
</div>
<script src="chat.js"></script>
</body>
</html>