
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
@lastmileai/lastmileai
Advanced tools
This library provides access to the LastMile AI API from Node.js. The code should reflect the same API endpoints documented here: https://lastmileai.dev/docs/api
This library requires a LastMile AI API Token, which can be obtained from https://lastmileai.dev/settings?page=tokens.
Important note: this library should only be used from a server-side context, where the API key can be securely accessed. Using this library from client-side browser code will expose your private API key!
npm install lastmileai
This library needs to be configured with your API Token (aka API key) obtained above. You can store the API key in an environment variable or alternative secure storage that can be accessed in your server-side code. For example, to initialize the library with the API key loaded from environment variable:
import { LastMile } from "lastmileai";
const lastmile = new LastMile({apiKey: process.env.LASTMILEAI_API_KEY ?? ""});
OpenAI completions are supported out-of the box for ChatGPT and GPT3 models:
const completion = await lastmile.createOpenAICompletion({
completionParams: {
model: "text-davinci-003",
prompt: "Your prompt here",
},
});
const responseText = completion.choices[0]?.text;
const completion = await lastmile.createOpenAIChatCompletion({
completionParams: {
model: "gpt-3.5-turbo",
messages: [
{ role: "user", content: "Your prompt here" },
],
},
});
const responseText = completion.choices[0].message?.content;
If you've tuned any GPT3-based custom models in LastMile or by using this library, you can easily perform inference/completions against the context of their associated datasets (stored in the model's embeddings):
const model = await lastmile.readModel("Your model ID");
const completion = await lastmile.createOpenAICompletion({
completionParams: {
model: "text-davinci-003",
prompt: "Your prompt here",
},
embeddingCollectionId: model.embeddingCollections[0]?.id,
});
const responseText = completion.choices[0]?.text;
FAQs
Node.js library for LastMile AI API
The npm package @lastmileai/lastmileai receives a total of 0 weekly downloads. As such, @lastmileai/lastmileai popularity was classified as not popular.
We found that @lastmileai/lastmileai demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.