ollama pull AuditAid/Reranker_v2:Qwen3-Reranker-4B_Q5_K_M
curl http://localhost:11434/api/embed \
-d '{
"model": "AuditAid/Reranker_v2:Qwen3-Reranker-4B_Q5_K_M",
"input": "Why is the sky blue?"
}'
import ollama
response = ollama.embed(
model='AuditAid/Reranker_v2:Qwen3-Reranker-4B_Q5_K_M',
input='The sky is blue because of Rayleigh scattering',
)
print(response.embeddings)
import ollama from 'ollama'
const response = await ollama.embed({
model: 'AuditAid/Reranker_v2:Qwen3-Reranker-4B_Q5_K_M',
input: 'The sky is blue because of Rayleigh scattering',
})
console.log(response.embeddings)