freesolo-flash-dev 0.2.25__py3-none-any.whl

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.
Files changed (111) hide show
  1. flash/__init__.py +29 -0
  2. flash/_channel.py +23 -0
  3. flash/_fileio.py +35 -0
  4. flash/_logging.py +49 -0
  5. flash/_update_check.py +266 -0
  6. flash/catalog.py +253 -0
  7. flash/cli/__init__.py +1 -0
  8. flash/cli/main/__init__.py +227 -0
  9. flash/cli/main/__main__.py +6 -0
  10. flash/cli/main/commands.py +636 -0
  11. flash/cli/main/envpush.py +317 -0
  12. flash/cli/main/render.py +599 -0
  13. flash/cli/main/training_doc.py +455 -0
  14. flash/client/__init__.py +14 -0
  15. flash/client/config.py +70 -0
  16. flash/client/http.py +372 -0
  17. flash/client/runtime_secrets.py +69 -0
  18. flash/client/specs.py +20 -0
  19. flash/cost/__init__.py +16 -0
  20. flash/cost/analytical.py +175 -0
  21. flash/cost/facts.py +114 -0
  22. flash/cost/spec.py +113 -0
  23. flash/cost/types.py +158 -0
  24. flash/engine/__init__.py +6 -0
  25. flash/engine/accounting.py +36 -0
  26. flash/engine/chalk_kernels.py +116 -0
  27. flash/engine/multiturn_rollout.py +780 -0
  28. flash/engine/recipe.py +86 -0
  29. flash/engine/vram.py +603 -0
  30. flash/engine/worker/__init__.py +2916 -0
  31. flash/engine/worker/__main__.py +4 -0
  32. flash/engine/worker/kernel_warmup.py +400 -0
  33. flash/engine/worker/lora.py +796 -0
  34. flash/engine/worker/packing.py +366 -0
  35. flash/engine/worker/perf.py +1048 -0
  36. flash/envs/__init__.py +10 -0
  37. flash/envs/adapter/__init__.py +883 -0
  38. flash/envs/adapter/rubric.py +222 -0
  39. flash/envs/base.py +52 -0
  40. flash/envs/registry.py +62 -0
  41. flash/mcp/__init__.py +1 -0
  42. flash/mcp/server.py +85 -0
  43. flash/providers/__init__.py +59 -0
  44. flash/providers/_auth.py +24 -0
  45. flash/providers/_http.py +230 -0
  46. flash/providers/_instance.py +416 -0
  47. flash/providers/_instance_bootstrap.py +517 -0
  48. flash/providers/_poll.py +311 -0
  49. flash/providers/allocator.py +193 -0
  50. flash/providers/base.py +431 -0
  51. flash/providers/hyperstack/__init__.py +127 -0
  52. flash/providers/hyperstack/api.py +522 -0
  53. flash/providers/hyperstack/auth.py +17 -0
  54. flash/providers/hyperstack/gpus.py +29 -0
  55. flash/providers/hyperstack/jobs/__init__.py +632 -0
  56. flash/providers/hyperstack/jobs/builders.py +122 -0
  57. flash/providers/hyperstack/preflight.py +23 -0
  58. flash/providers/hyperstack/pricing.py +26 -0
  59. flash/providers/hyperstack/train.py +25 -0
  60. flash/providers/lambdalabs/__init__.py +139 -0
  61. flash/providers/lambdalabs/api.py +261 -0
  62. flash/providers/lambdalabs/auth.py +18 -0
  63. flash/providers/lambdalabs/gpus.py +29 -0
  64. flash/providers/lambdalabs/jobs/__init__.py +724 -0
  65. flash/providers/lambdalabs/jobs/builders.py +118 -0
  66. flash/providers/lambdalabs/preflight.py +27 -0
  67. flash/providers/lambdalabs/pricing.py +51 -0
  68. flash/providers/lambdalabs/train.py +27 -0
  69. flash/providers/preflight.py +55 -0
  70. flash/providers/realized.py +80 -0
  71. flash/providers/runpod/__init__.py +130 -0
  72. flash/providers/runpod/api.py +186 -0
  73. flash/providers/runpod/auth.py +37 -0
  74. flash/providers/runpod/cost.py +57 -0
  75. flash/providers/runpod/gpus.py +46 -0
  76. flash/providers/runpod/jobs.py +956 -0
  77. flash/providers/runpod/keys.py +139 -0
  78. flash/providers/runpod/preflight.py +30 -0
  79. flash/providers/runpod/preload.py +915 -0
  80. flash/providers/runpod/pricing.py +18 -0
  81. flash/providers/runpod/slots.py +79 -0
  82. flash/providers/runpod/train/__init__.py +150 -0
  83. flash/providers/runpod/train/deps.py +395 -0
  84. flash/providers/runpod/train/endpoints.py +820 -0
  85. flash/py.typed +0 -0
  86. flash/runner/__init__.py +686 -0
  87. flash/runner/checkpoints.py +82 -0
  88. flash/runner/deploy.py +422 -0
  89. flash/runner/lifecycle.py +672 -0
  90. flash/schema/__init__.py +375 -0
  91. flash/schema/fields.py +331 -0
  92. flash/serve/__init__.py +1 -0
  93. flash/serve/deploy.py +326 -0
  94. flash/serve/pricing.py +60 -0
  95. flash/server/__init__.py +1 -0
  96. flash/server/__main__.py +20 -0
  97. flash/server/app.py +961 -0
  98. flash/server/auth.py +263 -0
  99. flash/server/billing.py +124 -0
  100. flash/server/checkpoints.py +110 -0
  101. flash/server/db.py +160 -0
  102. flash/server/environment_registry.py +102 -0
  103. flash/server/envs.py +360 -0
  104. flash/server/reconcile.py +163 -0
  105. flash/server/run_registry.py +150 -0
  106. flash/spec.py +333 -0
  107. freesolo_flash_dev-0.2.25.dist-info/METADATA +192 -0
  108. freesolo_flash_dev-0.2.25.dist-info/RECORD +111 -0
  109. freesolo_flash_dev-0.2.25.dist-info/WHEEL +4 -0
  110. freesolo_flash_dev-0.2.25.dist-info/entry_points.txt +3 -0
  111. freesolo_flash_dev-0.2.25.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,111 @@
