Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/openclaw-memory-plugin/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ $PluginDest = Join-Path $OpenClawDir "extensions\memory-openviking"
$DefaultServerPort = 1933
$DefaultAgfsPort = 1833
$DefaultVlmModel = "doubao-seed-2-0-pro-260215"
$DefaultEmbeddingModel = "doubao-embedding-vision-250615"
$DefaultEmbeddingModel = "doubao-embedding-vision-251215"

function Get-PythonCommand {
if ($env:OPENVIKING_PYTHON) { return $env:OPENVIKING_PYTHON }
Expand Down Expand Up @@ -229,7 +229,7 @@ function Configure-OvConf {
}
embedding = @{
dense = @{
backend = "volcengine"
provider = "volcengine"
api_key = $(if ($embeddingApiKey) { $embeddingApiKey } else { $null })
model = $embeddingModel
api_base = "https://ark.cn-beijing.volces.com/api/v3"
Expand All @@ -238,7 +238,7 @@ function Configure-OvConf {
}
}
vlm = @{
backend = "volcengine"
provider = "volcengine"
api_key = $(if ($vlmApiKey) { $vlmApiKey } else { $null })
model = $vlmModel
api_base = "https://ark.cn-beijing.volces.com/api/v3"
Expand Down
6 changes: 3 additions & 3 deletions examples/openclaw-memory-plugin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PLUGIN_DEST="${OPENCLAW_DIR}/extensions/memory-openviking"
DEFAULT_SERVER_PORT=1933
DEFAULT_AGFS_PORT=1833
DEFAULT_VLM_MODEL="doubao-seed-2-0-pro-260215"
DEFAULT_EMBED_MODEL="doubao-embedding-vision-250615"
DEFAULT_EMBED_MODEL="doubao-embedding-vision-251215"
SELECTED_SERVER_PORT="${DEFAULT_SERVER_PORT}"
LANG_UI="en"

Expand Down Expand Up @@ -438,7 +438,7 @@ configure_openviking_conf() {
},
"embedding": {
"dense": {
"backend": "volcengine",
"provider": "volcengine",
"api_key": ${embedding_api_json},
"model": "${embedding_model}",
"api_base": "https://ark.cn-beijing.volces.com/api/v3",
Expand All @@ -447,7 +447,7 @@ configure_openviking_conf() {
}
},
"vlm": {
"backend": "volcengine",
"provider": "volcengine",
"api_key": ${vlm_api_json},
"model": "${vlm_model}",
"api_base": "https://ark.cn-beijing.volces.com/api/v3",
Expand Down
8 changes: 4 additions & 4 deletions examples/openclaw-memory-plugin/setup-helper/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ async function checkOvvConf() {
const DEFAULT_SERVER_PORT = 1933;
const DEFAULT_AGFS_PORT = 1833;
const DEFAULT_VLM_MODEL = "doubao-seed-2-0-pro-260215";
const DEFAULT_EMBEDDING_MODEL = "doubao-embedding-vision-250615";
const DEFAULT_EMBEDDING_MODEL = "doubao-embedding-vision-251215";

const DEFAULT_WORKSPACE = join(HOME, ".openviking", "data");

Expand All @@ -213,7 +213,7 @@ function buildOvvConfJson(opts = {}) {
},
embedding: {
dense: {
backend: "volcengine",
provider: "volcengine",
api_key: apiKey || null,
model: embeddingModel,
api_base: "https://ark.cn-beijing.volces.com/api/v3",
Expand All @@ -222,7 +222,7 @@ function buildOvvConfJson(opts = {}) {
},
},
vlm: {
backend: "volcengine",
provider: "volcengine",
api_key: apiKey || null,
model: vlmModel,
api_base: "https://ark.cn-beijing.volces.com/api/v3",
Expand Down Expand Up @@ -300,7 +300,7 @@ async function updateOvvConf(cfgPath, opts = {}) {
if (!cfg.vlm) cfg.vlm = {};
cfg.vlm.model = opts.vlmModel;
if (!cfg.vlm.api_base) cfg.vlm.api_base = "https://ark.cn-beijing.volces.com/api/v3";
if (!cfg.vlm.backend) cfg.vlm.backend = "volcengine";
if (!cfg.vlm.provider) cfg.vlm.provider = "volcengine";
}
if (opts.embeddingModel !== undefined) {
if (!cfg.embedding) cfg.embedding = {};
Expand Down
Loading