Turn prompt engineering into measurable work. Create a project, copy the key, and send one call.
Start with one project for one app or one wrapper.
Use the project key in your code or SDK setup.
Send prompt, output, and modelName to /api/ingest.
await fetch("https://api.agentplasticity.com/api/ingest", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + token,
},
body: JSON.stringify({
prompt,
output,
modelName: "gpt-5.5",
}),
});