open-agents-ai 0.186.55 → 0.186.56

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -301890,7 +301890,8 @@ function startApiServer(options2 = {}) {
301890
301890
  }
301891
301891
  async function apiServeCommand(opts, config) {
301892
301892
  const server = startApiServer({
301893
- port: opts.port ?? 11435,
301893
+ port: opts.port,
301894
+ // Let startApiServer() parse OA_HOST env if no explicit --port
301894
301895
  verbose: opts.verbose,
301895
301896
  ollamaUrl: config.backendUrl
301896
301897
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.186.55",
3
+ "version": "0.186.56",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",