DEVELOPERS · PLAYGROUND
TEST BEFORE YOU DEPLOY.
A professional environment for probing capabilities, routing modes and parameters before wiring them into production workflows.
Request
auto → intellex selects the resource
Response
Run a request to see the response.
Generated API code
const res = await fetch("https://api.intellex.ai/v1/generate", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.INTELLEX_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
capability: "language",
routing: "auto",
model: "auto",
temperature: 0.7,
max_tokens: 1024,
input: "Summarize the state of solid-state battery research in three bullets.",
}),
});
const data = await res.json();Playground is a demo — requests are simulated locally