Getting started
Nova gives AI teams a sharp launch surface without slowing down the product work. Install the SDK, send a request, and let your release notes stay close to the code.
Install the SDK
Add the Nova client to your app. It runs wherever your existing server logic runs.
npm install @nova-ai/sdk
Make your first request
Create a client with your project key, then send a prompt to your configured model. Keep the call on the server so your key stays private.
import { Nova } from ‘@nova-ai/sdk’
const nova = new Nova({ apiKey: process.env.NOVA_KEY })
const result = await nova.generate({ prompt: ‘Summarize this release.’ })
Next steps
Once you have a request running, add structured outputs, invite your team, and configure the launch pages that explain the product to everyone else.