SDK
TypeScript client for the hosted API.
Install
bash
npm install promptimizerts
import { Promptimizer } from "promptimizer";
const client = new Promptimizer({
apiKey: process.env.PROMPTIMIZER_API_KEY,
});
const res = await client.chat.completions.create({
messages: [{ role: "user", content: "What is 17 * 24?" }],
});