- Move embedding model settings from tenant to catalog - BUG: error processing configuration for chunking patterns in HTML_PROCESSOR - Removed eveai_chat from docker-files and nginx configuration, as it is now obsolete - BUG: error in Library Operations when creating a new default RAG library - BUG: Added public type in migration scripts - Removed SocketIO from all code and requirements.txt
22 lines
683 B
HTML
22 lines
683 B
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_field %}
|
|
|
|
{% block title %}Update Tenant{% endblock %}
|
|
|
|
{% block content_title %}Update Tenant{% endblock %}
|
|
{% block content_description %}Update given tenant{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
{{ form.hidden_tag() }}
|
|
{% set disabled_fields = ['name', 'llm_model'] %}
|
|
{% set exclude_fields = [] %}
|
|
{% for field in form %}
|
|
{{ render_field(field, disabled_fields, exclude_fields) }}
|
|
{% endfor %}
|
|
<button type="submit" class="btn btn-primary">Update Tenant</button>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block content_footer %} {% endblock %}
|