Spaces:
Build error
Build error
from huggingface_hub import hf_hub_download | |
from llama_cpp import Llama | |
# ุชุญู ูู ุงูู ูู ู ู ู ุณุชูุฏุน Hugging Face ุงูุฃุตูู | |
file_path = hf_hub_download( | |
repo_id="unsloth/gemma-3-1b-it-GGUF", | |
filename="gemma-3-1b-it-IQ4_NL.gguf" | |
) | |
# ุชุดุบูู ุงููู ูุฐุฌ | |
llm = Llama(model_path=file_path) | |
response = llm("ุงูุชุจ ูู ูุต ุชุฌุฑูุจู") | |
print(response) |