> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.meshapi.ai/llms.txt.
> For full documentation content, see https://developers.meshapi.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.meshapi.ai/_mcp/server.

# Embeddings

> Generate vector embeddings with the Go SDK.

# Embeddings

```go
resp, err := client.Embeddings.Create(ctx, meshapi.EmbeddingsParams{
    Model: "openai/text-embedding-3-small",
    Input: []string{"The quick brown fox", "jumped over the lazy dog"},
})

for _, emb := range resp.Data {
    fmt.Printf("Vector length: %d\n", len(emb.Embedding))
}
```