Pull Model Command (#125)

* Add: Pull Model Command

* Fix: Missing ollama mock for PullModel
This commit is contained in:
Kevin Dang
2024-10-12 17:53:34 -07:00
committed by GitHub
parent 5061dab335
commit 5d02800c3f
5 changed files with 63 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ import { Shutoff } from './shutoff.js'
import { Capacity } from './capacity.js'
import { PrivateThreadCreate } from './threadPrivateCreate.js'
import { ClearUserChannelHistory } from './cleanUserChannelHistory.js'
import { PullModel } from './pullModel.js'
export default [
ThreadCreate,
@@ -16,5 +17,6 @@ export default [
Disable,
Shutoff,
Capacity,
ClearUserChannelHistory
ClearUserChannelHistory,
PullModel
] as SlashCommand[]