
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
@arizeai/arize-client
Advanced tools
This package provides a TypeScript client for the Arize AX REST API. It is still under active development and is subject to change.
# or yarn, pnpm, bun, etc...
npm install @arizeai/arize-client
The client will automatically read environment variables from your environment, if available.
The following environment variables are used:
ARIZE_API_KEY - The API key to use for authentication.ARIZE_BASE_URL - The base URL of the Arize AX API.Alternatively, you can pass configuration options to the client directly, and they will be prioritized over environment variables and default values.
The @arizeai/arize-client package allows you to create and manage datasets.
You can create a dataset by providing a spaceId, name, and array of examples (each containing at least one property). There are a few examples below, check out our docs for full documentation.
import { createDataset } from "@arizeai/arize-client/datasets";
const dataset = await createDataset({
name: "my-dataset",
spaceId: "space-id",
examples: [
{
question: "What is 2 + 2?",
answer: 4,
topic: "math",
},
],
});
The @arizeai/arize-client package allows you to create and manage experiments.
You can list experiment runs by providing an experimentId and an optional limit of experiment runs to return. There are a few examples below, check out our docs for full documentation.
import { listExperimentRuns } from "@arizeai/arize-client/experiments";
const experimentRuns = await listExperimentRuns({
experimentId: "experiment-id",
});
It is recommended to use the methods in this package. If more control is desired, you can use the client directly. The client provides a type-safe fetch for the entire Arize AX REST API.
import { createClient } from "@arizeai/arize-client";
const client = createClient();
// Get all datasets
const response = await client.GET("/v2/datasets");
FAQs
A Typescript client for the Arize AX API
The npm package @arizeai/arize-client receives a total of 0 weekly downloads. As such, @arizeai/arize-client popularity was classified as not popular.
We found that @arizeai/arize-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.

Security News
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.