Delete Model Command (#150)

* Add: Delete Model Command

* Update: version increment

* Update: new command to tests
This commit is contained in:
Kevin Dang
2024-12-14 17:06:08 -08:00
committed by GitHub
parent fe1f7ce5ec
commit 6c7e48d369
9 changed files with 79 additions and 20 deletions

View File

@@ -22,7 +22,7 @@ describe('Commands Existence', () => {
// test specific commands in the object
it('references specific commands', () => {
const commandsString = commands.map(e => e.name).join(', ')
expect(commandsString).toBe('thread, private-thread, message-stream, toggle-chat, shutoff, modify-capacity, clear-user-channel-history, pull-model, switch-model')
expect(commandsString).toBe('thread, private-thread, message-stream, toggle-chat, shutoff, modify-capacity, clear-user-channel-history, pull-model, switch-model, delete-model')
})
})