com.microsoft.semantickernel.aiservices.google.chatcompletion.GeminiRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantickernel-aiservices-google Show documentation
Show all versions of semantickernel-aiservices-google Show documentation
Google services for Semantic Kernel
// 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