All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.langchain4j.vertexai.runtime.gemini.RoleMapper Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.vertexai.runtime.gemini;

import dev.langchain4j.data.message.ChatMessageType;

final class RoleMapper {

    private RoleMapper() {
    }

    static String map(ChatMessageType type) {
        return switch (type) {
            case USER -> "user";
            case AI -> "model";
            case TOOL_EXECUTION_RESULT -> null;
            default -> throw new IllegalArgumentException(type + " is not allowed.");
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy