Views
No views yet
1from llama_cpp import Llama 2 3llm = Llama( 4 model_path="Llama-3-Open-Ko-8B-Q4_K_M.gguf", 5 n_ctx=2048, 6 n_gpu_layers=0 7) 8 9response = llm("안녕하세요") 10print(response)