there are two kinds of connectors: standalone and those bound to a specific model. The former uses this API, and the latter uses the Model API. Since they're in two different interfaces, this one is not ambiguous and should not need the word 'standalone' in the definition.
for backwards compatibility, i recommend adding @depricated to create_standalone_connector(), and then invoking create_connector():
there are two kinds of connectors: standalone and those bound to a specific model. The former uses this API, and the latter uses the Model API. Since they're in two different interfaces, this one is not ambiguous and should not need the word 'standalone' in the definition.
for backwards compatibility, i recommend adding
@depricated
tocreate_standalone_connector()
, and then invokingcreate_connector()
:https://github.com/opensearch-project/opensearch-py-ml/blob/ec7e0235d9092cb26fe3d889d8ab7fae28dccefe/opensearch_py_ml/ml_commons/model_connector.py#L17