@@ -137,7 +137,7 @@ class Options:
137
137
List of models to load at startup. Only relevant with ModelControlMode.EXPLICIT.
138
138
See :c:func:`TRITONSERVER_ServerOptionsSetStartupModel`
139
139
140
- strict_model_config : bool, default True
140
+ strict_model_config : bool, default False
141
141
Enable or disable strict model configuration.
142
142
See :c:func:`TRITONSERVER_ServerOptionsSetStrictModelConfig`
143
143
@@ -275,7 +275,7 @@ class Options:
275
275
server_id : str = "triton"
276
276
model_control_mode : ModelControlMode = ModelControlMode .NONE
277
277
startup_models : list [str ] = field (default_factory = list [str ])
278
- strict_model_config : bool = True
278
+ strict_model_config : bool = False
279
279
280
280
rate_limiter_mode : RateLimitMode = RateLimitMode .OFF
281
281
rate_limiter_resources : list [RateLimiterResource ] = field (
@@ -507,7 +507,7 @@ def __init__(
507
507
508
508
Options(server_id='triton', model_repository='/workspace/models',
509
509
model_control_mode=<TRITONSERVER_ModelControlMode.NONE: 0>,
510
- startup_models=[], strict_model_config=True ,
510
+ startup_models=[], strict_model_config=False ,
511
511
rate_limiter_mode=<TRITONSERVER_RateLimitMode.OFF: 0>,
512
512
rate_limiter_resources=[], pinned_memory_pool_size=268435456,
513
513
cuda_memory_pool_sizes={}, cache_config={},
0 commit comments