Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Fabric

Configuration

import { createConfig, fabric } from "@spandex/core";
 
export const config = createConfig({
  providers: [
    fabric({
      appId: "YOUR_FABRIC_APP_ID",
      // Optional, use if you have negotiated service
      apiKey: "YOUR_FABRIC_API_KEY",
      // Optional, only set if you have a private Fabric deployment
      url: undefined,
    }),
    // ...
  ],
});