You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Nullable
@Size(min = 1, max = 48)
@Pattern(regexp = "[a-zA-Z][a-zA-Z0-9_]*")
@Schema(description = "Model name used to generate the embeddings.")
@JsonInclude(JsonInclude.Include.NON_NULL)
String sourceModel) {}
Why does it limit the characters and the length ?
it looks like this has been copy - pasted into many places:
@Size(min = 1, max = 48)
@Pattern(regexp = "[a-zA-Z][a-zA-Z0-9_]*")
This ticket should also check all the places this is present to see if it should be there.
The text was updated successfully, but these errors were encountered:
we can remove it from the sourceModel param, and check other places where this size and reg exp pattern are used . Remove any we obviously know should not be there.
This is on the options for create index
Why does it limit the characters and the length ?
it looks like this has been copy - pasted into many places:
This ticket should also check all the places this is present to see if it should be there.
The text was updated successfully, but these errors were encountered: