When instantiating the client, you have the option to disable the Thread and Step ingestion APIs that comes with the SDK, like thread.step(). This can be useful when you want to disable this without changing the code.
Copy
import { LiteralClient } from "@literalai/client";const literalAiClient = new LiteralClient({ apiKey: process.env["LITERAL_API_KEY"], disabled: true });