1package com.arm.aichat
2
3import android.content.Context
4import com.arm.aichat.internal.InferenceEngineImpl
5
6/**
7 * Main entry point for Arm's AI Chat library.
8 */
9object AiChat {
10 /**
11 * Get the inference engine single instance.
12 */
13 fun getInferenceEngine(context: Context) = InferenceEngineImpl.getInstance(context)
14}