public IActionResult CustomerProfile()

in cloud-run/rideshare-plus-website/RidesharePlus/Controllers/LLMController.cs [75:90]


    public IActionResult CustomerProfile()
    {      
        DataStoreService dataStoreService = new DataStoreService();
        DataStoreModel dataStoreModel = dataStoreService.GetDataStore;

        if (dataStoreModel == null || dataStoreModel.LookerAILLM_Page_CustomerProfile == null)
        {
            return RedirectToAction("Configure", "LLM");
        }
        else
        {
            Models.LLMVisualizeViewModel llmVisualizeViewModel = new LLMVisualizeViewModel();
            llmVisualizeViewModel.LookerEmbedUrl = dataStoreModel.LookerAILLM_Page_CustomerProfile;
            return View("customer-profile", llmVisualizeViewModel);
        }                 
    }