Projects

No projects yet. Create one.

Create project

SDKView on npm ↗

npm install @dartix-software-solutions/ai-gate

import { AIClient } from "@dartix-software-solutions/ai-gate";

const ai = new AIClient({
  apiKey: process.env.AI_API_KEY
});

const result = await ai.generate({
  prompt: "Write a product description",
  context: { productName: "Nike Air Max" }
});