diff --git a/lib/ollama.ex b/lib/ollama.ex index 21c071b..69d269c 100644 --- a/lib/ollama.ex +++ b/lib/ollama.ex @@ -367,6 +367,11 @@ defmodule Ollama do type: :string, doc: "Set the expected format of the response (`json`).", ], + raw: [ + type: :boolean, + default: false, + doc: "if true no formatting will be applied to the prompt. You may choose to use the raw parameter if you are specifying a full templated prompt in your request to the API", + ], stream: [ type: {:or, [:boolean, :pid]}, default: false,