We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee100d commit 5b46f0bCopy full SHA for 5b46f0b
src/puter-js/src/modules/AI.js
@@ -417,8 +417,9 @@ class AI{
417
// google/
418
// deepseek/
419
// x-ai/
420
+ // qwen/
421
// prepend it with openrouter:
- if ( requestParams.model.startsWith('meta-llama/') || requestParams.model.startsWith('google/') || requestParams.model.startsWith('deepseek/') || requestParams.model.startsWith('x-ai/') ) {
422
+ if ( requestParams.model.startsWith('meta-llama/') || requestParams.model.startsWith('google/') || requestParams.model.startsWith('deepseek/') || requestParams.model.startsWith('x-ai/') || requestParams.model.startsWith('qwen/') ) {
423
requestParams.model = 'openrouter:' + requestParams.model;
424
}
425
0 commit comments