














@@ -9,6 +9,54 @@ title: "Voyage plugin"
991010Adds memory embedding provider support.
111112+## Setup
13+14+Voyage is a remote memory embedding provider, so it needs a Voyage API key before
15+memory search can use it.
16+17+Set the key with either:
18+19+- Environment variable: `VOYAGE_API_KEY`
20+- Config key: `models.providers.voyage.apiKey`
21+22+For an interactive setup, run:
23+24+```bash
25+openclaw configure --section model
26+```
27+28+To make memory search use Voyage explicitly, set the memory search provider to
29+`voyage` and choose a Voyage embedding model:
30+31+```ts
32+{
33+agents: {
34+defaults: {
35+memorySearch: {
36+provider: "voyage",
37+model: "voyage-3-large",
38+ },
39+ },
40+ },
41+models: {
42+providers: {
43+voyage: {
44+apiKey: "${VOYAGE_API_KEY}",
45+ },
46+ },
47+ },
48+}
49+```
50+51+Verify the runtime credential and embedding provider path with:
52+53+```bash
54+openclaw memory status --deep
55+```
56+57+For the full memory embedding provider matrix and API key resolution order, see
58+[Memory config](/reference/memory-config).
59+1260## Distribution
13611462- Package: `@openclaw/voyage-provider`
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。