import StateSet from "stateset-node";async function createAttribute() { try { const stateset = new StateSet({ apiKey: process.env.STATESET_API_KEY });const attribute = await stateset.attributes.create({ name: "Confident", description: "We assert the superiority of our product based on its unique properties and its research support. This authoritative stance is balanced with an approachable and informative manner.", value: 15, agentId: "my-agent-id",});console.log("Attribute created:", attribute); } catch (error) { console.error("Error creating attribute:", error); }}createAttribute();