diff --git a/lib/open_ai/api.ex b/lib/open_ai/api.ex index 2dc15f4b..97211ad4 100644 --- a/lib/open_ai/api.ex +++ b/lib/open_ai/api.ex @@ -1,4 +1,8 @@ defmodule OpenAI.API do + @moduledoc """ + Low-level HTTP client for the OpenAI API (chat completions, streaming responses, embeddings). + """ + require Logger @spec gpt(OpenAI.Completion.t(), OpenAI.Config.t()) :: {:ok, map()} | {:error, term()}