chore: vllm params

This commit is contained in:
jialin
2024-09-26 10:30:40 +08:00
parent a698c65a07
commit f813f56c1f
13 changed files with 42 additions and 41 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ const HintInput: React.FC<HintInputProps> = (props) => {
const generateOptions = (context: string) => {
if (!context) {
setOptions([]);
setOptions(sourceOptions || []);
return;
}
const match = context.match(matchReg);
-1
View File
@@ -78,7 +78,6 @@ const ListInput: React.FC<ListInputProps> = (props) => {
options={options}
key={item.uid}
value={item.value}
label={`${index + 1}`}
onRemove={() => handleOnRemove(index)}
onChange={(val) => handleOnChange(val, index)}
/>