Skip to content

dynamiq-ai/assistant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

62 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Dynamiq Assistant

Dynamiq Assistant

A powerful chat widget library for AI agents - Built for React and vanilla JavaScript

npm version npm downloads License

Documentation β€’ Features β€’ Installation β€’ Usage β€’ Contributing

Website LinkedIn Twitter


✨ About

dynamiq-assistant allows you to seamlessly integrate AI agents into your applications through customizable chat widgets. Built specifically for agentic AI experiences, it provides React and vanilla JavaScript components that connect directly to your Dynamiq-powered AI agents.

Dynamiq is an orchestration framework for agentic AI and LLM applications, enabling businesses to build, deploy, and manage intelligent AI agents at scale.

πŸš€ Features

  • πŸ€– AI Agent Integration - Purpose-built for connecting to Dynamiq AI agents
  • πŸ“± Cross-Platform Support - Works with React and vanilla JavaScript
  • 🎨 Customizable UI - Fully customizable appearance with theme support
  • πŸ“‘ Streaming Support - Real-time streaming responses from AI agents
  • πŸ“ File Upload - Enable AI agents to process images, PDFs, and documents
  • 🎯 Flexible Positioning - Position the agent widget anywhere on your page
  • πŸ”§ Event Handlers - Handle agent feedback, actions, and responses
  • πŸ“Š Vega Chart Support - AI agents can render data visualizations seamlessly

πŸ“¦ Installation

npm install @dynamiq/assistant marked@15 [email protected] [email protected] [email protected]

Or using yarn:

yarn add @dynamiq/assistant marked@15 [email protected] [email protected] [email protected]

πŸ”§ Setup

To use @dynamiq/assistant, first navigate to your Dynamiq deployment:

  1. Go to Deployments and ensure Endpoint Authorization is disabled
  2. Click on the Integration tab
  3. Switch to the Chat Widget menu item
  4. Copy your unique API URL
Dynamiq App Integration

πŸ’» Usage

React

import { DynamiqAssistant } from '@dynamiq/assistant/react';

const App = () => {
  return (
    <DynamiqAssistant
      title="Dynamiq Assistant"
      placeholder="Type your message..."
      position="bottom-right"
      api={{
        url: '<YOUR_API_URL>',
        streaming: true,
      }}
      allowFileUpload={true}
      maxFileSize={10 * 1024 * 1024} // 10MB
      acceptedFileTypes="image/*,.pdf,.doc,.docx,.txt"
      params={{
        userId: '123',
        sessionId: '234',
        userName: 'John Doe',
        language: 'en',
      }}
      prompts={[
        { icon: 'πŸ’¬', text: 'What documents are needed for the loan?' },
        {
          icon: <FontAwesomeIcon icon={faUser} />,
          text: 'What is the maximum loan amount?',
        },
      ]}
      footerText={
        'Powered by <a href="https://getdynamiq.ai" target="_blank">Dynamiq</a>'
      }
    />
  );
};

Vanilla JavaScript

ESM Module

import { DynamiqAssistant } from '@dynamiq/assistant/vanilla';

const assistant = new DynamiqAssistant('#dynamiq-assistant-container', {
  title: 'Dynamiq Assistant',
  placeholder: 'Type your message...',
  position: 'bottom-left',
  api: {
    url: '<YOUR_API_URL>',
    streaming: true,
  },
  allowFileUpload: false,
  maxFileSize: 5 * 1024 * 1024, // 5MB
  acceptedFileTypes: 'image/*,.pdf',
});

Script Tag

<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@dynamiq/assistant@latest/dist/index.browser.js"></script>
<script>
  const assistant = new dynamiq.DynamiqAssistant(
    '#dynamiq-assistant-container',
    {
      title: 'Dynamiq Assistant',
      placeholder: 'Type your message...',
      position: 'bottom-left',
      api: {
        url: '<YOUR_API_URL>',
        streaming: true,
      },
    }
  );
</script>

🎨 Widget Preview

Your assistant will appear as an elegant chat widget on your page:

Widget Preview

πŸ“š API Reference

Props

Name Type Description
title string | ReactNode The title of the assistant. Can be string or ReactNode.
placeholder string The placeholder text of the chat input.
welcomeTitle string The title of the welcome screen.
welcomeSubtitle string The subtitle of the welcome screen.
position string The position of the assistant. Can be bottom-right, bottom-left, top-right, or top-left.
api.url string The URL of the assistant endpoint.
api.streaming boolean Whether to enable response streaming.
allowFileUpload boolean Whether to allow file uploads.
maxFileSize number The maximum file size for file uploads in bytes.
acceptedFileTypes string The accepted file types for file uploads.
params object The parameters to pass to the assistant input.
params.userId string The user ID. By default crypto.randomUUID().
params.sessionId string The session ID. By default crypto.randomUUID().
toggleButton string The ID of the button to toggle the assistant.
prompts array The prompts to show in the assistant.
prompts.icon string | ReactNode The icon to show in the prompt.
prompts.text string The text to show in the prompt.
theme.primaryColor string The primary color of the assistant.
theme.secondaryColor string The secondary color of the assistant.
theme.fontFamily string The font family of the assistant.
allowFullScreen boolean Whether to show the full screen button.
footerText string The text to show in the footer.
poweredBy string The text to show in the powered by section.
humanSupport string The text to show in the human support section.
intermediateStreaming boolean Whether to show the intermediate steps if they are available. By default true.
hideCloseButton boolean Whether to hide close button. By default false.
fullScreen boolean Whether to open chat in full screen. By default false.
open boolean Whether to open chat on page load. By default false.

Events

Name Description
onFeedback The callback function to handle the feedback.
onImageBlock The callback function to handle image blocks.
onLink The callback function to handle links.
onNewChat The callback function to handle new chat.
onPromptSend The callback function to handle prompt sending.
onChatDelete The callback function to handle chat deletion.
onChatOpen The callback function to handle open chat
onChatClose The callback function to handle close chat

🀝 Contributing

We welcome contributions! Please see our Contributing Guide for details on how to get started.

Development

# Install dependencies
npm install

# Run development server
npm run dev

# Build the library
npm run build

# Run tests
npm run test

# Lint code
npm run lint

πŸ“„ License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

πŸ”— Links

🌐 Connect with Us

Dynamiq is the operating platform for agentic AI applications. We're building the future of AI orchestration.

Website LinkedIn Twitter

GitHub Organization

About

UI chat component for agentic AI applications

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •