@danypops/jittor 0.16.0 → 0.16.1
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/package.json +1 -1
- package/src/service.ts +4 -1
package/package.json
CHANGED
package/src/service.ts
CHANGED
|
@@ -207,9 +207,12 @@ export class JittorService {
|
|
|
207
207
|
};
|
|
208
208
|
this.vehicleRegistry = new VehicleRegistry({
|
|
209
209
|
name: "jittor",
|
|
210
|
-
version:
|
|
210
|
+
version: VERSION,
|
|
211
211
|
description: "Just-in-Time Token Optimizing Router for Pi -- metrics, benchmark evidence, model ranking, and router policy.",
|
|
212
212
|
});
|
|
213
|
+
// withJittorErrorParity() already converts every real handler error into a well-formed
|
|
214
|
+
// VehicleError, so this only affects a genuine registration/binding bug.
|
|
215
|
+
this.vehicleRegistry.setExposeHandlerFailureDetails(true);
|
|
213
216
|
registerJittorVehicleOperations(this.vehicleRegistry, this.operations);
|
|
214
217
|
}
|
|
215
218
|
|