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