Skip to main content
Version: v2.x

API And Events


This example shows how to use the AI Chat API along with events to submit a message programmatically, and use the response outside the AI Chat component.

import { useCallback, useState } from 'react';
import { AiChat, useAiChatApi } from '@nlux/react';
import { useChatAdapter } from '@nlux/langchain-react';
import * as setup from './setup';
import LastMessage from './lastMessage';
import '@nlux/themes/nova.css';

export default () => {
  const adapter = useChatAdapter({ url: 'https://pynlux.api.nlkit.com/pirate-speak' });
  const [lastMessageReceived, setLastMessageReceived] = useState('');

  // Use the AiChat API reference to pass to <AiChat />
  const api = useAiChatApi();

  // Callbacks that use the API
  const onResetClick = useCallback(() => api.conversation.reset(), [api]);
  const onSendClick = useCallback(() => api.composer.send('Where can I find this treasure chest?'), [api]);
  const onMessageReceived = useCallback((payload) => setLastMessageReceived(payload.message), [setLastMessageReceived]);

  return (
    <div style={ setup.containerStyle }>
      <div style={ setup.buttonsContainerStyle }>
        <button style={ setup.buttonStyle } onClick={ onSendClick }>Send</button>
        <button style={ setup.buttonStyle } onClick={ onResetClick }>Reset</button>
      </div>
      <div style={ setup.chatContainerStyle }>
        <AiChat
          api={ api }
          adapter={ adapter }
          events={{ messageReceived: onMessageReceived }}
          initialConversation={ setup.initialConversation }
          personaOptions={ setup.personaOptions }
          displayOptions={{ colorScheme: 'dark' }}
        />
        <LastMessage message={ lastMessageReceived } />
      </div>
    </div>
  );
};