remix-nlux
Version:
Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.
22 lines (19 loc) • 680 B
text/typescript
import {BatchSend} from '@shared/types/adapters/chat/chatAdapter';
import {DependencyList, useMemo} from 'react';
import {ChatAdapter} from '../../types/chatAdapter';
/**
* Use the function provided as a batch adapter to send and receive messages in a single batch.
*
* @param send
* @param dependencies
*/
export const useAsBatchAdapter = function <AiMsg = string>(
send: BatchSend<AiMsg>,
dependencies?: DependencyList,
): ChatAdapter<AiMsg> {
return useMemo(
() => ({batchText: send}),
dependencies ?? [{}], // If no dependencies are provided, we use an empty object to force the hook
// to run every time (no memoization).
);
};