ollama pull bnksys/baia:10.8b-korean-instruct-reg-q3-v1
curl http://localhost:11434/api/embed \
-d '{
"model": "bnksys/baia:10.8b-korean-instruct-reg-q3-v1",
"input": "Why is the sky blue?"
}'
import ollama
response = ollama.embed(
model='bnksys/baia:10.8b-korean-instruct-reg-q3-v1',
input='The sky is blue because of Rayleigh scattering',
)
print(response.embeddings)
import ollama from 'ollama'
const response = await ollama.embed({
model: 'bnksys/baia:10.8b-korean-instruct-reg-q3-v1',
input: 'The sky is blue because of Rayleigh scattering',
})
console.log(response.embeddings)