i am trying this example, and i see
verifying sha256 digest
writing manifest
success
but under .ollama\models\manifests\hf.co\bartowski\Llama-3.2-1B-Instruct-GGUF, there is only 1k size latest file.
with ollma list, it shows
NAME ID SIZE MODIFIED
hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF:latest 042cf58aa32f 807 MB 52 minutes ago
hf.co/CompendiumLabs/bge-base-en-v1.5-gguf:latest 98c4eb4a3287 68 MB 58 minutes ago
where are they stored? if i don't give the path to the model and use example below, i got 504 timeout error when calling
"embedding = ollama.embed(model=EMBEDDING_MODEL, input=chunk)['embeddings'][0] "
EMBEDDING_MODEL = 'hf.co/CompendiumLabs/bge-base-en-v1.5-gguf'
LANGUAGE_MODEL = 'hf.co/bartowski/Llama-3.2-1B-Instruct-GGUF'