File tree Expand file tree Collapse file tree
python/src/mas/cli/install/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ def configAi(self, silentMode=False) -> None:
100100 # Check MAS version - AiCfg is only supported in MAS 9.2+
101101 mas_channel = self .getParam ("mas_channel" )
102102 is_mas_92_or_later = False
103-
103+
104104 if mas_channel :
105105 try :
106106 # Extract major.minor version (e.g., "9.2" from "9.2.0")
@@ -111,7 +111,7 @@ def configAi(self, silentMode=False) -> None:
111111 is_mas_92_or_later = (major > 9 ) or (major == 9 and minor >= 2 )
112112 except (ValueError , IndexError ):
113113 pass
114-
114+
115115 if is_mas_92_or_later :
116116 # AI Service will be installed - defer AiCfg generation to pipeline
117117 if not silentMode :
@@ -149,7 +149,7 @@ def configAi(self, silentMode=False) -> None:
149149 "If you upgrade to MAS 9.2+ in the future, you can configure AiCfg then." ,
150150 ]
151151 )
152-
152+
153153 self .setParam ("configure_aiassistant" , "none" )
154154 print_formatted_text ("\n ⚠️ AiCfg configuration skipped (requires MAS 9.2+)" )
155155 else :
You can’t perform that action at this time.
0 commit comments