Skip to content

Instantly share code, notes, and snippets.

@calebdre
Created June 15, 2024 17:23
Show Gist options
  • Save calebdre/80b295d7e360bf30556bcd2d2ed855f4 to your computer and use it in GitHub Desktop.
Save calebdre/80b295d7e360bf30556bcd2d2ed855f4 to your computer and use it in GitHub Desktop.
export const createEmbedding = async (
model: string,
text: string
) => {
const resp = await ollama.embeddings({
model: model,
prompt: text
})
return resp.embedding
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment