Skip to content

Commit

Permalink
chore: bump cortex.cpp server 1.0.10-rc6 (#4642)
Browse files Browse the repository at this point in the history
* chore: bump cortex.cpp server 1.0.10-rc6

* chore: don't force stop model on delete if its not currently running
  • Loading branch information
louis-menlo authored Feb 13, 2025
1 parent aed42ed commit 470fd64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/inference-cortex-extension/bin/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.10-rc5
1.0.10-rc6
2 changes: 1 addition & 1 deletion web/screens/Settings/MyModels/MyModelList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 470fd64

Please sign in to comment.