9e1dbfd530
Closes #108
17 lines
352 B
Elixir
17 lines
352 B
Elixir
defmodule OpenAI.Completion do
|
|
@moduledoc false
|
|
|
|
@enforce_keys [:content]
|
|
defstruct content: "",
|
|
temperature: 0.2,
|
|
role: "user",
|
|
model: "gpt-4o-mini"
|
|
|
|
@type t :: %__MODULE__{
|
|
content: String.t(),
|
|
temperature: float(),
|
|
role: String.t(),
|
|
model: String.t()
|
|
}
|
|
end
|