🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@bytebot/sdk

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@bytebot/sdk

[![npm shield](https://img.shields.io/npm/v/@bytebot/sdk)](https://www.npmjs.com/package/@bytebot/sdk) [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern)

0.0.5
unpublished
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Bytebot Node Library

npm shield fern shield

The Bytebot Node.js library provides access to the Bytebot API from JavaScript/TypeScript.

API Docs

You can find Bytebot's complete API docs at docs.bytebot.ai.

Installation

npm install --save @bytebot/sdk
# or
yarn add @bytebot/sdk

Usage

import { BytebotClient } from '@bytebot/sdk';
import puppeteer from 'puppeteer';

const bytebot = new BytebotClient({
  apiKey: 'BYTEBOT_API_KEY',
});


(async () => {
  // Launch the browser
  const browser = await puppeteer.launch();

  // Create a page
  const page = await browser.newPage();

  // Go to your site
  await page.goto('<URL>');

  await bytebot.prompt("Extract the names and locations from the table", page);

  ...


})();

Alpha status

This SDK is in alpha, and there will be breaking changes between versions without a major version update.

FAQs

Package last updated on 19 Feb 2024

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