diff --git a/docs/capabilities/embeddings.mdx b/docs/capabilities/embeddings.mdx index ade3124912..7d364200fc 100644 --- a/docs/capabilities/embeddings.mdx +++ b/docs/capabilities/embeddings.mdx @@ -13,27 +13,23 @@ Embeddings turn text into numeric vectors you can store in a vector database, se ## Generate embeddings -### CLI - -Generate embeddings directly from the command line: - -```shell -ollama run embeddinggemma "Hello world" -``` - -You can also pipe text to generate embeddings: - -```shell -echo "Hello world" | ollama run embeddinggemma -``` - -Output is a JSON array. - -### API and SDKs - -Use `/api/embed` with a single string. - + + Generate embeddings directly from the command line: + + ```shell + ollama run embeddinggemma "Hello world" + ``` + + You can also pipe text to generate embeddings: + + ```shell + echo "Hello world" | ollama run embeddinggemma + ``` + + Output is a JSON array. + + ```shell curl -X POST http://localhost:11434/api/embed \