1
+ flash/__init__.py,sha256=jsYn6yQCzg56hrkr2Lk8euuxhKZtkhZFgTt7Hw54b0M,1628
2
+ flash/_channel.py,sha256=eeFr7FFasev9PaULM32SkRi5HTPmUsY6E_BkiMsz9O8,1376
3
+ flash/_fileio.py,sha256=cODhJut0RFEMyUeWc5aBNS9g_5k2oYzzcUHLibb2tzI,1275
4
+ flash/_logging.py,sha256=iyiHhCz3CoRMmlIGj3B4rXLIrwMrr8wschEc22Pcq_Y,2039
5
+ flash/_update_check.py,sha256=KulDAN8-rjnkXM0FHFRSj8_OioX1yt-z2FZOWELisS4,11634
6
+ flash/catalog.py,sha256=RdMF_zQLtAshUWao72j8Hjium1p8uYOS1BOGYZmjBgY,10956
7
+ flash/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ flash/spec.py,sha256=NQmEA1aV7N8i0DjFvwg_mBSpiZBGCHC-HhW9OHVLkeo,16232
9
+ flash/cli/__init__.py,sha256=C63yWifzpA0IV7YWDatpAdrhoV8zjqxAKv0xMf09VdM,19
10
+ flash/cli/main/__init__.py,sha256=uDINQGrQb_vHL1QGrLzCBeUJzC6NYDhAscCd8Hrewmc,8047
11
+ flash/cli/main/__main__.py,sha256=udVScQwXevi8gnOaiy7iZ4xGr5x-wpiiVjxwiMT_lUA,93
12
+ flash/cli/main/commands.py,sha256=FDU9rhBggK1v_ORvTiz0q6zuVTfUAGvB2VspqwR3t7A,22143
13
+ flash/cli/main/envpush.py,sha256=UjgzjZijOV4jYd5ym3R-_Xog59ypfcYS0F10WdlQXo0,10708
14
+ flash/cli/main/render.py,sha256=v1hI8nSfN5YzECkp2lADoK8L3_2PDFDZEz-eN5-sQmI,23442
15
+ flash/cli/main/training_doc.py,sha256=EnN8H9Y0-ApsWnWARjW5nX4Qoyv7uYbZ9TkQd3_gGao,22861
16
+ flash/client/__init__.py,sha256=tZJLxwS2vNOtnsRM_yRZ4dmnCsdJfwlsLsVu1EWP9gI,404
17
+ flash/client/config.py,sha256=T-sUoW9KHySY4R5Mw_Ia5vJY_CZ05yDFgwbBTUN92G0,2774
18
+ flash/client/http.py,sha256=ClW8SAtY6V41aMKk1x5g3x15D60L0W23ecJvKtJXTQo,15247
19
+ flash/client/runtime_secrets.py,sha256=Ndo7KYsrGV-NatvwDC_puPrnZ_xgwr-n_AA961_cuNk,2549
20
+ flash/client/specs.py,sha256=De-fEIDdobFstqbp10jAtLOi1oi3BdJwSTzpS3S6lBk,586
21
+ flash/cost/__init__.py,sha256=bWG4cQ0cRTzczCCbc9w0so5L4B0a7VwYkhKA58KBUpQ,473
22
+ flash/cost/analytical.py,sha256=SZVP05ds8AcJ1eZoUJvJY0sUkFt7oU9IbgCMN5GzTV8,8026
23
+ flash/cost/facts.py,sha256=82c54cd48Kamj40kRkDfkLnLk3YTwMUpeACnF2LGefQ,4472
24
+ flash/cost/spec.py,sha256=p-bh9dl-rj70pVpsv3yD4ounzFizEhKDtcEWlG9skxo,5626
25
+ flash/cost/types.py,sha256=en9XwVJeUEDpNLoYY2oxomIMt1aUxWAz374WAHnSMhg,7216
26
+ flash/engine/__init__.py,sha256=mwr4vm6hJod82n23seKEn4-enTqDEoZlRCn9-N-nlZs,243
27
+ flash/engine/accounting.py,sha256=AM8LXbOP5xCZ8DrGYEmE9RV_pk-a8O0POnLwAJQMtx8,1138
28
+ flash/engine/chalk_kernels.py,sha256=Z7vJOiXAa5Wh7D987s8gLZ54IASSdDAbUA54YdbI09w,6212
29
+ flash/engine/multiturn_rollout.py,sha256=B9vzVJaGBgnqehgVxXHEbYlY9kpo4eVgPdzch5cmd1c,38958
30
+ flash/engine/recipe.py,sha256=czNb0xmf1oA4vopEpaeRG75ZbxBTGdU6wWo97wqVSsw,3816
31
+ flash/engine/vram.py,sha256=4JY6uRRwAaAuMZ6vUxB1fJtE1NqchD8HNsWjBcIkV-s,31702
32
+ flash/engine/worker/__init__.py,sha256=IHwdIMmhVW8O8fUHDs1KvBOVaj4n9QuQn3YKtjsk6mU,156715
33
+ flash/engine/worker/__main__.py,sha256=4sN90vDzwEXiG6DR0sEnnpnJViF9bWKtGdqrNtxKmZQ,94
34
+ flash/engine/worker/kernel_warmup.py,sha256=URRp5rWDtHRUDBN4w6A7PwbrwJF5Bbk_UoAkIjqiQ7c,18017
35
+ flash/engine/worker/lora.py,sha256=mIUyCge0hInRjvANOpsu0vVeJTEVWo8dTzFWcUDfkCo,42655
36
+ flash/engine/worker/packing.py,sha256=iCEUcQobcoiP3r0_QzTF1za3OXmI6EjmZbQfQZQts5g,20712
37
+ flash/engine/worker/perf.py,sha256=oMPaDpcyvJUPWj5GTG1TQWu1cuwEVSj7kYdXEiaSvxs,51070
38
+ flash/envs/__init__.py,sha256=FSxY4AShR9uKFwJH92jTAa5ajwBsWtcTprSYYuY0_CU,219
39
+ flash/envs/base.py,sha256=ZjpIFQ4WDP5FfCnb4jxwAv4JWQffLQ0FhKl52xiNaWw,2158
40
+ flash/envs/registry.py,sha256=5o1Z4l-ga_3KPXlZIKw9M3q-uvL_D6SuD30ZmZgJa5I,2473
41
+ flash/envs/adapter/__init__.py,sha256=U57kV1Tter39aDMVGQhTsgB9mJvO6TopTN32om7sWjI,38031
42
+ flash/envs/adapter/rubric.py,sha256=tZQwfDb1C48GQLwmbEimSNFQhxnM3To6JNI1hdB2cpM,9003
43
+ flash/mcp/__init__.py,sha256=gO4xU5YdX4IutuH-OhsJv2ectDGbO4gzO-Jk9g3Ei1E,31
44
+ flash/mcp/server.py,sha256=PSSt9h-neBlUPAHQaNYblLFyrvszb2t8jzXrESNQvis,2661
45
+ flash/providers/__init__.py,sha256=ADZvVNJ951LXCbmj-ShmWzOv1co9IHkaflDGMi-GPCc,2412
46
+ flash/providers/_auth.py,sha256=vsrah6V_VGRPmBBFWAaI2ghwQIQWCioJcnp35lc1OSY,827
47
+ flash/providers/_http.py,sha256=PuYqePF6-W8NA2UOTr_OLnXaEom2KHmReutvr8aCCrg,10506
48
+ flash/providers/_instance.py,sha256=PrUoih9CycgA_HRhfNCMpwHGt8RgBgaC5xZlL6z_u8I,23695
49
+ flash/providers/_instance_bootstrap.py,sha256=Ieb539ZHajSI12MxiP9eEweYRIsE2otsstk_qr2wBP0,27919
50
+ flash/providers/_poll.py,sha256=eYdM1dBTWB2g9vjo8cG-cRYIAzVaH37I6wU2m54PVfc,12094
51
+ flash/providers/allocator.py,sha256=aJXEbhiUa2_JY1MSbSeR1i86baD-X_iLmNUcCKNZDkY,8413
52
+ flash/providers/base.py,sha256=fT1q6Rx9Dzsb_DsZOD5EZpJZL-qw-jqi4y93mgOlrGI,17397
53
+ flash/providers/preflight.py,sha256=hUWSoBPAzTYCzFOEECdOd3Ca0eN6BDCk8dnYjS6tNNs,1799
54
+ flash/providers/realized.py,sha256=5D5kzwums2ph3S5aPzlzxdSE6j7C1mV4wII9P5AtMjE,3786
55
+ flash/providers/hyperstack/__init__.py,sha256=nODRQbCVE3OUlXY7qNuNKYE-l4YUlMTTWyeAVBMc6h4,5160
56
+ flash/providers/hyperstack/api.py,sha256=YaaDlV79FGQzAmzv4WirAg51suMGx1bAc0J3SL-k14k,25601
57
+ flash/providers/hyperstack/auth.py,sha256=XSdBi0Gee-5wSVLgJR-DKXSIBC9gW0qFY6jtHyPMqiI,601
58
+ flash/providers/hyperstack/gpus.py,sha256=gmB4FMvF4r08lboJDLgHOkz1AFgQkyyhA8zA-ZQjPaM,1085
59
+ flash/providers/hyperstack/preflight.py,sha256=Ciw8GMtVAv-p3R21rIVhPydkmxfOTSlTyPxOwhemSa0,898
60
+ flash/providers/hyperstack/pricing.py,sha256=wKo9tkwDcuFj7i6UXKDjLoJ7t-qZk5ZFIhRYq9y2AcE,1041
61
+ flash/providers/hyperstack/train.py,sha256=9KyJIg3zX852Q26uf2PJeB_XjuYl0upqCisPiFNMB-s,744
62
+ flash/providers/hyperstack/jobs/__init__.py,sha256=qaWqejlfLjETYS-nviNOtNpXGi1MQq0HlikYRH93VrA,30715
63
+ flash/providers/hyperstack/jobs/builders.py,sha256=M8QQYqwnbFnHHd1-FxjyVFzBum2dCXHhKM7JkvMPcDk,4633
64
+ flash/providers/lambdalabs/__init__.py,sha256=IdltIjaRJHr3GU-t5qT3Siy9osTsZerZYi0vVYywIyI,5817
65
+ flash/providers/lambdalabs/api.py,sha256=IdJ_7bETekTgf6ueeedu0Sp2jcx-_R37sLOaJlruAjc,11708
66
+ flash/providers/lambdalabs/auth.py,sha256=Imrh6P2G50L2GpgccJlVqgJC9JlfSFa-0vbrXu6Boxs,712
67
+ flash/providers/lambdalabs/gpus.py,sha256=jkSzHZfonOdPYiH8WkzqCHNzTXKdWoWFd4oD7goGI5k,1066
68
+ flash/providers/lambdalabs/preflight.py,sha256=NF7iBui4lhSXfxo-_nHfXEGsQoTvm-pFWAcEha5cxRE,1191
69
+ flash/providers/lambdalabs/pricing.py,sha256=h0yoQ4aCZJeH3yH3cmFDdXgqPy_rwfrnGxTiHT1AY44,1980
70
+ flash/providers/lambdalabs/train.py,sha256=D1s3piWufzU8i-lfHG-WnnttaPRT4zWK1f_54yTLs3w,889
71
+ flash/providers/lambdalabs/jobs/__init__.py,sha256=V9SS5o8y0uKNOpcjetYa_YDiNgUYPpLu2BxyJZcuFCI,37771
72
+ flash/providers/lambdalabs/jobs/builders.py,sha256=5bt8YiXfyROwTBirKj1Cg88WR1Nu6TdVwyPKjlwKcPc,4456
73
+ flash/providers/runpod/__init__.py,sha256=8S23RhBwk5_yWyoM-w5bck4Pb6GKXzJt3epnZ72RF2k,5184
74
+ flash/providers/runpod/api.py,sha256=O0cfSCvE2gBUHBKNO6_DlCJIzwoPj_pczRtiUmA1poI,8163
75
+ flash/providers/runpod/auth.py,sha256=vIcGauBYH6Xf4LHwtHzYDPdJ8v3GmthdSUF5u-PUTU0,1373
76
+ flash/providers/runpod/cost.py,sha256=neET8jcUvfqexFPReIFIELM5JAnP3G__81zY8VL_H7k,2062
77
+ flash/providers/runpod/gpus.py,sha256=13uqUPplhkKeeoU1PKTnYHGo-HSWrIoZ4b1PU1avot0,1514
78
+ flash/providers/runpod/jobs.py,sha256=5grq43YAH8f52kvVYswrfFiyEATIRt4Qb_Qg_pqk92s,48311
79
+ flash/providers/runpod/keys.py,sha256=T1QwV9ct4S8IS2erKokoqicpZGqBy-KQOSmwyV6TvaY,5631
80
+ flash/providers/runpod/preflight.py,sha256=Itokq7f5-USB0qUosuecvyBfOokcnhur-f2hJVFRaaI,1129
81
+ flash/providers/runpod/preload.py,sha256=GYnu4xYg-kozyDcexgOgriEDVszT4vQmwDLJvtFCY4A,53531
82
+ flash/providers/runpod/pricing.py,sha256=aEnlkiVlCBe2Xws8Q4CslsnsNBZQ1TiTN6W0-UpGvH0,553
83
+ flash/providers/runpod/slots.py,sha256=51rGWdE09vWL3HsEWjn1zYzrmqiy8Iwj2yi1rlhR1Pw,3248
84
+ flash/providers/runpod/train/__init__.py,sha256=2F9aVfQxGwCVUWffqzziTeHyeuDoinKwGzzGFJZvxzQ,6093
85
+ flash/providers/runpod/train/deps.py,sha256=_XXfFgEMNpn8BTOnibpWl0CFztPoZo3KJ9SHLZCc9Ow,23898
86
+ flash/providers/runpod/train/endpoints.py,sha256=CVMdbY9qvLwmAsj5jmiqM95og8sb80jAoU8ylIi1wAQ,40931
87
+ flash/runner/__init__.py,sha256=aBYaXB0XtiCcIj7Bu9tRQZQ6wh1VAj5cdbPBD_E9vP4,35676
88
+ flash/runner/checkpoints.py,sha256=DURkItXhPXpFWk_epNeulO1n5u5PYpaiZOJy-Lnqtyc,3718
89
+ flash/runner/deploy.py,sha256=BM3rm1xwwue3Z8docIOmVWDxAFRAbxbja6uyy3q2Eo8,22397
90
+ flash/runner/lifecycle.py,sha256=__WrvxVyykQPKbeHd5HpcowX7zbb8yEPezoebTnmhw0,35377
91
+ flash/schema/__init__.py,sha256=jmWZKiwBqi8TvvCCODiZGvOHLb9FYdDo0i0YT5unkxs,17447
92
+ flash/schema/fields.py,sha256=eWcNH1KRd_FoQHtV-cXJac-nDZamVLybKoQy5vo2sCE,12970
93
+ flash/serve/__init__.py,sha256=TNy-DUr2aKP9tov5e7-94o9MprX2aFBqiP2la_xAQi8,31
94
+ flash/serve/deploy.py,sha256=x6QYElNUQuO-9OGNyFN9Pl2d3bnDsMiMfLSzKl9a7D8,13845
95
+ flash/serve/pricing.py,sha256=Fm1uYDadfzwuNjQIlBuB_bfWXKcklcNj5XnsmIaZO28,1885
96
+ flash/server/__init__.py,sha256=YzJNCiXYCNmDh-Qdb6oqBZ6NpNI1T1G8_iClCcIJ-C4,33
97
+ flash/server/__main__.py,sha256=4lsO35htkE79Ob2_V1bycu2QRYZPNtzCGxZzNa8NqrY,557
98
+ flash/server/app.py,sha256=-3edd3x5hi8iH4PqL-68aLJq8XErW1mzdXibHyNjZmE,46855
99
+ flash/server/auth.py,sha256=fxGiTah-z_YNSlUOADNTakshGC-Wk5YHE0GVDvlPk4U,11470
100
+ flash/server/billing.py,sha256=aHFAxxpL9m8EpEXIyTjdz1C03JeBvSNU1DytMrFzi5k,4944
101
+ flash/server/checkpoints.py,sha256=NN66hooZToR5SNyVLf08TwTxZvNJPZOaELomDEXcLHM,4483
102
+ flash/server/db.py,sha256=4GGk89gl_cOLIJlVYfRZKU6mepd7gBR9wGFRTc8sxXU,5985
103
+ flash/server/environment_registry.py,sha256=DXu8lNLSc4qS61p2Dd9KQ3bS5IentmvpeluVpZwsJjA,3495
104
+ flash/server/envs.py,sha256=TJ3wzI-Jl8OD30IbEvnVqPCfYgT7SdhljR-DHNGGk04,13019
105
+ flash/server/reconcile.py,sha256=lqNQv5474olhwFsWNwywiZhRcg9-oI29o68p7_ILlgU,8381
106
+ flash/server/run_registry.py,sha256=dVd8D_QWXnQTdXgi7FfHDYmEBwFnW1K_KmBEFCQ0PA8,5046
107
+ freesolo_flash_dev-0.2.25.dist-info/METADATA,sha256=0cVsgvaPwr-gcVaXScJTPI2rgDxdKrka_ev0oRbIE8Q,8131
108
+ freesolo_flash_dev-0.2.25.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
109
+ freesolo_flash_dev-0.2.25.dist-info/entry_points.txt,sha256=_PszqdzV1msZhF3IzA5kH6SvicUNrnb1kg0MK9__efo,96
110
+ freesolo_flash_dev-0.2.25.dist-info/licenses/LICENSE,sha256=LxHijGouCYo-sxuRcBPTApC0Y7GrzCF4XLTYKhMjk94,11338
111
+ freesolo_flash_dev-0.2.25.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ flash-dev = flash.cli.main:main
3
+ flash-dev-server = flash.server.__main__:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Freesolo
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.