Skip to content

Commit

Permalink
pass test
Browse files Browse the repository at this point in the history
  • Loading branch information
sxjeru committed Apr 29, 2024
1 parent 7ffad59 commit c71114c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/modelProviders/google.ts
Expand Up @@ -9,7 +9,7 @@ const Google: ModelProviderCard = {
displayName: 'PaLM 2 Chat (Legacy)',
id: 'chat-bison-001',
maxOutput: 1024,
tokens: 4096 + 1024,
// tokens: 4096 + 1024, // none tokens test
},
{
description: 'A legacy model that understands text and generates text as an output',
Expand Down
2 changes: 1 addition & 1 deletion src/migrations/FromV3ToV4/fixtures/ollama-output-v4.json
Expand Up @@ -48,7 +48,7 @@
"displayName": "LLaVA 7B",
"enabled": true,
"id": "llava",
"tokens": 4000,
"tokens": 4096,
"vision": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/store/user/slices/settings/actions/llm.test.ts
Expand Up @@ -109,7 +109,7 @@ describe('LLMSettingsSliceAction', () => {
displayName: 'LLaVA 7B',
enabled: true,
id: 'llava',
tokens: 4000,
tokens: 4096,
vision: true,
});
});
Expand Down

0 comments on commit c71114c

Please sign in to comment.