upload model to cdn and api

switch to yolov11
This commit is contained in:
Alex Bezdieniezhnykh
2025-03-03 23:36:10 +02:00
parent ceb50bf48a
commit 2fa864018f
14 changed files with 258 additions and 86 deletions
+10
View File
@@ -0,0 +1,10 @@
import io
from security import Security
key = Security.get_model_encryption_key()
test_str = 'test test test 123'
test_encrypted = Security.encrypt_to(io.BytesIO(test_str.encode('utf-8')), key)
test_res = Security.decrypt_to(io.BytesIO(test_encrypted), key)
print(f'Initial: {test_str}')
print(f'Result : {test_res}')