1.0.2 • Published 1 year ago

aikey v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago
  • Open the terminal and run the following commands
npm install aikey

Importing

ESM:

import OpenAITokenGen from "aikey";

CommonJS

async function example() {
  // To use ESM in CommonJS, you can use a dynamic import
  const { OpenAITokenGen } = await import('aikey')

  const generator = new OpenAITokenGen();

  const Access_Token = await generator.login("OpenAI email", "OpenAI password")
  console.log(Access_Token);
}

Print the Access Token

import OpenAITokenGen from "aikey";

  const generator = new OpenAITokenGen();

  const Access_Token = await generator.login("OpenAI email", "OpenAI password")
  console.log(Access_Token);

Use it with ChatGPT ( ChatGPTUnofficialProxyAPI )

import { ChatGPTUnofficialProxyAPI } from 'chatgpt';
import OpenAITokenGen from 'aikey';

async function ChatGPT() {
  const generator = new OpenAITokenGen();
  const api = new ChatGPTUnofficialProxyAPI({
    accessToken: await generator.login("OpenAI email", "OpenAI password");
  })

  const response = await api.sendMessage('Hello World!')
  console.log(response.text)
}
1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago