Skip to content

Commit 1ea626a

Browse files
committed
Remove SSLVerificationMixin from OCIModelConfig
ChatOCIGenAI and the OCI SDK client do not support a verify_ssl kwarg, so exposing the field on the public config surface was misleading. Drop the unused mixin to keep the config honest.
1 parent ff2a57d commit 1ea626a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/nvidia_nat_core/src/nat/llm/oci_llm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@
2727
from nat.data_models.optimizable import OptimizableMixin
2828
from nat.data_models.optimizable import SearchSpace
2929
from nat.data_models.retry_mixin import RetryMixin
30-
from nat.data_models.ssl_verification_mixin import SSLVerificationMixin
3130
from nat.data_models.thinking_mixin import ThinkingMixin
3231

33-
class OCIModelConfig(LLMBaseConfig, RetryMixin, OptimizableMixin, ThinkingMixin, SSLVerificationMixin, name="oci"):
32+
class OCIModelConfig(LLMBaseConfig, RetryMixin, OptimizableMixin, ThinkingMixin, name="oci"):
3433
"""OCI Generative AI LLM provider."""
3534

3635
model_config = ConfigDict(protected_namespaces=(), extra="allow")

0 commit comments

Comments
 (0)