"...benchmarks-master/scripts-run/single_process.sh" did not exist on "2795dc1f4445767d9369f06b92848772d805c86e"
Commit bc5e39d3 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

chore: format

parent 6cd47a3c
...@@ -21,7 +21,9 @@ ...@@ -21,7 +21,9 @@
let filteredModels = []; let filteredModels = [];
$: filteredModels = $models $: filteredModels = $models
.filter((p) => p.name.toLowerCase().includes(prompt.toLowerCase().split(' ')?.at(0)?.substring(1) ?? '')) .filter((p) =>
p.name.toLowerCase().includes(prompt.toLowerCase().split(' ')?.at(0)?.substring(1) ?? '')
)
.sort((a, b) => a.name.localeCompare(b.name)); .sort((a, b) => a.name.localeCompare(b.name));
$: if (prompt) { $: if (prompt) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment