Current section

Files

Jump to
liter_llm lib liter_llm stop_sequence.ex
Raw

lib/liter_llm/stop_sequence.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:d954bd0ab4851664242c5d5bf76bcc6f4c84e06fe6cd42e3effba8a0bb5c3dcf
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule LiterLlm.StopSequence do
@moduledoc "Stop sequence(s) that cause the model to stop generating."
@typedoc "Stop sequence(s) that cause the model to stop generating."
@type t :: term()
@typedoc "Single stop sequence."
@type single :: %{type: :single, value: String.t()}
@typedoc "Multiple stop sequences."
@type multiple :: %{type: :multiple, value: [String.t()]}
end