- Remove obsolete fields from Tenant model (Catalog introduction)
This commit is contained in:
@@ -96,20 +96,7 @@ class Tenant(db.Model):
|
|||||||
'allowed_languages': self.allowed_languages,
|
'allowed_languages': self.allowed_languages,
|
||||||
'embedding_model': self.embedding_model,
|
'embedding_model': self.embedding_model,
|
||||||
'llm_model': self.llm_model,
|
'llm_model': self.llm_model,
|
||||||
'html_tags': self.html_tags,
|
|
||||||
'html_end_tags': self.html_end_tags,
|
|
||||||
'html_included_elements': self.html_included_elements,
|
|
||||||
'html_excluded_elements': self.html_excluded_elements,
|
|
||||||
'html_excluded_classes': self.html_excluded_classes,
|
|
||||||
'min_chunk_size': self.min_chunk_size,
|
|
||||||
'max_chunk_size': self.max_chunk_size,
|
|
||||||
'es_k': self.es_k,
|
|
||||||
'es_similarity_threshold': self.es_similarity_threshold,
|
|
||||||
'chat_RAG_temperature': self.chat_RAG_temperature,
|
|
||||||
'chat_no_RAG_temperature': self.chat_no_RAG_temperature,
|
|
||||||
'fallback_algorithms': self.fallback_algorithms,
|
'fallback_algorithms': self.fallback_algorithms,
|
||||||
'embed_tuning': self.embed_tuning,
|
|
||||||
'rag_tuning': self.rag_tuning,
|
|
||||||
'currency': self.currency,
|
'currency': self.currency,
|
||||||
'usage_email': self.usage_email,
|
'usage_email': self.usage_email,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,21 +30,6 @@
|
|||||||
License Information
|
License Information
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link mb-0 px-0 py-1" data-toggle="tab" href="#chunking-tab" role="tab" aria-controls="chunking" aria-selected="false">
|
|
||||||
Chunking
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link mb-0 px-0 py-1" data-toggle="tab" href="#embedding-search-tab" role="tab" aria-controls="html-chunking" aria-selected="false">
|
|
||||||
Embedding Search
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link mb-0 px-0 py-1" data-toggle="tab" href="#tuning-tab" role="tab" aria-controls="html-chunking" aria-selected="false">
|
|
||||||
Tuning
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-content tab-space">
|
<div class="tab-content tab-space">
|
||||||
@@ -78,27 +63,6 @@
|
|||||||
<p id="copy-message" style="display:none;color:green;">API key copied to clipboard</p>
|
<p id="copy-message" style="display:none;color:green;">API key copied to clipboard</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Chunking Settings Tab -->
|
|
||||||
<div class="tab-pane fade" id="chunking-tab" role="tabpanel">
|
|
||||||
{% set html_fields = ['html_tags', 'html_end_tags', 'html_included_elements', 'html_excluded_elements', 'html_excluded_classes', 'min_chunk_size', 'max_chunk_size'] %}
|
|
||||||
{% for field in form %}
|
|
||||||
{{ render_included_field(field, disabled_fields=html_fields, include_fields=html_fields) }}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<!-- Embedding Search Settings Tab -->
|
|
||||||
<div class="tab-pane fade" id="embedding-search-tab" role="tabpanel">
|
|
||||||
{% set es_fields = ['es_k', 'es_similarity_threshold', ] %}
|
|
||||||
{% for field in form %}
|
|
||||||
{{ render_included_field(field, disabled_fields=es_fields, include_fields=es_fields) }}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<!-- Tuning Settings Tab -->
|
|
||||||
<div class="tab-pane fade" id="tuning-tab" role="tabpanel">
|
|
||||||
{% set tuning_fields = ['embed_tuning', 'rag_tuning', ] %}
|
|
||||||
{% for field in form %}
|
|
||||||
{{ render_included_field(field, disabled_fields=tuning_fields, include_fields=tuning_fields) }}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user