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:ba657952768c5f5d5944344aa80ee8eea5ebdd71e9ac890aa89428c3de49085b
# 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