Commit fb27894 1 parent 34db69b commit fb27894 Copy full SHA for fb27894
File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -980,7 +980,6 @@ class OVModelForCausalLMIntegrationTest(unittest.TestCase):
980
980
if is_transformers_version (">=" , "4.40.0" ):
981
981
SUPPORTED_ARCHITECTURES += (
982
982
"gemma" ,
983
- "gemma2" ,
984
983
"olmo" ,
985
984
"stablelm" ,
986
985
"starcoder2" ,
@@ -990,14 +989,20 @@ class OVModelForCausalLMIntegrationTest(unittest.TestCase):
990
989
"qwen2" ,
991
990
"qwen2-moe" ,
992
991
"arctic" ,
993
- "exaone" ,
994
- "mistral-nemo" ,
995
- "minicpm3" ,
996
- "glm" ,
997
- "granite" ,
998
- "granite-moe" ,
999
992
)
1000
993
994
+ if is_transformers_version (">=" , "4.41.0" ):
995
+ SUPPORTED_ARCHITECTURES += ("phi3" ,)
996
+
997
+ if is_transformers_version (">=" , "4.43.0" ):
998
+ SUPPORTED_ARCHITECTURES += ("gemma2" , "exaone" )
999
+
1000
+ if is_transformers_version (">=" , "4.44.0" ):
1001
+ SUPPORTED_ARCHITECTURES += ("granite" , "granite-moe" )
1002
+
1003
+ if is_transformers_version (">=" , "4.46.0" ):
1004
+ SUPPORTED_ARCHITECTURES += ("glm" , "mistral-nemo" , "minicpm3" )
1005
+
1001
1006
# gptq and awq install disabled for windows test environment
1002
1007
if platform .system () != "Windows" :
1003
1008
SUPPORTED_ARCHITECTURES += ("opt_gptq" ,)
You can’t perform that action at this time.
0 commit comments