npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@brainstack/openai-assistantapi

v1.0.13

Published

A simplified interface for integrating OpenAI's Assistant API into applications.

Downloads

43

Readme

@brainstack/openai-assistantapi

Description

This package simplifies integrating the OpenAI assistant API into your Node.js application. It offers an abstraction layer that streamlines interaction with assistants, empowering you to create powerful conversational experiences.

Features

  • Seamless OpenAI Assistant Integration: Effortlessly incorporate the power of OpenAI's assistant API into your applications.
  • Abstraction Layer: The package provides a well-defined interface that simplifies interaction with assistants, saving you development time and effort.
  • Custom Tool Support: Extend the assistant's functionality by creating custom tools to handle specific tasks within your application.
  • Event Handling: Stay informed about the assistant's status and responses using event listeners.
  • Error Management: The package incorporates error handling to gracefully address potential issues during assistant operation.

Installation

npm install @brainstack/openai-assistantapi

Usage

  1. Import the necessary classes:

    import { OpenAIAssistant } from '@brainstack/openai-assistantapi';
  2. Create an OpenAIAssistant instance:

    const assistant = new OpenAIAssistant(
      {
        apiKey: 'YOUR_OPENAI_API_KEY',
      },
      'YOUR_ASSISTANT_ID'
    );
    • Replace YOUR_OPENAI_API_KEY with your actual OpenAI API key.
    • Obtain your assistantId from the OpenAI Assistant interface.
  3. (Optional) Add custom tools:

    assistant.addTool('myTool', async (args) => {
      // Your tool implementation here
      return 'Tool result';
    });

    Enhance your assistant's capabilities by defining custom tools that handle specific tasks.

  4. Subscribe to events (recommended):

    assistant.on('status_changed', (event) => {
      console.log('Assistant status changed:', event.status);
    });
    
    assistant.on('run_completed', (data) => {
      const response = data?.respmsg?.data?.[0]?.content?.[0]?.text?.value;
      console.log('Assistant response:', response || 'No text found');
    });

    Register event listeners to stay informed about the assistant's status and response to your messages.

  5. Start the assistant:

    async function startAssistant() {
      try {
        console.log('Initializing assistant...');
        await assistant.initThread();
    
        console.log('Creating message...');
        await assistant.addMessage('Can you readfile test.txt?');
    
        console.log('Running assistant...');
        await assistant.run();
    
        console.log('Sending another message...');
        await assistant.addMessage('How are you?');
    
        console.log('Running assistant again...');
        await assistant.run();
      } catch (error) {
        console.error('Assistant error:', error);
      }
    }
    
    startAssistant();

    This code snippet demonstrates how to:

    • Initialize the assistant thread.
    • Send messages to the assistant.
    • Trigger the assistant to process messages and generate responses.
    • Handle potential errors.

API Reference

Events

This package utilizes events to keep you informed about the assistant's status and responses.

Here's a table outlining the available events and their descriptions:

| Event Name | Description | | ----------------- | ----------------------------------------------------------------------------------- | | status_changed | Emitted when the assistant's status changes (e.g., from 'idle' to 'in_progress'). | | run_completed | Emitted when a run has finished, providing the thread ID and response message data. | | required_action | Emitted when the assistant requires additional information to complete a task. | | failed_canceled | Emitted when a run has failed or been canceled. | | in_progress | Emitted when a run is in progress. | | complete | Emitted when a run has completed successfully. |

Subscribing to Events:

To subscribe to events, use the on method of the OpenAIAssistant instance:

assistant.on('status_changed', (event) => {
  console.log('Assistant status changed:', event.status);
});
  • OpenAIAssistant

    • constructor(options: ClientOptions, assistantId: string): Creates a new OpenAI assistant instance.
    • on(eventName: string | RegExp, callback: Function): Registers an event listener.
    • getStatus(): Returns the current assistant status (string).
    • addTool(name: string, func: Function): Adds a custom tool.
    • removeTool(name: string): Removes a custom tool.
    • initThread(): Promise Initializes the OpenAI thread.
    • pollAnswers(threadId: string, runId: string): Polls the thread for answers.
    • handleActionRequired(threadId: string, runId: string, requiredAction: any): Handles required actions.
    • handleCompletedRun(threadId: string): Handles a completed run.
    • addMessage(message: string): Adds a message to the thread.
    • cancel(runId: string): Cancels a run in the thread.
    • run(): Promise Starts the assistant and returns a promise that resolves when it finishes running.
  • OpenAIAssistantInterface (extends OpenAIAssistant)

    • Inherits all methods from OpenAIAssistant.