-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create model group automatically with first model version #1063
create model group automatically with first model version #1063
Conversation
public static final String MODEL_FORMAT_FIELD = "model_format"; //mandatory | ||
public static final String MODEL_STATE_FIELD = "model_state"; | ||
public static final String MODEL_CONTENT_SIZE_IN_BYTES_FIELD = "model_content_size_in_bytes"; | ||
public static final String MODEL_CONTENT_HASH_VALUE_FIELD = "model_content_hash_value"; //mandatory | ||
public static final String MODEL_CONFIG_FIELD = "model_config"; //mandatory | ||
public static final String TOTAL_CHUNKS_FIELD = "total_chunks"; //mandatory | ||
public static final String MODEL_GROUP_ID_FIELD = "model_group_id"; //mandatory | ||
public static final String MODEL_GROUP_ID_FIELD = "model_group_id"; //optional | ||
public static final String BACKEND_ROLES_FIELD = "backend_roles"; //optional |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see all access control fields are optional now. Per my understanding, if user doesn't provide any of these, the model group will be private, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes. It will be created as private
Signed-off-by: Bhavana Ramaram <[email protected]>
Signed-off-by: Bhavana Ramaram <[email protected]>
Signed-off-by: Bhavana Ramaram <[email protected]>
Signed-off-by: Bhavana Ramaram <[email protected]>
f6d5764
to
4f49ec1
Compare
Signed-off-by: Bhavana Ramaram <[email protected]>
…-project#1063) * create model group automatically with first model version Signed-off-by: Bhavana Ramaram <[email protected]>
* create model group automatically with first model version Signed-off-by: Bhavana Ramaram <[email protected]>
Description
create model group automatically with first model version
Issues Resolved
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.