@runanywhere/core 0.17.7 → 0.17.8
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.
|
@@ -421,13 +421,12 @@ std::shared_ptr<Promise<bool>> HybridRunAnywhereCore::initialize(
|
|
|
421
421
|
};
|
|
422
422
|
|
|
423
423
|
callbacks.user_data = nullptr;
|
|
424
|
-
//
|
|
425
|
-
|
|
426
|
-
callbacks.auto_fetch = shouldAutoFetch ? RAC_TRUE : RAC_FALSE;
|
|
424
|
+
// Note: auto_fetch was removed from rac_assignment_callbacks struct
|
|
425
|
+
// Fetching is now controlled manually via rac_model_assignment_fetch()
|
|
427
426
|
|
|
428
427
|
result = rac_model_assignment_set_callbacks(&callbacks);
|
|
429
428
|
if (result == RAC_SUCCESS) {
|
|
430
|
-
LOGI("Model assignment callbacks registered
|
|
429
|
+
LOGI("Model assignment callbacks registered");
|
|
431
430
|
} else {
|
|
432
431
|
LOGE("Failed to register model assignment callbacks: %d", result);
|
|
433
432
|
// Continue - not fatal, models can be fetched later
|
package/package.json
CHANGED