as-rn-ai-chat-turbo

0.0.14 • Public • Published

AS React Native AI Chat Bot Turbo 4o

Now uses Open AI gpt-4o How cool is that!!

Easy Plug and Play Chat Component which uses OPEN AI turbo APIs behind the scenes.

Installation

npm install as-rn-ai-chat-turbo
  • Just needs open AI api key for gpt-4o from Open AI api.
  • Now able to choose your gpt model available

Latest release

  • Open AI gpt-4o now by default.
  • Ability to choose your own gpt model(gpt-4o, gpt-4-turbo, gpt-4, gpt-3.5-turbo,etc)
  • Gracefully handles errors. Shows an error message and passes on the error to client code.

Future releases

  • This is just a basic version. More updates to come soon related to customisation and more control on your ai model.

Example usage

import React from 'react';
import { apiKey } from './src/constants';
import { SafeAreaView } from 'react-native';
import  AIChat from 'as-rn-ai-chat-turbo'

const App = () => {
  return <SafeAreaView style={ {flex: 1} }>
      <AIChat
      apiToken={apiKey}
      gptModel= 'gpt-4o'
      userBubbleColor='orange'
      aiBubbleColor='green'
      onError={(error) => console.log("Reporting chat error:", error)}
      />
    </SafeAreaView>
};

export default App;

Props

  • apiToken (String) - open AI api key for gpt-4o or whatever model name you provide from Open AI api. This is very important as it won't work without it.
  • gptModel (String) - Choose from one of the gpt model constants. If you don't provide one, it uses gpt-4o by default. Make sure you've the same model enabled on your account at https://platform.openai.com
  • userBubbleColor (String) - set the user bubble color. Has a default color of blue
  • aiBubbleColor (String) - set the user bubble color. Has a default color of light grey
  • userName (String) - set the user name
  • onError (Function) - Callback function to handle errors that occur within the component. When an error occurs during component execution, this function will be called with the error object as its parameter. The error object contains information about the error that occurred.

/as-rn-ai-chat-turbo/

    Package Sidebar

    Install

    npm i as-rn-ai-chat-turbo

    Weekly Downloads

    31

    Version

    0.0.14

    License

    ISC

    Unpacked Size

    74 kB

    Total Files

    8

    Last publish

    Collaborators

    • abdur_developer