@tiens.nguyen/gonext-local-worker 1.0.276 → 1.0.278

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.
@@ -3073,6 +3073,15 @@ def run_agent_chat(cfg):
3073
3073
  f"start model={agent_model_id!r} base={agent_base_url!r} "
3074
3074
  f"codeModel={coding_model_id!r} codeBase={coding_base_url!r} maxSteps={max_steps}"
3075
3075
  )
3076
+ # Search model (task #105): who synthesizes web_search answers. Logged so a run shows at a
3077
+ # glance whether it's wired.
3078
+ _search_base = (cfg.get("searchBaseURL") or "").strip()
3079
+ _search_model = (cfg.get("searchModelId") or "").strip()
3080
+ _log(
3081
+ f"search model: {_search_model!r} @ {_search_base}"
3082
+ if _search_base
3083
+ else "search model: none (web_search returns read page content, not a synthesized answer)"
3084
+ )
3076
3085
 
3077
3086
  # Build the task from the conversation history. We include the FULL conversation
3078
3087
  # (both user AND assistant turns) so the agent remembers what it already did —
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.276",
3
+ "version": "1.0.278",
4
4
  "description": "Polls GoNext cloud API for async local LLM jobs and runs them against Ollama/OpenAI-compatible servers on this Mac",
5
5
  "type": "module",
6
6
  "license": "MIT",