Initial commit: Add project files
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
algorithmStatus: string
|
||||
orderCapability: string
|
||||
modelMutationBoundary: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section aria-labelledby="automation-boundary-title">
|
||||
<h2 id="automation-boundary-title">자동화 경계</h2>
|
||||
<dl>
|
||||
<div>
|
||||
<dt>알고리즘 상태</dt>
|
||||
<dd>{{ algorithmStatus }}</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>주문 Capability</dt>
|
||||
<dd>{{ orderCapability }}</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>모델 변경</dt>
|
||||
<dd>{{ modelMutationBoundary }}</dd>
|
||||
</div>
|
||||
</dl>
|
||||
<p>
|
||||
스케줄러는 평가 증거와 개선 제안만 생성합니다. 모델 승격·롤백·임계값 변경은 독립 검증과
|
||||
maker-checker 승인을 거쳐야 합니다.
|
||||
</p>
|
||||
</section>
|
||||
</template>
|
||||
Reference in New Issue
Block a user