
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
inflection-ai-sdk-provider
Advanced tools
The **[unofficial Inflection AI provider](https://www.npmjs.com/package/inflection-ai-sdk-provider)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Inflection AI API](https://developers.inflection.ai/).
The unofficial Inflection AI provider for the AI SDK contains language model support for the Inflection AI API.
The Inflection AI provider is available in the inflection-ai-sdk-provider
module on npm. You can install it with
npm i inflection-ai-sdk-provider
You can import the default provider instance inflection
from inflection-ai-sdk-provider
:
import { inflection } from "inflection-ai-sdk-provider";
import { inflection } from "inflection-ai-sdk-provider";
import { generateText } from "ai";
// Basic text generation
const { text } = await generateText({
model: inflection("inflection_3_with_tools"),
prompt: "how can I make quick chicken pho?",
});
// Using tool calls
const { text: weatherText, toolCalls } = await generateText({
model: inflection("inflection_3_with_tools"),
prompt: "what's the weather in San Francisco?",
tools: [
{
type: "function",
name: "get_weather",
description: "Get the current weather in a location",
parameters: {
type: "object",
properties: {
location: {
type: "string",
description: "The city and state, e.g. San Francisco, CA",
},
},
required: ["location"],
},
},
],
});
The following models are supported:
inflection_3_pi
- "the model powering our Pi experience, including a backstory, emotional intelligence, productivity, and safety. It excels in scenarios such as customer support chatbots."inflection_3_productivity
- "the model optimized for following instructions. It is better for tasks requiring JSON output or precise adherence to provided guidelines."inflection_3_with_tools
- Model that supports function calling capabilities, allowing it to interact with external tools and APIs through a structured interface.Model | Text Generation | Streaming | Image Input | Object Generation | Tool Usage | Tool Streaming |
---|---|---|---|---|---|---|
inflection_3_pi | ✓ | ✓ | ✗ | ✓ | ✗ | ✗ |
inflection_3_productivity | ✓ | ✓ | ✗ | ✓ | ✗ | ✗ |
inflection_3_with_tools | ✓ | ✓ | ✗ | ✓ | ✓ | ✓ |
The inflection_3_with_tools
model supports function calling through the standard AI SDK tools interface. You can provide a list of tools when making requests, and the model can choose to call these tools as part of its response. Both streaming and non-streaming tool calls are supported.
All Inflection models support structured object generation through the generateObject
function. This allows you to generate JSON objects that conform to a specific schema, arrays of objects, or enum values for classification tasks.
import { inflection, generateObject } from "inflection-ai-sdk-provider";
import { z } from "zod";
// Define a schema for the object you want to generate
const recipeSchema = z.object({
recipe: z.object({
name: z.string(),
ingredients: z.array(
z.object({
name: z.string(),
amount: z.string(),
})
),
steps: z.array(z.string()),
}),
});
// Generate a structured recipe object
const { object } = await generateObject({
model: inflection("inflection_3_productivity"),
schema: recipeSchema,
prompt: [
{
role: "user",
content: [{ type: "text", text: "Generate a lasagna recipe" }],
},
],
});
// object will be typed and validated according to the schema
console.log(object.recipe.name);
console.log(object.recipe.ingredients);
console.log(object.recipe.steps);
import { inflection, generateObject } from "inflection-ai-sdk-provider";
import { z } from "zod";
const heroSchema = z.object({
name: z.string(),
class: z.string().describe("Character class, e.g. warrior, mage, or thief."),
description: z.string(),
});
const { object: heroes } = await generateObject({
model: inflection("inflection_3_pi"),
output: "array",
schema: heroSchema,
prompt: [
{
role: "user",
content: [
{
type: "text",
text: "Generate 3 hero descriptions for a fantasy game",
},
],
},
],
});
// heroes will be an array of objects matching the schema
heroes.forEach((hero) => {
console.log(`${hero.name} - ${hero.class}`);
console.log(hero.description);
});
import { inflection, generateObject } from "inflection-ai-sdk-provider";
const { object: genre } = await generateObject({
model: inflection("inflection_3_with_tools"),
output: "enum",
enum: ["action", "comedy", "drama", "horror", "sci-fi"],
prompt: [
{
role: "user",
content: [
{
type: "text",
text: 'Classify the genre of this movie plot: "A group of astronauts travel through a wormhole in search of a new habitable planet for humanity."',
},
],
},
],
});
// genre will be one of the provided enum values
console.log(`Movie genre: ${genre}`);
When you don't need to validate the structure of the generated JSON:
import { inflection, generateObject } from "inflection-ai-sdk-provider";
const { object } = await generateObject({
model: inflection("inflection_3_productivity"),
output: "no-schema",
prompt: [
{
role: "user",
content: [{ type: "text", text: "Generate a simple recipe" }],
},
],
});
// object will be the parsed JSON without validation
console.log(object);
Please check out Inflection AI's API Documentation for more information.
You can find the source code for this provider here on GitHub.
FAQs
The **[unofficial Inflection AI provider](https://www.npmjs.com/package/inflection-ai-sdk-provider)** for the [AI SDK](https://sdk.vercel.ai/docs) contains language model support for the [Inflection AI API](https://developers.inflection.ai/).
The npm package inflection-ai-sdk-provider receives a total of 2 weekly downloads. As such, inflection-ai-sdk-provider popularity was classified as not popular.
We found that inflection-ai-sdk-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.