Skip to content

Nevo-AI is an advanced AI system powered by LLaMa, developed by Akbarrdev. This package allows you to send requests to the AI API endpoint that requires an apikey and prompt.

License

Notifications You must be signed in to change notification settings

akbarrdev/Nevo-AI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nevo-AI

Nevo-AI is an advanced AI system powered by LLaMa, developed by Akbarrdev. This package allows you to send requests to the AI API endpoint that requires an apikey and prompt.

Features

  • Easy to use
  • Uses fetch for HTTP requests

Installation

You can install this package via npm:

npm install nevo-ai

Usage

Here is an example of how to use the Nevo-AI package:

const nevo = require('nevo-ai');
//or import nevo from 'nevo-ai'

const apiKey = 'YOUR_API_KEY';
const prompt = 'Tell me a joke.';

nevo.ask({ apiKey, prompt })
    .then(response => {
        console.log(response);
    })
    .catch(error => {
        console.error('Error:', error);
    });

TypeScript

If you are using TypeScript, you can import the module as follows:

import nevo from 'nevo-ai';

const apiKey: string = 'YOUR_API_KEY';
const prompt: string = 'Tell me a joke.';

nevo.ask({ apiKey, prompt })
    .then(response => {
        console.log(response);
    })
    .catch(error => {
        console.error('Error:', error);
    });

Contributing

We welcome contributions from everyone. If you would like to contribute, please fork the repository and create a pull request with your changes.

Contribution Steps

  1. Fork this repository
  2. Create a new feature branch (git checkout -b new-feature)
  3. Commit your changes (git commit -am 'Add new feature')
  4. Push to the branch (git push origin new-feature)
  5. Create a new pull request

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contact

If you have any questions or suggestions, please open an issue in this repository or contact me at WhatsApp.

Join Our Communities

Feel free to customize this README further to match any additional details or specifications related to your project. Make sure to replace YOUR_API_KEY with the actual API key you use, and update the contact email address to your actual email.

About

Nevo-AI is an advanced AI system powered by LLaMa, developed by Akbarrdev. This package allows you to send requests to the AI API endpoint that requires an apikey and prompt.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published