1.0.10 • Published 2 months ago

@generationapi/genapi v1.0.10

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

GenAPI - the fastest and best way to build AI-backed APIs

Introduction

This project provides a framework for quickly and easily building AI-backed API endpoints with LLMs. By leveraging the OpenAPI 3.1.0 specification, the system ensures accurate and context-aware responses, making it an ideal solution for testing and rapid prototyping.

Installation

Prerequisites

  • Node.js (version 16.x or higher recommended)
  • npm (bundled with Node.js) or Yarn

Steps

  1. Clone the repository:
    git clone https://github.com/generationapi/genapi
  2. Navigate to the project directory:
    cd genapi
  3. Install dependencies:
    npm install
    # or, if you're using Yarn:
    yarn install

Usage

Basic Usage

To start processing requests, you need to initialize the GenApi class with your OpenAPI specification, model name, and API key. Here's a simple example:

import GenApi from '@generationapi/genapi';

const openApiSpec = {
  "openapi": "3.1.0",
  "info": {
    "title": "Hello World",
    "version": "1.0.0",
    "description": "Respond with Hello to the name input in a language other than English. Always use a random language."
  },
  "paths": {
    "/hello-world": {
      "post": {
        "tags": [],
        "summary": "Hello World",
        "description": "Respond with Hello to the name input in a language other than English. Always use a random language.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "string",
                    "title": "User Name",
                    "description": "The name of the user to be greeted."
                  }
                }
              },
              "examples": {
                "Request": {
                  "value": {
                    "text": "John"
                  },
                  "summary": "Simple text submission"
                }
              }
            }
          },
          "required": true
        },
        "x-prompt": "Given a text input, respond with 'Hello' followed by the name in a random non-English language. Ensure the output is in the format specified by the `response_schema`.",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "text": {
                      "type": "string"
                    }
                  }
                }
              }
            },
            "description": "Successfully processed the request, returning a structured response from the model."
          },
          "400": {
            "description": "Invalid input, e.g., missing or invalid `modelId` or data."
          },
          "401": {
            "description": "Authentication information is missing or invalid."
          },
          "404": {
            "description": "The specified `modelId` was not found."
          }
        }
      }
    }
  }
};

const modelName = 'model-id'; // "google-gemini, gpt-4, gpt-3.5-turbo, mistral-large-latest, claude-3-sonnet"
const apiKey = 'your-api-key';

const apiProcessor = new GenApi(openApiSpec, modelName, apiKey);

// Example request
const pathName = '/your/api/path';
const method = 'post';
const requestData = {
  "text": "Paul"
};

apiProcessor.processRequest(pathName, method, requestData)
  .then(response => console.log(response))
  .catch(error => console.error(error));

Advanced Configuration

You can customize the request processing by using the beforePromptGeneration and afterResponseParsing hooks:

apiProcessor.beforePromptGeneration((data) => {
  // Modify the request data before generating the prompt
  return modifiedData;
});

apiProcessor.afterResponseParsing((response) => {
  // Process the response data after parsing
  return modifiedResponse;
});

Configuration

The system is highly configurable to suit various use cases. Key configuration options include:

  • Model Name: Choose between different language models like GPT or Gemini based on your needs.
  • API Key: Securely provide your API key for model access.
  • Retry Strategy: Customize the retry logic for handling request failures.

Contributing

We welcome contributions from the community! Please check out our contributing guidelines for more information on how to get involved.

License

This project is licensed under the MIT License. Feel free to use, modify, and distribute the code as per the license terms.

Acknowledgments

  • Contributors and maintainers of langchain
  • OpenAI, Google for the AI models

For more details on usage, configuration, and customization, please refer to the detailed documentation (link to detailed documentation).

1.0.9

2 months ago

1.0.10

2 months ago

1.0.8

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago