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.
- package/dist/index.js +2 -1
- 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
|
|
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