bilisum 1.21.0 → 1.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bilisum",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "description": "BiliSum CLI: control the installed BiliSum app, or run standalone with its own runtime.",
5
5
  "bin": {
6
6
  "bilisum": "bin/bilisum.js"
package/runtime/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.21.1
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "video-sum-service"
7
- version = "1.21.0"
7
+ version = "1.21.1"
8
8
  description = "Local backend service for the video summarizer."
9
9
  requires-python = ">=3.12"
10
10
  dependencies = [
@@ -369,6 +369,7 @@ def probe_llm_connection(payload: SettingsUpdatePayload | None = None) -> dict[s
369
369
  reasoning_effort=effective_settings.llm_reasoning_effort,
370
370
  provider=effective_settings.llm_provider,
371
371
  model=model,
372
+ base_url=base_url,
372
373
  )
373
374
  request_json["model"] = normalize_openai_compatible_model_name(model)
374
375
  elif use_anthropic:
@@ -391,6 +392,7 @@ def probe_llm_connection(payload: SettingsUpdatePayload | None = None) -> dict[s
391
392
  reasoning_effort=effective_settings.llm_reasoning_effort,
392
393
  provider=effective_settings.llm_provider,
393
394
  model=model,
395
+ base_url=base_url,
394
396
  )
395
397
 
396
398
  probe_timeout = 120 if test_scope == "visual" else 30