getGptModelFromPreferences method

dynamic getGptModelFromPreferences()

Implementation

getGptModelFromPreferences() async {
  GetStorage box = GetStorage();
  String model = box.read('gptModel') ?? "gpt-3.5-turbo";
  setGptModel(model);
}