nlux
nlux copied to clipboard
The project adopts the transit API, can you customize the configuration host?
import {DataTransferMode} from '@nlux/core'; import {OpenAiModel} from './model';
export type ChatAdapterOptions = { dataTransferMode?: DataTransferMode; model?: OpenAiModel; apiKey: string; systemMessage?: string; host?: string; };