yua-one-node
v0.1.1
Published
YUA ONE official Node.js SDK
Readme
YUA ONE Node SDK v1.1.0
Example:
import { YuaClient, chat } from "yua-one";
const client = new YuaClient("YOUR_API_KEY");
const res = await chat(client, { model: "yua-pro", messages: [{ role: "user", content: "Hello!" }] });
console.log(res);
