/** * Author: Charuka Rathnayaka * Email: CharukaR@99x.io **/ /** * WebLLMModel Type * * This type defines the allowed values for web-based LLM models. Currently it supports * 'phi' or 'gemma' models, representing different models that may be used in the application. */ export type WebLLMModel = 'phi' | 'gemma' | 'gemma2'; export type MediaPipeModel = 'gemma-cpu' | 'gemma-gpu';