@shuddho11288/llama-api
v1.1.0
Published
A Node.js library for interacting with the Llama API
Downloads
3
Maintainers
Readme
Using the Llama API
Introduction
Llama is an API that generates predictions based on given prompts. This document provides guidance on how to use the Llama API.
Installation
To use the Llama API, you'll need Node.js installed on your system.
- Install Node.js from nodejs.org.
- Create a new directory for your project and navigate into it using the terminal.
- Initialize a new Node.js project using
npm init -y
. - Install Llama API package using
npm install git+https://github.com/shuddho11288/llama-api.git
.
Usage
Follow these steps to use the Llama API:
- Import the Llama API package into your project.
- Initialize the
llama
function by calling it with your desired prompt. - The function returns a promise with the predictions generated by Llama.
Here's an example code snippet:
const { llama } = require('@shuddho11288/llama-api');
// Example usage
llama('Make me a for loop in assembly').then(data=>{
console.log(data)
})