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