fix: playground max_tokens #512 #511

This commit is contained in:
1808837298@qq.com
2024-09-27 20:18:03 +08:00
parent 334a6f8280
commit f9ba10f180
2 changed files with 6 additions and 3 deletions

View File

@@ -133,7 +133,9 @@ const Playground = () => {
completeMessage();
} else {
let text = payload.choices[0].delta.content;
generateMockResponse(text);
if (text) {
generateMockResponse(text);
}
}
} else {
completeMessage();
@@ -186,7 +188,7 @@ const Playground = () => {
stream: true,
model: inputs.model,
group: inputs.group,
max_tokens: inputs.max_tokens,
max_tokens: parseInt(inputs.max_tokens),
temperature: inputs.temperature,
};
};