Back to Home

Job Status

View All Jobs
Job ID: {{ job.job_id }}
Type: {% if job.job_type == 'train_model' %} 🧠 Model Training {% elif job.job_type == 'embed_chunks' %} 📊 Embedding Chunks {% else %} {{ job.job_type }} {% endif %}
Created: {{ job.created_at[:19].replace('T', ' ') }}
Status: {{ job.status.upper() }}
{{ job.message or 'Processing...' }} {{ job.progress }}%

Job Completed Successfully!

{% if job.result %}

Result:

{% if job.job_type == 'train_model' %}

✅ Model {{ job.result.model_name }} trained successfully!

Saved to: {{ job.result.model_dir }}

{% elif job.job_type == 'embed_chunks' %}

✅ Embedded {{ job.result.total_chunks }} chunks

KB: {{ job.result.kb_name }} | File: {{ job.result.filename }}

{% endif %}
{% endif %}
Go to Home {% if job.job_type == 'train_model' %} View Models {% elif job.job_type == 'embed_chunks' %} View Knowledge Bases {% endif %}

Job Failed

{% if job.error %}

Error:

{{ job.error }}
{% endif %}
Go to Home {% if job.job_type == 'train_model' %} Try Again {% endif %}