Get an API key
Issue a free key for the Ponkotsu Lab APIs, right here. Use it to connect to llm.ponkotsu-lab.net.
What a free key gets you: the Ponkotsu LLM (model: ponkotsu) at up to 3 requests/min.
Using your key
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://llm.ponkotsu-lab.net",
apiKey: "your issued key",
});
const res = await client.chat.completions.create({
model: "ponkotsu",
messages: [{ role: "user", content: "Hello" }],
}); Issuance is limited to 2 keys per day. Lost it? Just issue another (revoking old keys is manual for now — ping me on X and I'll clean up).