fix:修复大纲世界观编辑bug update:更新不再限制最大token数

This commit is contained in:
xiamuceer
2025-11-01 02:10:35 +08:00
parent 013d5100df
commit e02e61ed6b
5 changed files with 20 additions and 21 deletions
+8 -4
View File
@@ -685,6 +685,7 @@ export default function ProjectWizardNew() {
rules: worldBuilding.rules,
});
}}
disabled={isEditingWorld}
size={isMobile ? 'middle' : 'middle'}
style={isMobile ? { minWidth: 100 } : undefined}
>
@@ -696,10 +697,12 @@ export default function ProjectWizardNew() {
onConfirm={handleRegenerateWorldBuilding}
okText="确定"
cancelText="取消"
disabled={isEditingWorld}
>
<Button
icon={<RedoOutlined />}
loading={isRegeneratingWorld}
disabled={isEditingWorld}
size={isMobile ? 'middle' : 'middle'}
style={isMobile ? { minWidth: 100 } : undefined}
>
@@ -771,6 +774,7 @@ export default function ProjectWizardNew() {
size="large"
block
onClick={handlePrev}
disabled={isEditingWorld}
style={{ height: isMobile ? 44 : 40 }}
>
@@ -1019,12 +1023,12 @@ export default function ProjectWizardNew() {
<Text strong style={{ marginLeft: 24 }}></Text>{basicInfo.target_words?.toLocaleString()}
</Paragraph>
<Paragraph type="secondary">
8
5
</Paragraph>
</div>
<Form layout="vertical" onFinish={() => handleGenerateOutline({
chapter_count: 8, // 固定8
chapter_count: 5, // 固定5
narrative_perspective: basicInfo.narrative_perspective,
target_words: basicInfo.target_words
})}>
@@ -1048,7 +1052,7 @@ export default function ProjectWizardNew() {
loading={loading}
style={{ height: isMobile ? 44 : 40 }}
>
{loading ? '生成开局大纲(8章)' : '生成开局大纲(8章)'}
{loading ? '生成开局大纲(5章)' : '生成开局大纲(5章)'}
</Button>
</Col>
</Row>
@@ -1086,7 +1090,7 @@ export default function ProjectWizardNew() {
paddingLeft: isMobile ? 8 : 0,
paddingRight: isMobile ? 8 : 0
}}>
{basicInfo.title}{characters.length}8
{basicInfo.title}{characters.length}5
</Paragraph>
<Space
+1 -2
View File
@@ -480,14 +480,13 @@ export default function SettingsPage() {
name="max_tokens"
rules={[
{ required: true, message: '请输入最大token数' },
{ type: 'number', min: 1, max: 32000, message: '请输入1-32000之间的数字' }
{ type: 'number', min: 1, message: '请输入大于0的数字' }
]}
>
<InputNumber
size={isMobile ? 'middle' : 'large'}
style={{ width: '100%' }}
min={1}
max={32000}
placeholder="2000"
/>
</Form.Item>