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