New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@openassistant/assistant

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openassistant/assistant

The AI Assistant Chat UI for OpenAssistant

latest
npmnpm
Version
1.0.0-alpha.0
Version published
Maintainers
2
Created
Source

@openassistant/assistant

An AI Assistant chat UI component for OpenAssistant.

Installation

yarn add @openassistant/assistant
# or
npm install @openassistant/assistant

Usage

import { Assistant, type AssistantOptions } from '@openassistant/assistant';

const config: AssistantOptions = {
  ai: {
    getInstructions: () => 'You are a helpful assistant.',
    tools: {
      // your tools here
    },
  },
};

export function App() {
  return <Assistant options={config} />;
}

Optional xAI provider

  • This package can work with multiple providers via the AI SDK v5.
  • If you intend to use xAI, install the optional peer dependency in your app:
yarn add @ai-sdk/xai
# or
npm install @ai-sdk/xai

Build and bundling notes

  • The package treats @ai-sdk/xai as external and optional.
  • Consumers who use xAI must install @ai-sdk/xai so their bundler can resolve it.

FAQs

Package last updated on 14 Oct 2025

Did you know?

Socket

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.

Install

Related posts