in server/src/main/java/com/epam/aidial/core/server/data/ResourceTypes.java [21:32]
public static ResourceTypes of(String group) {
return switch (group) {
case "files" -> FILE;
case "conversations" -> CONVERSATION;
case "prompts" -> PROMPT;
case "invitations" -> INVITATION;
case "publications" -> PUBLICATION;
case "applications" -> APPLICATION;
case "code_interpreter_session" -> CODE_INTERPRETER_SESSION;
default -> throw new IllegalArgumentException("Unsupported resource type: " + group);
};
}