1.0.3 • Published 11 months ago

gpt-overlord v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

GPT Overlord

Transform OpenAI ChatGPT into a Versatile API Server

Disclaimer: No offense intended. We come in peace, dear AI.

Getting Started

async function main() {
  const overlord = new GPTOverlord({
    apiKey: process.env.OPENAI_API_KEY || "",
    model: "gpt-3.5-turbo",
    temperature: 0,
    schema: {
      status: "success | error",
      data: "..",
    },
  });

  const cities = ["London", "Casablanca", "Cape Town", "Lagos", "Istanbul"];
  const response = await overlord.prompt(
    `Filter the list of cities by those located in Africa:${cities.toString()}`
  );

  console.log(response); // { status: 'success', data: ['Cape Town, Lagos', 'Casablanca'] }
}

Learn more from my medium article

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

12 months ago

0.0.2

12 months ago

0.0.1

12 months ago