mirror of
https://github.com/open-webui/open-webui
synced 2025-01-30 22:39:03 +00:00
enh: list valve
This commit is contained in:
parent
0250f69da0
commit
f4a2ae5eac
@ -30,20 +30,29 @@
|
||||
const submitHandler = async () => {
|
||||
saving = true;
|
||||
|
||||
let res = null;
|
||||
if (valvesSpec) {
|
||||
// Convert string to array
|
||||
for (const property in valvesSpec.properties) {
|
||||
if (valvesSpec.properties[property]?.type === 'array') {
|
||||
valves[property] = (valves[property] ?? '').split(',').map((v) => v.trim());
|
||||
}
|
||||
}
|
||||
|
||||
if (type === 'tool') {
|
||||
res = await updateToolValvesById(localStorage.token, id, valves).catch((error) => {
|
||||
toast.error(error);
|
||||
});
|
||||
} else if (type === 'function') {
|
||||
res = await updateFunctionValvesById(localStorage.token, id, valves).catch((error) => {
|
||||
toast.error(error);
|
||||
});
|
||||
}
|
||||
let res = null;
|
||||
|
||||
if (res) {
|
||||
toast.success('Valves updated successfully');
|
||||
if (type === 'tool') {
|
||||
res = await updateToolValvesById(localStorage.token, id, valves).catch((error) => {
|
||||
toast.error(error);
|
||||
});
|
||||
} else if (type === 'function') {
|
||||
res = await updateFunctionValvesById(localStorage.token, id, valves).catch((error) => {
|
||||
toast.error(error);
|
||||
});
|
||||
}
|
||||
|
||||
if (res) {
|
||||
toast.success('Valves updated successfully');
|
||||
}
|
||||
}
|
||||
|
||||
saving = false;
|
||||
@ -66,6 +75,15 @@
|
||||
valves = {};
|
||||
}
|
||||
|
||||
if (valvesSpec) {
|
||||
// Convert array to string
|
||||
for (const property in valvesSpec.properties) {
|
||||
if (valvesSpec.properties[property]?.type === 'array') {
|
||||
valves[property] = (valves[property] ?? []).join(',');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
loading = false;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user