Move model definition into completion struct

This commit is contained in:
Claudio Ortolina
2024-12-29 20:58:09 +00:00
parent c7e1be2f2f
commit 85b403817f
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
defmodule OpenAI.Completion do
defstruct content: "",
temperature: 0.2,
role: "user"
role: "user",
model: "gpt-4o-mini"
end