DocsIntroduction

Inputron

Inputron is a powerful package designed to enhance user input experiences in web applications using Generative AI. It provides a set of customizable building blocks for react/nextjs forms that can be easily integrated into your projects to improve users interactions.

Features

  • Customizable Components: Easily tailor the appearance and behavior of input components to fit your needs.
  • Enhanced User Experience: Improve the usability and accessibility of your forms.
  • Seamless Integration: Quickly integrate Inputron into your existing projects with minimal effort.

Use cases

Inputron provides developers with innovative capabilities that were previously unavailable, unlocking limitless opportunities and diverse use cases. Here are a few examples:

  • Multi language forms: Inputron’s Smart AI Fields enable the creation of multilingual forms by dynamically translating form fields and labels based on Developer’s prompts
  • Personalized forms: Inputron offers the capability to analyse user input in real time and provide immediate, context-sensitive feedback. By leveraging AI, Inputron can validate entries, offer suggestions, or highlight potential errors to ensure data accuracy and improve the user’s experience.
  • Dynamic forms: Inputron creates dynamic forms without a backend database, using AI-powered fields that adapt form structure in real time based on user input and the developer’s design.

Installation

To install Inputron, use npm or yarn:

npm install @revivesoft/inputron
 

or

yarn add @revivesoft/inputron

You must obtain an API Key and Client ID from (https://www.inputron.com)

Edit your .env variables to include the API Key and Client ID

INPUTRON_API_KEY=ENTER KEY DETAILS HERE
INPUTRON_ENGINE_API_ENDPOINT=https://api.inputron.com
INPUTRON_CLIENT_ID=ENTER YOUR CLIENT ID
 
/**
 Next two configs are required only if your inputron plan requires you to use your own AI keys. 
 If you instead signed up for full service plans, then the AI key is provided by Inputron 
 and you do not need to include anything here. Currentlym only openai and gemini is supported.
*/
 
MODEL_PROVIDER_NAME=ENTER NAME OF THE PROVIDER (allowed values =  openai or gemini)
MODEL_PROVIDER_API_KEY=THE API KEY OF THE PROVIDER

If your inputron plan requires you to use your own AI keys, each API request must include a valid provider object. The MODEL_PROVIDER_NAME and MODEL_PROVIDER_API_KEY that is included in the config above automatically appends the required header for the component requests.

{ 
  provider: {
      name: <name of the provider (only support openai or gemini)>, 
      key: <Provider API key - can be obtained directly from the provider>
  } 
} 

Instructions on obtaining OpenAI API keys - https://platform.openai.com/docs/quickstart

Instructions on obtaining Google Gemini API keys - https://ai.google.dev/gemini-api/docs/api-key

Here is an example of how to use the LabelTron component from the Inputron package:

"use client";
import { LabelTron } from "@revivesoft/inputron";
 
const ExampleLabelComponent = () => {
  return (
    <LabelTron
      languages={['es', 'fr', 'ar']}
      icon={{
        className: "h-3 text-pink-500",
        visible: true,
      }}
      interval={2000}
      className="text-md font-bold"
    >
      First Name
    </LabelTron>
  );
};
 
export default ExampleLabelComponent;

Here is an example of how to use the Predictron component from the Inputron package:

"use client";
import { Predictron } from "@revivesoft/inputron";
import React, { useState } from 'react';
 
const ExamplePredictronComponent = () => {
  const [comments, setComments] = useState('');
 
  const handleChange = (value) => {
    setComments(value);
  };
 
  return (
    <Predictron
      name='comments'
      onChange={handleChange}
    />
  );
};
 
export default ExamplePredictronComponent;

Here is an example of how to use the Selectron component from the Inputron package:

"use client";
import { Selectron } from "@revivesoft/inputron";
import React from 'react';
 
const ExampleSelectronComponent = () => {
  return (
    <Selectron
      style=""
      title="Cool places"
      prompt="5 beaches in miami"
    />
  );
};
 
export default ExampleSelectronComponent;

Demonstration

For live examples, please visit our demonstration site