lib/ittybit/types/kind.rb



# frozen_string_literal: true

module Ittybit
  class Kind
    INGEST = "ingest"
    VIDEO = "video"
    IMAGE = "image"
    AUDIO = "audio"
    CHAPTERS = "chapters"
    SUBTITLES = "subtitles"
    THUMBNAILS = "thumbnails"
    NSFW = "nsfw"
    SPEECH = "speech"
    DESCRIPTION = "description"
    OUTLINE = "outline"
    PROMPT = "prompt"
    WORKFLOW = "workflow"
    CONDITIONS = "conditions"
    HTTP = "http"
  end
end