new ingest und profile settings
This commit is contained in:
26
templates/admin/ingest_profile/create.html.twig
Normal file
26
templates/admin/ingest_profile/create.html.twig
Normal file
@@ -0,0 +1,26 @@
|
||||
{% extends 'admin/base.html.twig' %}
|
||||
|
||||
{% block title %}System Prompt{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Create Ingest Profile</h1>
|
||||
|
||||
<form method="post">
|
||||
<label>Chunk Size:</label>
|
||||
<input type="number" name="chunk_size" required><br>
|
||||
|
||||
<label>Chunk Overlap:</label>
|
||||
<input type="number" name="chunk_overlap" required><br>
|
||||
|
||||
<label>Embedding Model:</label>
|
||||
<input type="text" name="embedding_model" required><br>
|
||||
|
||||
<label>Embedding Dimension:</label>
|
||||
<input type="number" name="embedding_dimension" required><br>
|
||||
|
||||
<label>Scoring Version:</label>
|
||||
<input type="number" name="scoring_version" required><br>
|
||||
|
||||
<button type="submit">Create</button>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user