diff options
Diffstat (limited to 'dashboard/app/templates')
| -rw-r--r-- | dashboard/app/templates/ai_job.html | 3 | ||||
| -rw-r--r-- | dashboard/app/templates/templates.html | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/dashboard/app/templates/ai_job.html b/dashboard/app/templates/ai_job.html index 8f2526c63..f8f2b82bd 100644 --- a/dashboard/app/templates/ai_job.html +++ b/dashboard/app/templates/ai_job.html @@ -65,6 +65,9 @@ Detailed info on a single AI job execution. <td> <details> <summary>{{formatDuration $span.Duration}}</summary> + {{if $span.Model}} + <b>Model:</b> <div id="ai_details_div"><pre>{{$span.Model}}</pre></div><br> + {{end}} {{if $span.Error}} <b>Error:</b> <div id="ai_details_div"><pre>{{$span.Error}}</pre></div><br> {{end}} diff --git a/dashboard/app/templates/templates.html b/dashboard/app/templates/templates.html index dee2d1300..d20727a73 100644 --- a/dashboard/app/templates/templates.html +++ b/dashboard/app/templates/templates.html @@ -689,7 +689,6 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <th><a onclick="return sortTable(this, 'Created', textSort)" href="#">Created</a></th> <th><a onclick="return sortTable(this, 'Started', textSort)" href="#">Started</a></th> <th><a onclick="return sortTable(this, 'Finished', textSort)" href="#">Finished</a></th> - <th><a onclick="return sortTable(this, 'Model', textSort)" href="#">Model</a></th> <th><a onclick="return sortTable(this, 'Revision', textSort)" href="#">Revision</a></th> <th><a onclick="return sortTable(this, 'Error', textSort)" href="#">Error</a></th> </tr></thead> @@ -710,7 +709,6 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <td>{{formatTime $job.Created}}</td> <td>{{formatTime $job.Started}}</td> <td>{{formatTime $job.Finished}}</td> - <td>{{$job.LLMModel}}</td> <td class="tag">{{link $job.CodeRevisionLink $job.CodeRevision}}</td> <td>{{$job.Error}}</td> </tr> |
