SDKs

Elixir

Padrões idiomáticos de Elixir para Phoenix e OTP

Use Req (o cliente HTTP moderno do Elixir) — construído sobre Finch, vem com retries e pooling de conexões.

mix.exs

defp deps do
  [
    {:req, "~> 0.5"}
  ]
end

Configurar

defmodule Thunderbit do
  @api "https://openapi.thunderbit.com/openapi/v1"

  defp client do
    Req.new(
      base_url: @api,
      auth: {:bearer, System.fetch_env!("THUNDERBIT_API_KEY")},
      receive_timeout: 60_000
    )
  end
end

Distill de uma página

def distill(url) do
  client()
  |> Req.post!(url: "/distill", json: %{url: url})
  |> Map.fetch!(:body)
  |> get_in(["data", "markdown"])
end

Extract de dados estruturados

def extract(url, schema) do
  client()
  |> Req.post!(url: "/extract", json: %{url: url, schema: schema})
  |> Map.fetch!(:body)
  |> Map.fetch!("data")
end

extract("https://example.com/product/iphone-15-pro", %{
  type: "object",
  properties: %{
    name: %{type: "string"},
    price: %{type: "number"}
  },
  required: ["name", "price"]
})

Batch com Oban

Para fan-out assíncrono, enfileire as submissões com Oban e deixe seu endpoint Phoenix lidar com o callback do Webhook:

def submit_batch(urls) do
  client()
  |> Req.post!(url: "/batch/distill", json: %{
    urls: urls,
    webhook: %{
      url: "#{MyApp.Endpoint.url()}/webhooks/distill",
      secret: System.fetch_env!("WEBHOOK_SECRET")
    }
  })
end

Verifique a assinatura do Webhook no seu controller Phoenix — veja Webhooks.

Um SDK Elixir oficial está em desenvolvimento — volte em breve.