第一次提交

This commit is contained in:
2026-04-03 09:56:14 +08:00
commit 60e2c8debd
3598 changed files with 746659 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<template>
<a-card class="ai-prompts-info">
<AiragExtDataList ref="processRef" v-if="activeKey==='evaluator'"></AiragExtDataList>
</a-card>
</template>
<script lang="ts" setup>
/**
* 评估器 evaluator
* 评测集 evaluationSet
* 实验 experiment
*/
import { ref, onMounted } from 'vue';
import AiragExtDataList from './AiragExtDataList.vue'
/**
* 评估器 evaluator
* 评测集 evaluationSet
* 实验 experiment
*/
const activeKey = ref('evaluator');
/**
* 切换tab
*/
function handleChangePanel(key) {
activeKey.value = key;
}
onMounted(()=>{
activeKey.value = 'evaluator';
});
</script>
<style scoped lang="less">
.ai-prompts-info {
margin: 10px;
:deep(.ant-card-body) {
padding: 12px 8px;
}
:deep(.ant-tabs-tabpane) {
padding-left: 12px !important;
}
}
</style>