Deploy any model
on any GPU
with UnieAI Studio.
GenAI models at blazing speed, customize and optimized for your use case, scaled globally with the UnieAI Studio
import OpenAI from "openai";const client = new OpenAI({apiKey: process.env.UNIEAI_API_KEY,baseURL: "https://api.unieai.com/v1"});const response = await client.chat.completions.create({model: "YOUR_CUSTOM_MODEL_ID",messages: [{ role: "user", content: "Hello, how are you?" }]});console.log(response.choices[0].message.content);

