Socket
Book a DemoInstallSign in
Socket

@thirdweb-dev/nebula

Package Overview
Dependencies
Maintainers
5
Versions
159
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thirdweb-dev/nebula

This package is a thin OpenAPI wrapper for Nebula, our AI agent service.

latest
Source
npmnpm
Version
0.2.90
Version published
Maintainers
5
Created
Source

Nebula OpenAPI TypeScript wrapper

This package is a thin OpenAPI wrapper for Nebula, our AI agent service.

Configuration

import { configure } from "@thirdweb-dev/nebula";

// call this once at the startup of your application
configure({
  secretKey: "<PROJECT_SECRET_KEY>",
});

You can also configure the client with a Thirdweb client instance:

import { configureWithClient } from "@thirdweb-dev/nebula";
import { twClient } from "./thirdwebClient";

// call this once at the startup of your application
configureWithClient(twClient);

Example Usage

import { getModels } from "@thirdweb-dev/nebula";

const models = await getModels();

You can also use this package on a client application (eg. NextJS) by retrieving the Nebula API client first.

import { getNebulaClient, getAgents } from "@thirdweb-dev/nebula";

// retrieve the Nebula auth token
const nebulaClient = getNebulaClient(authToken);

// pass the client inside the methods
const agentsResult = await getAgents({ client: nebulaClient });

This package was autogenerated from the Nebula openAPI spec using @hey-api/openapi-ts

FAQs

Package last updated on 14 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts