1.1.0 • Published 1 year ago

promptmaker v1.1.0

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

promptmaker

Generate random artistic text prompts for use with generative AI models

Data comes from the CLIP Interrogator

Installation

npm install promptmaker

Usage

Call the function without arguments to get a random prompt:

promptmaker();
// -> graffiti art of ocean waves mannerism by Georg Schrimpf, distant expression, eyes closed or not visible

Specify an optional medium, subject, artist, movement, or flavors:

promptmaker({
  medium: "graffiti art",
  subject: "ocean waves",
});
// -> graffiti art of ocean waves mannerism by Georg Schrimpf, distant expression, eyes closed or not visible

API

promptmaker([options])

Options, all of which default to random if unspecified:

  • medium String
  • subject String
  • artist String
  • movement String
  • flavors Array of Strings

Returns a string in the format:

{medium} of {subject} {movement} by {artist}, {flavors}

CLI

npx promptmaker <optional-subject>

Tests

npm install
npm test
1.1.0

1 year ago

1.0.0

1 year ago