UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

20 lines (19 loc) 560 B
import { MessageModel } from '@openassistant/core'; export declare type AiAssistantConfig = { isReady: boolean; provider: string; model: string; apiKey: string; baseUrl: string; temperature: number; topP: number; }; export declare type AiAssistantState = { config: AiAssistantConfig; messages: MessageModel[]; screenshotToAsk: { startScreenCapture: boolean; screenCaptured: string; }; }; export declare const aiAssistantReducer: import("redux-actions").ReduxCompatibleReducer<AiAssistantState, any>;