chore: detail api

This commit is contained in:
jialin
2026-01-30 18:48:55 +08:00
parent 358df925e7
commit 8f2eea70f6
43 changed files with 1938 additions and 97 deletions
+22 -4
View File
@@ -14,7 +14,7 @@ const DatasetForm: React.FC = () => {
return (
<>
<Form.Item<FormData>
name="input_length"
name="dataset_prompt_tokens"
rules={[
{
required: true,
@@ -26,13 +26,22 @@ const DatasetForm: React.FC = () => {
]}
>
<SealSelect
options={[]}
options={[
{
label: '100',
value: 100
},
{
label: '128',
value: 128
}
]}
label={intl.formatMessage({ id: 'benchmark.table.inputTokenLength' })}
required
></SealSelect>
</Form.Item>
<Form.Item<FormData>
name="output_length"
name="dataset_output_tokens"
rules={[
{
required: true,
@@ -44,7 +53,16 @@ const DatasetForm: React.FC = () => {
]}
>
<SealSelect
options={[]}
options={[
{
label: '4',
value: 4
},
{
label: '8',
value: 8
}
]}
label={intl.formatMessage({
id: 'benchmark.table.outputTokenLength'
})}