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

com.microsoft.semantickernel.aiservices.google.chatcompletion.GeminiRole Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.aiservices.google.chatcompletion;

public enum GeminiRole {
    /**
     * A user message is a message generated by the user.
     */
    USER("user"),
    /**
     * A model message is a message generated by the model.
     */
    MODEL("model");

    private final String role;

    private GeminiRole(String role) {
        this.role = role;
    }

    @Override
    public String toString() {
        return role;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy