LLPredictionWidget

🚧

Pre-requisite

Make sure you initialise React Native SDK.

LLPredictionWidget is a prediction based widget UI component. This widget UI supports two kinds of widget:

  1. WidgetKind.TEXT_PREDICTION
  2. WidgetKind.IMAGE_PREDICTION
import { LLPredictionWidget } from '@livelike/react-native';
import { WidgetKind } from '@livelike/javascript';

export function MyWidgetContainer() {
  return (
    <LLPredictionWidget
      programId="xxxxx"
      widgetId="yyyyy"
      widgetKind={WidgetKind.IMAGE_PREDICTION}
    />
  );
}

Hooks used by LLPredictionWidget

LLPredictionWidget Props

📘

Customisation

Refer customisation core concepts to understand different level of component customisation.

programId

TypeDefault
String (Required)No Default

This is the Id of the program in which a given widget is published

widgetId

TypeDefault
String (Required)No Default

widgetKind

TypeDefault
WidgetKind (Required)No Default

inlineFollowUp

TypeDefault
Booleanfalse

This prop when present would auto render (in place of prediction widget) its corresponding prediction followup widget whenever it is published from producer suite.