Current section

Files

Jump to
liter_llm lib liter_llm moderation_response.ex
Raw

lib/liter_llm/moderation_response.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4685b97575f1ddb0a83554a97b65aa5936283420ed37f567b82618c4e3de7d0d
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.ModerationResponse do
@moduledoc "Response from the moderation endpoint."
@typedoc "Response from the moderation endpoint."
@type t :: %__MODULE__{
id: String.t() | nil,
model: String.t() | nil,
results: [map()]
}
defstruct id: nil,
model: nil,
results: []
end