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(); } else if (choice == 3) // quantization { Quantize q = new Quantize(); q.Run(@"", @"", "q4_1"); } else if (choice == 4) // quantization { GetEmbeddings em = new GetEmbeddings(@""); em.Run("Hello, what is python?"); }