cudag 0.3.10__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 (69) hide show
  1. cudag/__init__.py +334 -0
  2. cudag/annotation/__init__.py +77 -0
  3. cudag/annotation/codegen.py +648 -0
  4. cudag/annotation/config.py +545 -0
  5. cudag/annotation/loader.py +342 -0
  6. cudag/annotation/scaffold.py +121 -0
  7. cudag/annotation/transcription.py +296 -0
  8. cudag/cli/__init__.py +5 -0
  9. cudag/cli/main.py +315 -0
  10. cudag/cli/new.py +873 -0
  11. cudag/core/__init__.py +364 -0
  12. cudag/core/button.py +137 -0
  13. cudag/core/canvas.py +222 -0
  14. cudag/core/config.py +70 -0
  15. cudag/core/coords.py +233 -0
  16. cudag/core/data_grid.py +804 -0
  17. cudag/core/dataset.py +678 -0
  18. cudag/core/distribution.py +136 -0
  19. cudag/core/drawing.py +75 -0
  20. cudag/core/fonts.py +156 -0
  21. cudag/core/generator.py +163 -0
  22. cudag/core/grid.py +367 -0
  23. cudag/core/grounding_task.py +247 -0
  24. cudag/core/icon.py +207 -0
  25. cudag/core/iconlist_task.py +301 -0
  26. cudag/core/models.py +1251 -0
  27. cudag/core/random.py +130 -0
  28. cudag/core/renderer.py +190 -0
  29. cudag/core/screen.py +402 -0
  30. cudag/core/scroll_task.py +254 -0
  31. cudag/core/scrollable_grid.py +447 -0
  32. cudag/core/state.py +110 -0
  33. cudag/core/task.py +293 -0
  34. cudag/core/taskbar.py +350 -0
  35. cudag/core/text.py +212 -0
  36. cudag/core/utils.py +82 -0
  37. cudag/data/surnames.txt +5000 -0
  38. cudag/modal_apps/__init__.py +4 -0
  39. cudag/modal_apps/archive.py +103 -0
  40. cudag/modal_apps/extract.py +138 -0
  41. cudag/modal_apps/preprocess.py +529 -0
  42. cudag/modal_apps/upload.py +317 -0
  43. cudag/prompts/SYSTEM_PROMPT.txt +104 -0
  44. cudag/prompts/__init__.py +33 -0
  45. cudag/prompts/system.py +43 -0
  46. cudag/prompts/tools.py +382 -0
  47. cudag/py.typed +0 -0
  48. cudag/schemas/filesystem.json +90 -0
  49. cudag/schemas/test_record.schema.json +113 -0
  50. cudag/schemas/train_record.schema.json +90 -0
  51. cudag/server/__init__.py +21 -0
  52. cudag/server/app.py +232 -0
  53. cudag/server/services/__init__.py +9 -0
  54. cudag/server/services/generator.py +128 -0
  55. cudag/templates/scripts/archive.sh +35 -0
  56. cudag/templates/scripts/build.sh +13 -0
  57. cudag/templates/scripts/extract.sh +54 -0
  58. cudag/templates/scripts/generate.sh +116 -0
  59. cudag/templates/scripts/pre-commit.sh +44 -0
  60. cudag/templates/scripts/preprocess.sh +46 -0
  61. cudag/templates/scripts/upload.sh +63 -0
  62. cudag/templates/scripts/verify.py +428 -0
  63. cudag/validation/__init__.py +35 -0
  64. cudag/validation/validate.py +508 -0
  65. cudag-0.3.10.dist-info/METADATA +570 -0
  66. cudag-0.3.10.dist-info/RECORD +69 -0
  67. cudag-0.3.10.dist-info/WHEEL +4 -0
  68. cudag-0.3.10.dist-info/entry_points.txt +2 -0
  69. cudag-0.3.10.dist-info/licenses/LICENSE +66 -0
@@ -0,0 +1,66 @@
1
+ TYLT LLC PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2025 Tylt LLC. All Rights Reserved.
4
+
5
+ 1. DEFINITIONS
6
+
7
+ "Software" means all source code, object code, documentation, and
8
+ associated materials in this repository.
9
+
10
+ "Commercial Use" means any use of the Software that is intended for
11
+ or results in commercial advantage or monetary compensation, including
12
+ but not limited to: (a) use in production environments, (b) use in
13
+ products or services offered to third parties, (c) use in internal
14
+ business operations that generate revenue.
15
+
16
+ "Research Use" means use solely for non-commercial academic research,
17
+ educational purposes, or personal experimentation.
18
+
19
+ 2. GRANT OF LICENSE
20
+
21
+ Subject to the terms of this License, Tylt LLC grants you a limited,
22
+ non-exclusive, non-transferable, revocable license to view and use
23
+ the Software solely for Research Use.
24
+
25
+ 3. RESTRICTIONS
26
+
27
+ You may NOT:
28
+ (a) Use the Software for any Commercial Use without a separate
29
+ commercial license agreement;
30
+ (b) Distribute, sublicense, sell, or transfer the Software;
31
+ (c) Remove or alter any proprietary notices;
32
+ (d) Create derivative works for commercial purposes;
33
+ (e) Use the Software to compete with Tylt LLC's products or services.
34
+
35
+ 4. COMMERCIAL LICENSING
36
+
37
+ Any Commercial Use requires a separate written license agreement with
38
+ Tylt LLC. Commercial licensees shall pay a royalty equal to one percent
39
+ (1%) of annual gross revenue attributable to products or services that
40
+ incorporate, utilize, or are derived from the Software.
41
+
42
+ Tylt LLC reserves the right to audit licensee records to verify
43
+ compliance. Contact: hello@claimhawk.app
44
+
45
+ 5. INTELLECTUAL PROPERTY
46
+
47
+ Tylt LLC retains all right, title, and interest in and to the Software,
48
+ including all intellectual property rights. No rights are granted except
49
+ as explicitly stated herein. No patent license is granted.
50
+
51
+ 6. NO WARRANTY
52
+
53
+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS
54
+ OR IMPLIED. TYLT LLC DISCLAIMS ALL LIABILITY FOR DAMAGES ARISING FROM
55
+ USE OF THE SOFTWARE.
56
+
57
+ 7. TERMINATION
58
+
59
+ This license terminates automatically upon any breach. Upon termination,
60
+ you must destroy all copies of the Software.
61
+
62
+ 8. GOVERNING LAW
63
+
64
+ This License shall be governed by the laws of the State of Delaware, USA.
65
+
66
+ For commercial licensing inquiries: hello@claimhawk.app