chore: bump cortex.cpp server 1.0.10-rc6 (#4642)

* chore: bump cortex.cpp server 1.0.10-rc6

* chore: don't force stop model on delete if its not currently running
This commit is contained in:
Louis 2025-02-13 12:39:04 +07:00 committed by GitHub
parent aed42edb3f
commit 470fd64ab5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
1.0.10-rc5
1.0.10-rc6

View File

@ -176,7 +176,7 @@ const MyModelList = ({ model }: Props) => {
onClick={() => {
setTimeout(async () => {
if (!serverEnabled) {
await stopModel()
if (activeModel?.id === model.id) await stopModel()
deleteModel(model)
}
}, 500)