open-agents-ai 0.187.186 → 0.187.187

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -312773,7 +312773,7 @@ async function tryRouteV1(ctx3) {
312773
312773
  if (pathname === "/v1/vision/describe" && method === "POST") {
312774
312774
  return handleVisionDescribe(ctx3);
312775
312775
  }
312776
- if (pathname.startsWith("/v1/aims/")) {
312776
+ if (pathname === "/v1/aims" || pathname.startsWith("/v1/aims/")) {
312777
312777
  return tryAimsRoute(ctx3);
312778
312778
  }
312779
312779
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.186",
3
+ "version": "0.187.187",
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",