name property

String name

Returns the actual name passed to Functions.

Functionsに渡される実際の名前を返します。

Implementation

String get name {
  switch (this) {
    case OpenAIChatGPTModel.gpt35Turbo:
      return "gpt-3.5-turbo";
  }
}