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

com.alibaba.dashscope.common.Function Maven / Gradle / Ivy

The newest version!
// Copyright (c) Alibaba, Inc. and its affiliates.
package com.alibaba.dashscope.common;

public enum Function {
  GENERATION("generation"),
  IMAGE_SYNTHESIS("image-synthesis"),
  TEXT_EMBEDDING("text-embedding"),
  MULTIMODAL_EMBEDDING("multimodal-embedding"),
  SPEECH_SYNTHESIZER("SpeechSynthesizer"),
  TRANSCRIPTION("transcription"),
  RECOGNITION("recognition"),
  UNDERSTANDING("understanding"),
  ;

  private final String value;

  private Function(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy