using LLama; using LLama.Examples; using LLama.Types; int choice = 0; if(choice == 0) { ChatSession chat = new(@"", "", new string[] { "User:" }); chat.Run(); } else if(choice == 1) { ChatWithLLamaModel chat = new(@"", "", new string[] { "User:" }); chat.Run(); } else if(choice == 2) { ChatWithLLamaModelV1 chat = new(@""); chat.Run(); }