Commit 94b0daf6 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: keep alive

parent 9b359600
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
num_ctx: options.num_ctx !== '' ? options.num_ctx : undefined, num_ctx: options.num_ctx !== '' ? options.num_ctx : undefined,
num_predict: options.num_predict !== '' ? options.num_predict : undefined num_predict: options.num_predict !== '' ? options.num_predict : undefined
}, },
keepAlive: keepAlive ? keepAlive : undefined keepAlive: keepAlive ? (isNaN(keepAlive) ? keepAlive : parseInt(keepAlive)) : undefined
}); });
dispatch('save'); dispatch('save');
......
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