GenAiStoreProps
Home > @gooddata/sdk-ui-gen-ai > GenAiStoreProps
GenAiStoreProps type
Props for the GenAiStore component.
Signature:
export type GenAiStoreProps = {
backend?: IAnalyticalBackend;
workspace?: string;
catalogItems?: CatalogItem[];
settings?: IUserWorkspaceSettings;
eventHandlers?: ChatEventHandler[];
objectTypes?: GenAIObjectType[];
includeTags?: string[];
excludeTags?: string[];
colorPalette?: IColorPalette;
onDispatcher?: (dispatch: EnhancedStore["dispatch"]) => void;
children: ReactNode | ((genAIStore: EnhancedStore) => ReactNode);
isPreview?: boolean;
};
References: IAnalyticalBackend, CatalogItem, IUserWorkspaceSettings, ChatEventHandler, GenAIObjectType, IColorPalette