tensorflow-lite: pass through forked flag

This commit is contained in:
Koushik Dutta
2025-02-12 13:39:55 -08:00
parent a8f1e74278
commit 833ecb721f
3 changed files with 7 additions and 3 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/tensorflow-lite",
"version": "0.1.77",
"version": "0.1.78",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/tensorflow-lite",
"version": "0.1.77",
"version": "0.1.78",
"devDependencies": {
"@scrypted/sdk": "file:../../sdk"
}

View File

@@ -59,5 +59,5 @@
"devDependencies": {
"@scrypted/sdk": "file:../../sdk"
},
"version": "0.1.77"
"version": "0.1.78"
}

View File

@@ -1,4 +1,8 @@
from tflite import TensorFlowLitePlugin
import predict
def create_scrypted_plugin():
return TensorFlowLitePlugin()
async def fork():
return predict.Fork(TensorFlowLitePlugin)