Provider · OpenAI

Linda + OpenAI.

Use Linda with GPT-4o, GPT-5, or o3-mini. Strong tool calling, fast streaming, and the largest model ecosystem.

Recommended models

  • gpt-4o — the workhorse. Great tool calling + multimodal.
  • gpt-5 — pick for complex reasoning + long flows.
  • o3-mini — pick for tight latency + cost.

npm

const linda = new Linda({
  transport: {
    mode: "browser",
    provider: "openai",
    apiKey: import.meta.env.PUBLIC_OPENAI_KEY,
    model: "gpt-4o",
  },
});

Custom baseUrl (Azure OpenAI, LiteLLM, etc.)

new Linda({
  transport: {
    mode: "browser",
    provider: "openai",
    apiKey: process.env.AZURE_OPENAI_KEY!,
    baseUrl: "https://your-resource.openai.azure.com/v1",
    model: "gpt-4o-2024-08-06",
  },
});

Get an API key

From platform.openai.com.

Ship an agent-driven flow this afternoon.

Install Linda, paste a config, and your form turns into an agent that fills its own inputs.