UNPKG

kepler.gl

Version:

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

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