Current section

Files

Jump to
oapi_open_ai test mocks truncation.ex
Raw

test/mocks/truncation.ex

defmodule OpenAi.Mocks.Truncation do
@moduledoc """
Mocks for truncation related responses.
"""
def object(data) do
%{
last_messages: 10,
type: "auto"
}
|> Map.merge(data)
end
end