iatoolkit 0.64.0__tar.gz → 0.64.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of iatoolkit might be problematic. Click here for more details.
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/PKG-INFO +1 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/pyproject.toml +1 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/iatoolkit.py +1 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_help_content.js +3 -3
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_history_button.js +2 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_main.js +20 -4
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/chat_iatoolkit.css +33 -23
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/chat_modal.css +2 -4
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/base.html +2 -6
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/change_password.html +4 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/chat.html +2 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/chat_modals.html +4 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/error.html +3 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/forgot_password.html +4 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/index.html +3 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/signup.html +3 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit.egg-info/PKG-INFO +1 -1
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/readme.md +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/requirements.txt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/setup.cfg +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/base_company.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/cli_commands.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/common/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/common/exceptions.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/common/routes.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/common/session_manager.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/common/util.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/company_registry.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/call_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/file_connector.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/file_connector_factory.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/google_cloud_storage_connector.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/google_drive_connector.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/local_file_connector.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/s3_connector.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/gemini_adapter.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/google_chat_app.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/llm_client.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/llm_proxy.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/llm_response.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/mail_app.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/openai_adapter.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/redis_session_manager.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/database_manager.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/document_repo.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/llm_query_repo.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/models.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/profile_repo.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/tasks_repo.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/repositories/vs_repo.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/auth_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/benchmark_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/branding_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/dispatcher_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/document_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/excel_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/file_processor_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/help_content_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/history_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/jwt_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/load_documents_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/mail_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/onboarding_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/profile_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/prompt_manager_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/query_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/search_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/sql_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/tasks_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/user_feedback_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/user_session_context_service.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/images/fernando.jpeg +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_feedback_button.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_filepond.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_logout_button.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_onboarding_button.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_prompt_manager.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/js/chat_reload_button.js +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/chat_info.css +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/landing_page.css +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/llm_output.css +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/static/styles/onboarding.css +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/system_prompts/format_styles.prompt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/system_prompts/query_main.prompt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/system_prompts/sql_rules.prompt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/_company_header.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/_login_widget.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/about.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/header.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/login_simulation.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/onboarding_shell.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/templates/test.html +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/__init__.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/base_login_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/change_password_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/external_login_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/file_store_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/forgot_password_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/help_content_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/history_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/home_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/index_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/init_context_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/llmquery_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/login_simulation_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/login_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/logout_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/prompt_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/signup_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/tasks_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/tasks_review_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/user_feedback_api_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/views/verify_user_view.py +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit.egg-info/SOURCES.txt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit.egg-info/dependency_links.txt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit.egg-info/requires.txt +0 -0
- {iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit.egg-info/top_level.txt +0 -0
|
@@ -19,7 +19,7 @@ from werkzeug.middleware.proxy_fix import ProxyFix
|
|
|
19
19
|
from injector import Binder, Injector, singleton
|
|
20
20
|
from importlib.metadata import version as _pkg_version, PackageNotFoundError
|
|
21
21
|
|
|
22
|
-
IATOOLKIT_VERSION = "0.64.
|
|
22
|
+
IATOOLKIT_VERSION = "0.64.7"
|
|
23
23
|
|
|
24
24
|
# global variable for the unique instance of IAToolkit
|
|
25
25
|
_iatoolkit_instance: Optional['IAToolkit'] = None
|
|
@@ -64,7 +64,7 @@ $(document).ready(function () {
|
|
|
64
64
|
if (data.example_questions) {
|
|
65
65
|
let contentHtml = '';
|
|
66
66
|
data.example_questions.forEach(cat => {
|
|
67
|
-
contentHtml += `<h6>${cat.category}</h6><ul>`;
|
|
67
|
+
contentHtml += `<h6 class="fw-bold">${cat.category}</h6><ul>`;
|
|
68
68
|
cat.questions.forEach(q => contentHtml += `<li>${q}</li>`);
|
|
69
69
|
contentHtml += `</ul>`;
|
|
70
70
|
});
|
|
@@ -86,8 +86,8 @@ $(document).ready(function () {
|
|
|
86
86
|
|
|
87
87
|
if (data.capabilities) {
|
|
88
88
|
let contentHtml = `<div class="row">`;
|
|
89
|
-
contentHtml += `<div class="col-md-6"><h6>Puede hacer:</h6><ul>${data.capabilities.can_do.map(item => `<li>${item}</li>`).join('')}</ul></div>`;
|
|
90
|
-
contentHtml += `<div class="col-md-6"><h6>No puede hacer:</h6><ul>${data.capabilities.cannot_do.map(item => `<li>${item}</li>`).join('')}</ul></div>`;
|
|
89
|
+
contentHtml += `<div class="col-md-6"><h6 class="fw-bold">Puede hacer:</h6><ul>${data.capabilities.can_do.map(item => `<li>${item}</li>`).join('')}</ul></div>`;
|
|
90
|
+
contentHtml += `<div class="col-md-6"><h6 class="fw-bold">No puede hacer:</h6><ul>${data.capabilities.cannot_do.map(item => `<li>${item}</li>`).join('')}</ul></div>`;
|
|
91
91
|
contentHtml += `</div>`;
|
|
92
92
|
accordionHtml += createAccordionItem('capabilities', 'Capacidades y Límites', contentHtml);
|
|
93
93
|
}
|
|
@@ -11,6 +11,22 @@ $(document).ready(function () {
|
|
|
11
11
|
callToolkit(url, {'token': window.redeemToken}, "POST").catch(() => {});
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
const layoutContainer = document.querySelector('.chat-layout-container');
|
|
15
|
+
const promptAssistantCollapse = document.getElementById('prompt-assistant-collapse');
|
|
16
|
+
|
|
17
|
+
if (layoutContainer && promptAssistantCollapse) {
|
|
18
|
+
promptAssistantCollapse.addEventListener('show.bs.collapse', function () {
|
|
19
|
+
layoutContainer.classList.add('prompt-assistant-open');
|
|
20
|
+
setTimeout(() => {
|
|
21
|
+
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
|
|
22
|
+
}, 300);
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
promptAssistantCollapse.addEventListener('hide.bs.collapse', function () {
|
|
26
|
+
layoutContainer.classList.remove('prompt-assistant-open');
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
14
30
|
// --- chat main event hadlers ---
|
|
15
31
|
$('#send-button').on('click', handleChatMessage);
|
|
16
32
|
$('#stop-button').on('click', abortCurrentRequest);
|
|
@@ -170,7 +186,6 @@ function updateSendButtonState() {
|
|
|
170
186
|
* Auto-resizes the textarea to fit its content.
|
|
171
187
|
*/
|
|
172
188
|
function autoResizeTextarea(element) {
|
|
173
|
-
return;
|
|
174
189
|
element.style.height = 'auto';
|
|
175
190
|
element.style.height = (element.scrollHeight) + 'px';
|
|
176
191
|
}
|
|
@@ -184,7 +199,6 @@ const toggleSendStopButtons = function (showStop) {
|
|
|
184
199
|
$('#stop-button-container').toggle(showStop);
|
|
185
200
|
};
|
|
186
201
|
|
|
187
|
-
|
|
188
202
|
/**
|
|
189
203
|
* Generic function to make API calls to the backend.
|
|
190
204
|
* @param {string} apiPath - The API endpoint path.
|
|
@@ -275,10 +289,12 @@ const displayUserMessage = function(message, isEditable, originalQuestion) {
|
|
|
275
289
|
|
|
276
290
|
if (isEditable) {
|
|
277
291
|
const editIcon = $('<i>').addClass('p-2 bi bi-pencil-fill edit-icon edit-pencil').attr('title', 'Edit query').on('click', function () {
|
|
278
|
-
$('#question').val(originalQuestion)
|
|
292
|
+
$('#question').val(originalQuestion)
|
|
279
293
|
autoResizeTextarea($('#question')[0]);
|
|
280
|
-
|
|
281
294
|
$('#send-button').removeClass('disabled');
|
|
295
|
+
|
|
296
|
+
if (window.innerWidth > 768)
|
|
297
|
+
$('#question').focus();
|
|
282
298
|
});
|
|
283
299
|
userMessage.append(editIcon);
|
|
284
300
|
}
|
|
@@ -13,29 +13,45 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
13
13
|
color: var(--brand-text-heading-color);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
ul {
|
|
17
|
+
/* Se resetea el padding por defecto del navegador y se aplica uno controlado */
|
|
18
|
+
padding-left: 1.5rem; /* ~24px de indentación para la lista */
|
|
19
|
+
margin-bottom: 1rem; /* Espacio después de que termina la lista */
|
|
20
|
+
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
li {
|
|
23
|
+
/* Espacio vertical entre cada elemento de la lista para mejor legibilidad */
|
|
24
|
+
margin-bottom: 0.5rem; /* ~8px */
|
|
25
|
+
padding-left: 0.25rem; /* Pequeño espacio extra entre la viñeta y el texto */
|
|
26
|
+
color: #495057;
|
|
27
|
+
}
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
/* Estilo para la viñeta (el punto) de cada elemento de la lista */
|
|
30
|
+
li::marker {
|
|
31
|
+
color: var(--brand-primary-color); /* La viñeta usa el color principal de la marca */
|
|
32
|
+
font-size: 1.1em; /* Ligeramente más grande para que sea más visible */
|
|
33
|
+
}
|
|
34
34
|
|
|
35
35
|
.text-muted {
|
|
36
36
|
color: #64748b;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
.chat-layout-container {
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
height: 100dvh;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
padding-top: 1rem;
|
|
45
|
+
padding-bottom: 0.2rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* Esta parte para el prompt-assistant sigue siendo correcta */
|
|
49
|
+
main.chat-layout-container.prompt-assistant-open {
|
|
50
|
+
height: auto;
|
|
51
|
+
overflow: visible;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
|
|
39
55
|
/* Estos estilos son para las paginas publicas: home, signup, olvide la clave, etc */
|
|
40
56
|
|
|
41
57
|
/* --- Encabezado (top) de company --- */
|
|
@@ -165,7 +181,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
165
181
|
|
|
166
182
|
/* Estilos para el contenedor del chat y mensajes para que exista scroll */
|
|
167
183
|
#chat-container {
|
|
168
|
-
|
|
184
|
+
flex-grow: 1;
|
|
169
185
|
overflow-y: auto;
|
|
170
186
|
display: flex;
|
|
171
187
|
flex-direction: column;
|
|
@@ -385,12 +401,6 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
385
401
|
pointer-events: none; /* Lo hace no-clicable */
|
|
386
402
|
}
|
|
387
403
|
|
|
388
|
-
@media (max-width: 768px) {
|
|
389
|
-
#chat-container {
|
|
390
|
-
height: 68vh;
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
|
|
394
404
|
.filepond--credits {
|
|
395
405
|
display: none; /* Ocultar créditos de FilePond */
|
|
396
406
|
}
|
|
@@ -103,10 +103,9 @@
|
|
|
103
103
|
|
|
104
104
|
/* model de help */
|
|
105
105
|
.modal-body .accordion-button:not(.collapsed) {
|
|
106
|
-
background-color: var(--brand-
|
|
107
|
-
color: var(--brand-primary
|
|
106
|
+
background-color: var(--brand-primary-color);
|
|
107
|
+
color: var(--brand-text-on-primary);
|
|
108
108
|
font-weight: 600;
|
|
109
|
-
/* ANULACIÓN DEFINITIVA: Asegura que NUNCA haya un anillo de foco cuando el botón está abierto. */
|
|
110
109
|
box-shadow: none;
|
|
111
110
|
}
|
|
112
111
|
|
|
@@ -114,7 +113,6 @@
|
|
|
114
113
|
.modal-body .accordion-button.collapsed:focus {
|
|
115
114
|
background-color: #fff; /* Asegura fondo blanco al hacer foco en un item cerrado */
|
|
116
115
|
border-color: transparent; /* Evita bordes no deseados */
|
|
117
|
-
color: #212529; /* Color de texto estándar para el botón cerrado */
|
|
118
116
|
/* La única regla que debe estar aquí es la que dibuja el anillo de foco. */
|
|
119
117
|
box-shadow: 0 0 0 0.25rem rgba(var(--brand-primary-color-rgb), 0.25);
|
|
120
118
|
}
|
|
@@ -16,12 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
{% block styles %}{% endblock %}
|
|
18
18
|
</head>
|
|
19
|
-
<body
|
|
20
|
-
|
|
21
|
-
<main class="d-flex flex-column flex-grow-1">
|
|
22
|
-
{% block content %}{% endblock %}
|
|
23
|
-
</main>
|
|
24
|
-
|
|
19
|
+
<body>
|
|
20
|
+
{% block content %}{% endblock %}
|
|
25
21
|
|
|
26
22
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
|
|
27
23
|
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
{% endblock %}
|
|
11
11
|
|
|
12
12
|
{% block content %}
|
|
13
|
+
<div class="container mt-4">
|
|
14
|
+
|
|
13
15
|
{% include '_company_header.html' %}
|
|
14
16
|
|
|
15
17
|
<!-- Sección contenedora para centrar el contenido -->
|
|
@@ -59,4 +61,6 @@
|
|
|
59
61
|
</div>
|
|
60
62
|
</div>
|
|
61
63
|
</section>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
62
66
|
{% endblock %}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{% block title %}{{ branding.name }} IA{% endblock %}
|
|
4
4
|
|
|
5
5
|
{% block content %}
|
|
6
|
-
|
|
6
|
+
<div class="chat-layout-container container">
|
|
7
7
|
{% block styles %}
|
|
8
8
|
{# Movemos los estilos y los links aquí para que se rendericen en el <head> #}
|
|
9
9
|
<style>
|
|
@@ -190,6 +190,7 @@
|
|
|
190
190
|
<!-- Incluir los modales desde un archivo externo -->
|
|
191
191
|
{% include 'chat_modals.html' %}
|
|
192
192
|
|
|
193
|
+
</div>
|
|
193
194
|
{% endblock %}
|
|
194
195
|
|
|
195
196
|
{% block scripts %}
|
|
@@ -128,7 +128,10 @@
|
|
|
128
128
|
<div class="modal-dialog modal-lg modal-dialog-scrollable">
|
|
129
129
|
<div class="modal-content">
|
|
130
130
|
<div class="modal-header branded">
|
|
131
|
-
<h5 class="modal-title" id="helpModalLabel"
|
|
131
|
+
<h5 class="modal-title" id="helpModalLabel">
|
|
132
|
+
<i class="bi bi-info-circle me-2"></i>
|
|
133
|
+
Guía de uso del Asistente IA
|
|
134
|
+
</h5>
|
|
132
135
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
133
136
|
</div>
|
|
134
137
|
<div class="modal-body">
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
{% endblock %}
|
|
15
15
|
|
|
16
16
|
{% block content %}
|
|
17
|
+
<div class="container mt-4">
|
|
18
|
+
|
|
17
19
|
{% include '_company_header.html' %}
|
|
18
20
|
|
|
19
21
|
{# Contenedor principal para el mensaje de error #}
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
</div>
|
|
45
47
|
</div>
|
|
46
48
|
</div>
|
|
47
|
-
|
|
49
|
+
</div>
|
|
48
50
|
{% endblock %}
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
{% endblock %}
|
|
9
9
|
|
|
10
10
|
{% block content %}
|
|
11
|
+
<div class="container mt-4">
|
|
12
|
+
|
|
11
13
|
{% include '_company_header.html' %}
|
|
12
14
|
|
|
13
15
|
<!-- 3. Sección contenedora para centrar el contenido -->
|
|
@@ -43,4 +45,6 @@
|
|
|
43
45
|
</div>
|
|
44
46
|
</div>
|
|
45
47
|
</section>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
46
50
|
{% endblock %}
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
{% block content %}
|
|
13
|
+
<div class="container mt-4">
|
|
14
|
+
|
|
13
15
|
<!-- 1. Encabezado con una clase 100% propia y única -->
|
|
14
16
|
<header class="website-header container">
|
|
15
17
|
<span class="website-brand">IAToolkit</span>
|
|
@@ -139,4 +141,5 @@
|
|
|
139
141
|
© 2024 IAToolkit - Proyecto Open Source
|
|
140
142
|
</div>
|
|
141
143
|
</footer>
|
|
144
|
+
</div>
|
|
142
145
|
{% endblock %}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/file_connector_factory.py
RENAMED
|
File without changes
|
|
File without changes
|
{iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/google_drive_connector.py
RENAMED
|
File without changes
|
{iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/infra/connectors/local_file_connector.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iatoolkit-0.64.0 → iatoolkit-0.64.7}/src/iatoolkit/services/user_session_context_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|