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:9c479751c0805b45ce76a17491cc7b1b4c87a95d35e5ac93b5d5d0ac4b974284
# 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: [LiterLlm.ModerationResult.t()]
}
defstruct id: nil,
model: nil,
results: []
end