UNPKG

@inngest/ai

Version:
13 lines 384 B
import { type AiAdapter } from "../adapter.js"; import { OpenAiAiAdapter } from "./openai.js"; export interface GrokAiAdapter extends AiAdapter { /** * Format of the IO for this model */ format: "grok"; "~types": { input: OpenAiAiAdapter["~types"]["input"]; output: OpenAiAiAdapter["~types"]["output"]; }; } //# sourceMappingURL=grok.d.ts.map