npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dalle-node

v1.0.8

Published

Use DallE with Nodejs

Downloads

1,172

Readme

Setup

  1. Go to https://openai.com/dall-e-2/
  2. Create a OpenAI Account
  3. Go to https://labs.openai.com/
  4. Open the Network Tab in Developer Tools
  5. Type a prompt and press "Generate"
  6. Look for fetch to https://labs.openai.com/api/labs/tasks
  7. In the request header look for authorization then get the Bearer Token

Usage

npm install dalle-node
import { Dalle } from "dalle-node";

const dalle = new Dalle("sess-xxxxxxxxxxxxxxxxxxxxxxxxx"); // Bearer Token 

(async () => {
  const generations = await dalle.generate("a cat driving a car");

  console.log(generations)
})();
[
  {
    id: 'generation-sCnERSYDPP0Zu14fsdXEcKmL',
    object: 'generation',
    created: 1553332711,
    generation_type: 'ImageGeneration',
    generation: {
      image_path: 'https://openailabsprodscus.blob.core.windows.net/private/user-hadpVzldsfs28CwvEZYMUT/generations/generation...'
    },
    task_id: 'task-nERkiKsdjVCSZ50yD69qewID',
    prompt_id: 'prompt-2CtaLQsgUbJHHDoJQy9Lul3T',
    is_public: false
  },
  // 3 more ... 
]

Functions

constructor

import { Dalle } from "dalle-node";

const dalle = new Dalle("sess-xxxxxxxxxxxxxxxxxxxxxxxxx"); // Bearer Token 

generate(prompt: string)

Generate Dall-e images using the prompt passed in.

const generations = await dalle.generate("a cat driving a car");

Returns an array of generations.

list({ limit: number, fromTs: number })

Get previous tasks.

const last10Runs= await dalle.list({ limit: 10 });
const allRunsAfterTimestamp = await dalle.list({ fromTs: 1553456789 });

Returns an array of tasks. Note - what generate() returns is consider a single task. Each image inside a task is a "generation". The objects in the returned array will have a prompt property, a generations array, as well as other properties.

getTask(taskId: string)

const task = await dalle.getTask("task-nERkiKsdjVCasdyD69qewID");

Returns a task object.

getCredits()

const creditsSummary = await dalle.getCredits();
const totalCreditsLeft = creditsSummary.aggregate_credits;

Returns an object with the following properties.

{
  "aggregate_credits": 180,
  "next_grant_ts": 123456789,
  "breakdown": {
    "free": 0,
    "grant_beta_tester": 65,
    "paid_dalle_15_115": 115
  },
  "object": "credit_summary"
}

To get the date + time that the free credits will refresh:

const credits = await dalle.getCredits()
console.log('Free credits refresh on:', new Date(credits.next_grant_ts * 1000).toLocaleString());

Examples

Nextjs Application

Other languages

Repo for the same thing as Python Package "ezzcodeezzlife/dalle2-in-python"