Steps

Present ordered instructions in clear, numbered steps so readers can follow a process from start to finish.

How to use

How to use

How to use

In the canvas text editor, type “/steps_cms ” and choose Steps_CMS from the insert menu.

1

Create a Project

Sign in to the NovaAI Dashboard and create your first project. Every API request is associated with a project, allowing you to manage API keys, monitor usage, and configure billing independently. After creating a project, generate a new API key from the API Keys section.

1

Create a Project

Sign in to the NovaAI Dashboard and create your first project. Every API request is associated with a project, allowing you to manage API keys, monitor usage, and configure billing independently. After creating a project, generate a new API key from the API Keys section.

2

Install the SDK

Install the official NovaAI SDK using your preferred package manager.

npm install @novaai/sdk
2

Install the SDK

Install the official NovaAI SDK using your preferred package manager.

npm install @novaai/sdk
3

Configure Your API Key

Store your API key as an environment variable instead of hardcoding it into your application.

NOVA_API_KEY=your_api_key_here
3

Configure Your API Key

Store your API key as an environment variable instead of hardcoding it into your application.

NOVA_API_KEY=your_api_key_here
4

Send Your First Request

Create a new file and initialize the NovaAI client.

import { NovaAI } from "@novaai/sdk";
 
const client = new NovaAI({
apiKey: process.env.NOVA_API_KEY,
});
 
const response = await client.chat.create({
model: "nova-chat-4",
messages: [
{
role: "user",
content: "Explain what an API is in one sentence."
}
]
});
 
console.log(response.output);

If the request is successful, the API returns a structured response containing the generated output and metadata.

4

Send Your First Request

Create a new file and initialize the NovaAI client.

import { NovaAI } from "@novaai/sdk";
 
const client = new NovaAI({
apiKey: process.env.NOVA_API_KEY,
});
 
const response = await client.chat.create({
model: "nova-chat-4",
messages: [
{
role: "user",
content: "Explain what an API is in one sentence."
}
]
});
 
console.log(response.output);

If the request is successful, the API returns a structured response containing the generated output and metadata.

Was this helpful?

Was this helpful?

Create a free website with Framer, the website builder loved by startups, designers and agencies.