Current section
Files
Jump to
Current section
Files
lib/xberg/page_classification_config.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b2c29ab80fb9cdb8c5190a7808ad862ad890f416ad887092447b282a5b1b69e0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.PageClassificationConfig do
@moduledoc "Configuration for the page-classification post-processor."
@typedoc "Configuration for the page-classification post-processor."
@type t :: %__MODULE__{
prompt_template: String.t() | nil,
labels: [String.t()],
multi_label: boolean(),
llm: Xberg.LlmConfig.t()
}
defstruct prompt_template: nil,
labels: [],
multi_label: false,
llm: nil
end