Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nbonamy committed May 16, 2024
1 parent 76ad2bf commit cc48e02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/screens/CommandDefaults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<option value="ollama">Ollama</option>
<option value="anthropic">Anthropic</option>
<option value="mistralai">MistralAI</option>
<option value="google">Google</option>
<option value="groq">Groq</option>
</select>
</div>
Expand Down
6 changes: 5 additions & 1 deletion tests/unit/engine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ test('Ignite Engine', async () => {

test('Has Vision Models', async () => {
expect(hasVisionModels('openai')).toBe(true)
expect(hasVisionModels('anthropic')).toBe(false)
expect(hasVisionModels('ollana')).toBe(true)
expect(hasVisionModels('mistralai')).toBe(false)
expect(hasVisionModels('anthropic')).toBe(true)
expect(hasVisionModels('google')).toBe(true)
expect(hasVisionModels('groq')).toBe(false)
})

test('Is Vision Model', async () => {
Expand Down

0 comments on commit cc48e02

Please sign in to comment.