foodforthought-cli 0.2.7__py3-none-any.whl → 0.3.0__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 (131) hide show
  1. ate/__init__.py +6 -0
  2. ate/__main__.py +16 -0
  3. ate/auth/__init__.py +1 -0
  4. ate/auth/device_flow.py +141 -0
  5. ate/auth/token_store.py +96 -0
  6. ate/behaviors/__init__.py +100 -0
  7. ate/behaviors/approach.py +399 -0
  8. ate/behaviors/common.py +686 -0
  9. ate/behaviors/tree.py +454 -0
  10. ate/cli.py +855 -3995
  11. ate/client.py +90 -0
  12. ate/commands/__init__.py +168 -0
  13. ate/commands/auth.py +389 -0
  14. ate/commands/bridge.py +448 -0
  15. ate/commands/data.py +185 -0
  16. ate/commands/deps.py +111 -0
  17. ate/commands/generate.py +384 -0
  18. ate/commands/memory.py +907 -0
  19. ate/commands/parts.py +166 -0
  20. ate/commands/primitive.py +399 -0
  21. ate/commands/protocol.py +288 -0
  22. ate/commands/recording.py +524 -0
  23. ate/commands/repo.py +154 -0
  24. ate/commands/simulation.py +291 -0
  25. ate/commands/skill.py +303 -0
  26. ate/commands/skills.py +487 -0
  27. ate/commands/team.py +147 -0
  28. ate/commands/workflow.py +271 -0
  29. ate/detection/__init__.py +38 -0
  30. ate/detection/base.py +142 -0
  31. ate/detection/color_detector.py +399 -0
  32. ate/detection/trash_detector.py +322 -0
  33. ate/drivers/__init__.py +39 -0
  34. ate/drivers/ble_transport.py +405 -0
  35. ate/drivers/mechdog.py +942 -0
  36. ate/drivers/wifi_camera.py +477 -0
  37. ate/interfaces/__init__.py +187 -0
  38. ate/interfaces/base.py +273 -0
  39. ate/interfaces/body.py +267 -0
  40. ate/interfaces/detection.py +282 -0
  41. ate/interfaces/locomotion.py +422 -0
  42. ate/interfaces/manipulation.py +408 -0
  43. ate/interfaces/navigation.py +389 -0
  44. ate/interfaces/perception.py +362 -0
  45. ate/interfaces/sensors.py +247 -0
  46. ate/interfaces/types.py +371 -0
  47. ate/llm_proxy.py +239 -0
  48. ate/mcp_server.py +387 -0
  49. ate/memory/__init__.py +35 -0
  50. ate/memory/cloud.py +244 -0
  51. ate/memory/context.py +269 -0
  52. ate/memory/embeddings.py +184 -0
  53. ate/memory/export.py +26 -0
  54. ate/memory/merge.py +146 -0
  55. ate/memory/migrate/__init__.py +34 -0
  56. ate/memory/migrate/base.py +89 -0
  57. ate/memory/migrate/pipeline.py +189 -0
  58. ate/memory/migrate/sources/__init__.py +13 -0
  59. ate/memory/migrate/sources/chroma.py +170 -0
  60. ate/memory/migrate/sources/pinecone.py +120 -0
  61. ate/memory/migrate/sources/qdrant.py +110 -0
  62. ate/memory/migrate/sources/weaviate.py +160 -0
  63. ate/memory/reranker.py +353 -0
  64. ate/memory/search.py +26 -0
  65. ate/memory/store.py +548 -0
  66. ate/recording/__init__.py +83 -0
  67. ate/recording/demonstration.py +378 -0
  68. ate/recording/session.py +415 -0
  69. ate/recording/upload.py +304 -0
  70. ate/recording/visual.py +416 -0
  71. ate/recording/wrapper.py +95 -0
  72. ate/robot/__init__.py +221 -0
  73. ate/robot/agentic_servo.py +856 -0
  74. ate/robot/behaviors.py +493 -0
  75. ate/robot/ble_capture.py +1000 -0
  76. ate/robot/ble_enumerate.py +506 -0
  77. ate/robot/calibration.py +668 -0
  78. ate/robot/calibration_state.py +388 -0
  79. ate/robot/commands.py +3735 -0
  80. ate/robot/direction_calibration.py +554 -0
  81. ate/robot/discovery.py +441 -0
  82. ate/robot/introspection.py +330 -0
  83. ate/robot/llm_system_id.py +654 -0
  84. ate/robot/locomotion_calibration.py +508 -0
  85. ate/robot/manager.py +270 -0
  86. ate/robot/marker_generator.py +611 -0
  87. ate/robot/perception.py +502 -0
  88. ate/robot/primitives.py +614 -0
  89. ate/robot/profiles.py +281 -0
  90. ate/robot/registry.py +322 -0
  91. ate/robot/servo_mapper.py +1153 -0
  92. ate/robot/skill_upload.py +675 -0
  93. ate/robot/target_calibration.py +500 -0
  94. ate/robot/teach.py +515 -0
  95. ate/robot/types.py +242 -0
  96. ate/robot/visual_labeler.py +1048 -0
  97. ate/robot/visual_servo_loop.py +494 -0
  98. ate/robot/visual_servoing.py +570 -0
  99. ate/robot/visual_system_id.py +906 -0
  100. ate/transports/__init__.py +121 -0
  101. ate/transports/base.py +394 -0
  102. ate/transports/ble.py +405 -0
  103. ate/transports/hybrid.py +444 -0
  104. ate/transports/serial.py +345 -0
  105. ate/urdf/__init__.py +30 -0
  106. ate/urdf/capture.py +582 -0
  107. ate/urdf/cloud.py +491 -0
  108. ate/urdf/collision.py +271 -0
  109. ate/urdf/commands.py +708 -0
  110. ate/urdf/depth.py +360 -0
  111. ate/urdf/inertial.py +312 -0
  112. ate/urdf/kinematics.py +330 -0
  113. ate/urdf/lifting.py +415 -0
  114. ate/urdf/meshing.py +300 -0
  115. ate/urdf/models/__init__.py +110 -0
  116. ate/urdf/models/depth_anything.py +253 -0
  117. ate/urdf/models/sam2.py +324 -0
  118. ate/urdf/motion_analysis.py +396 -0
  119. ate/urdf/pipeline.py +468 -0
  120. ate/urdf/scale.py +256 -0
  121. ate/urdf/scan_session.py +411 -0
  122. ate/urdf/segmentation.py +299 -0
  123. ate/urdf/synthesis.py +319 -0
  124. ate/urdf/topology.py +336 -0
  125. ate/urdf/validation.py +371 -0
  126. {foodforthought_cli-0.2.7.dist-info → foodforthought_cli-0.3.0.dist-info}/METADATA +9 -1
  127. foodforthought_cli-0.3.0.dist-info/RECORD +166 -0
  128. {foodforthought_cli-0.2.7.dist-info → foodforthought_cli-0.3.0.dist-info}/WHEEL +1 -1
  129. foodforthought_cli-0.2.7.dist-info/RECORD +0 -44
  130. {foodforthought_cli-0.2.7.dist-info → foodforthought_cli-0.3.0.dist-info}/entry_points.txt +0 -0
  131. {foodforthought_cli-0.2.7.dist-info → foodforthought_cli-0.3.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: foodforthought-cli
3
- Version: 0.2.7
3
+ Version: 0.3.0
4
4
  Summary: CLI tool for FoodforThought robotics repository platform - manage robot skills and data
5
5
  Home-page: https://kindly.fyi/foodforthought
6
6
  Author: Kindly Robotics
@@ -28,9 +28,17 @@ Requires-Dist: requests>=2.28.0
28
28
  Provides-Extra: robot-setup
29
29
  Requires-Dist: pyserial>=3.5; extra == "robot-setup"
30
30
  Requires-Dist: anthropic>=0.18.0; extra == "robot-setup"
31
+ Provides-Extra: detection
32
+ Requires-Dist: Pillow>=9.0.0; extra == "detection"
33
+ Provides-Extra: visual-labeling
34
+ Requires-Dist: pyserial>=3.5; extra == "visual-labeling"
35
+ Requires-Dist: opencv-python>=4.5.0; extra == "visual-labeling"
36
+ Requires-Dist: Pillow>=9.0.0; extra == "visual-labeling"
31
37
  Provides-Extra: all
32
38
  Requires-Dist: pyserial>=3.5; extra == "all"
33
39
  Requires-Dist: anthropic>=0.18.0; extra == "all"
40
+ Requires-Dist: Pillow>=9.0.0; extra == "all"
41
+ Requires-Dist: opencv-python>=4.5.0; extra == "all"
34
42
  Dynamic: author
35
43
  Dynamic: author-email
36
44
  Dynamic: classifier
@@ -0,0 +1,166 @@
1
+ ate/__init__.py,sha256=Cz_VuDnr1YKp2Tx2JfCySdEVmCZa3g-hru0zojOGBQo,272
2
+ ate/__main__.py,sha256=vlNTxvw6t20WrGPOa4n-RQk9BpBODTib9aFh8H310Jk,329
3
+ ate/bridge_server.py,sha256=FI9PSLzq_eW9JYUS_qzTHZ4NnOkIr7G7sdwTWSYaMnQ,21365
4
+ ate/cli.py,sha256=gg0nzdvyrH9SONQHzE3hQGT_ic8SrGDKa0Z8ifKqq7g,36866
5
+ ate/client.py,sha256=aHW2DCnqlnO29IjYirv1Qhxen46yu157tXxpV676nQQ,3252
6
+ ate/compatibility.py,sha256=K5pSpPVHLgPSIF-a6kIJrehI9wl5AH3Cx76rOFCUZ2k,23094
7
+ ate/generator.py,sha256=DUPat3cmoe9ufPajHFoI5kK6tfvPtVtB9gLvTlJzPdU,18308
8
+ ate/llm_proxy.py,sha256=IaSSUIS2yByfyYuFvf0-fk1rK1aMiZe3l4ZSmg0onWw,7182
9
+ ate/marketplace.py,sha256=oLZOm8GbOOuxvsB45836KiTW7lCI_wSfIh-VY6crlYA,17474
10
+ ate/mcp_server.py,sha256=cAPVzAnf7JzXPtgMgHmt5wDKeHclOrmXx9TGv1XgSiQ,119327
11
+ ate/primitives.py,sha256=mku_-ivbBiTth90ru6wLZg4by-f6Fkds4D9l6PrroFI,30390
12
+ ate/robot_setup.py,sha256=5KNYHh2RSWy5Y9hA3F56HQYa7HD8Y7VLq3gcuNV-wnQ,91800
13
+ ate/skill_schema.py,sha256=q5zOrYJV2FVR59cW5UN9OowHLxtnwstWMF1pa5XgvtE,17719
14
+ ate/auth/__init__.py,sha256=hd3Yhi1M0W8ZIL09Xo8GxuYlItZ-Fk6gSnTziq0akXk,68
15
+ ate/auth/device_flow.py,sha256=ZA4AT-9vM48PN11Dr3lYmjrTm6lEAlX-RzuiK3TDoAk,4395
16
+ ate/auth/token_store.py,sha256=lBGOg_Yw4jP_m0U3qoFnMIW5JevNteJ4KOoDNnVmO7Y,2984
17
+ ate/behaviors/__init__.py,sha256=UPXVbuVc6RFLJgA7iys8DvPZm4g9lalRCllABUDE0Sc,1888
18
+ ate/behaviors/approach.py,sha256=pKXfGRPzCCeYGQ4cO3NP_orLH4Yk1myMPkMV_xm-O6Y,13821
19
+ ate/behaviors/common.py,sha256=FKeLW6wamw-IreEvGAuWxZO_sMvVxFET12ZSRQXJRc0,20030
20
+ ate/behaviors/tree.py,sha256=vIOwGg_jf4V74WClNAyQ_svKJYpW_YFp-PasT-N9sA8,12108
21
+ ate/commands/__init__.py,sha256=NMgTzCT3DMwf6IVPOfoHiXrbeFrS6nxXqN9tHvInVkw,4686
22
+ ate/commands/auth.py,sha256=-ZzitlesUZNMgeipo2koyGQDRazDROj-99WHPvhSijk,12087
23
+ ate/commands/bridge.py,sha256=fcPMRL0BAO2ycby9aeh_Gqgpi2kF352e3r6nLmA7OKA,18483
24
+ ate/commands/data.py,sha256=9nvJbIkVyuRBT46PtjQW0XMktlNzaMsH19a4v3-3arw,6516
25
+ ate/commands/deps.py,sha256=uUa8yzbOGxNwGt1EqhLgztyzp7qC-BHTU90HLYgJ3iQ,3806
26
+ ate/commands/generate.py,sha256=Qgp84oibxdD9hv1PnyYy5_1784HOragTEfC1VjXW3hY,14959
27
+ ate/commands/memory.py,sha256=ctGQq7dBZ65J6SBoLNXDvDMy7tBzHV6HeaT21Ziv48I,35299
28
+ ate/commands/parts.py,sha256=KElDu8m1gJri6RPeR2aMqcEXtXJf0G4iuTQ9_9okNjg,6269
29
+ ate/commands/primitive.py,sha256=DgTqikRqMyu58Y4r48qfOlJwZOlR0YUygbOosqIrY6Y,16745
30
+ ate/commands/protocol.py,sha256=Bwhnt6rOeUDrtUauuFwSxScKNSw_2v0GLokgClkiKFk,10660
31
+ ate/commands/recording.py,sha256=za8Z0xHt7hCkQcS_QQGr5MwJVaPjdEX434pOSW1fLSA,20019
32
+ ate/commands/repo.py,sha256=oBfIUml8amQoCVUpf5Mv5UoM-eRO4nsXE_RS2HFhy5s,5064
33
+ ate/commands/simulation.py,sha256=d87NrOkCovnDsq8LJejBv7F1jDNMD9WaZxrJ9P573yo,10509
34
+ ate/commands/skill.py,sha256=pVYBNu7x65icpTcpiiPN9TBYaEslnbYvKAmfpIN_ZrI,11401
35
+ ate/commands/skills.py,sha256=qY-fBAamFLcNtfoL9-z4z2O_fUl_Bn4o9MCCKzg89Pg,18127
36
+ ate/commands/team.py,sha256=1ofsOeAL51pvnIleGJZysRhmZRClhQTjRYEAe3ROLKc,4841
37
+ ate/commands/workflow.py,sha256=vi1kG8ObUOlUudIOuZhbDDK95kwyve6nc1M1oPzMeZQ,9307
38
+ ate/detection/__init__.py,sha256=j3bSY0rtlxfXdqyYKiHvdELyrK0txFawtM8ISuPQ09E,950
39
+ ate/detection/base.py,sha256=kaJQ8ZzJhDxBVTrL5lQKCmMl1yV3qz51Xf87FjjDxPA,4037
40
+ ate/detection/color_detector.py,sha256=5TuUxUEBQGX4UJZcVGncP7K6XDM2rGU7qcQXaGqWcr4,12718
41
+ ate/detection/trash_detector.py,sha256=rTQH3U_NHvSzquqxpvSBfKvyjSNqk7OLb4QaNV64Iw8,10407
42
+ ate/drivers/__init__.py,sha256=y4eoc55zPYkOy3Q0y07kHhB4Z7-XQyaR2SDp6Rz5-ys,888
43
+ ate/drivers/ble_transport.py,sha256=qfDtvbnPG9cOBJ2XciqYyVeIvtXSC772E8Usn6EGr9E,12304
44
+ ate/drivers/mechdog.py,sha256=l5bAGPouBB1Z8PHBjjfG4D_GQKryaDxiLGCEewbQS04,32483
45
+ ate/drivers/wifi_camera.py,sha256=6RMxez55Du6Dizxkg--8KhKYB0heVhM7qDyoZgeL5-4,16686
46
+ ate/generators/__init__.py,sha256=8tVjL3FpiesAH6SaSAIlwP1ctlP5GBXbptUaOOGMuvI,544
47
+ ate/generators/docker_generator.py,sha256=Q2ux-db_9AZfmogB4O0JL_0s0nv38JzTiSpOnkPEBqI,11779
48
+ ate/generators/hardware_config.py,sha256=FU5ntIzpxPAVecgqRHKCOUdUoFYRwVc_kz9DinZRcXA,15986
49
+ ate/generators/ros2_generator.py,sha256=Sx8GIoYhBCRuv0L9Y9QlZvgoR2GOGm5tCpGyGvG3YmY,19765
50
+ ate/generators/skill_generator.py,sha256=WLNxM437bL0iXf4UlAXYstNI5RSmBhzFSGKQdfJsLAc,28631
51
+ ate/interfaces/__init__.py,sha256=PBNe0QtrjTIWUxlwbz8X_nqPx103wNhpHGiDJwOEvww,4150
52
+ ate/interfaces/base.py,sha256=4AYdfLrmgsgWBUMcSEIsAQYTmZVWCHV9MnK2fe9mFEc,7308
53
+ ate/interfaces/body.py,sha256=Tw9doFoWDDkcIWTQq87NhtKO5G2TF_xx4YUfBAtz2Jk,7585
54
+ ate/interfaces/detection.py,sha256=-MtUARl9lG610Eht2f0zniGwJbrNv1hrsfrsCHrfQsA,8762
55
+ ate/interfaces/locomotion.py,sha256=mQDM6zl-hhFrrQS79-z7EHM9h5BpniRUFlrLxMNobi8,10674
56
+ ate/interfaces/manipulation.py,sha256=YSmx3DMyPOPeEj-uyyGNpJTbzF_g6VOFujHDCo9tAvQ,10598
57
+ ate/interfaces/navigation.py,sha256=wdt56qX-ipLq0H_llhjxIsj0yPVnYfTy-SfkzUEUyPo,11053
58
+ ate/interfaces/perception.py,sha256=IRBhIZx4D5Q20EfgAhgw-8GfYYUsMG1NkzuPxdGef1A,8756
59
+ ate/interfaces/sensors.py,sha256=DnuU9o5XNrcJvlH68sHyHEYXM01xRIRUIfY0tN-a3u8,7247
60
+ ate/interfaces/types.py,sha256=1u8cPEUeYJGIuUyNhJKP9CFGeXCigdUo8D1bgfh58Co,11303
61
+ ate/memory/__init__.py,sha256=iSJmiogRWYqkMVre7PHlnsktydvKrrlWyDSqjpFClx4,1181
62
+ ate/memory/cloud.py,sha256=Jp9Jdm-TNMPzve3yL7NaHqYCKuPU2LPScDNLyeTe4Js,7058
63
+ ate/memory/context.py,sha256=LpT0UQsqmCioN651ZTTnplbC05INh7Qq31gBjhx1Vb0,9836
64
+ ate/memory/embeddings.py,sha256=B7EL3xs0gRhVvgRj5ywzYpn39sT8Uzq8gG6sKwvFiD4,5733
65
+ ate/memory/export.py,sha256=ZHJhhyxcAhU0pQt2abbu8QlTCp2qsySFtstlbbfWNBo,735
66
+ ate/memory/merge.py,sha256=tsC6sU4E0VfFf6M8l3oYHvNT59X97yZHgaeFhRQB1JM,6318
67
+ ate/memory/reranker.py,sha256=RwTujfvBZBRmjRKzfY1IhQ_NVvaXTmcLJqrVyzoOBJI,12643
68
+ ate/memory/search.py,sha256=oz8zgf91ixRdrS7z0IL7vsT25smEQoxYsWofvalVols,754
69
+ ate/memory/store.py,sha256=Ea3BLciiTqSIfCIcjG9hKe5Tmo2VAeKA79S0yQsYlgc,20752
70
+ ate/memory/migrate/__init__.py,sha256=k5D9fqUj5aiN71PpEwakV4eDPxGoXYHI1KBfRsCUp-o,718
71
+ ate/memory/migrate/base.py,sha256=D8wS8PplvoM47m544tP2kIE54RiMVMXIi9OwJ9OHCbc,2323
72
+ ate/memory/migrate/pipeline.py,sha256=NeQ6eXeUS0PeclD8T3qUtW3hacaDMyK0QYO2K-PIvO0,7369
73
+ ate/memory/migrate/sources/__init__.py,sha256=uq6bcMfid8PtIwbqEqM-_3JWvO1r21DsoTp2B3mYz2s,367
74
+ ate/memory/migrate/sources/chroma.py,sha256=GOsW98A-c3kcPk3J3SRlNDDh2zUqfm-FNUfgxNSyjiA,6326
75
+ ate/memory/migrate/sources/pinecone.py,sha256=RhYBgq49ZXOXd7VJfhA4XAE_UUVeZfxOHgxp-z3WFXE,4365
76
+ ate/memory/migrate/sources/qdrant.py,sha256=vG2LiFANRoUPzM3-cK1cQUidkT2AoVt8KeZCrPvIElg,3828
77
+ ate/memory/migrate/sources/weaviate.py,sha256=QjSKoPfVqD1A_E4uHMLfC5WF2NUXlYqfL4e6za-HnLY,5881
78
+ ate/recording/__init__.py,sha256=9sOCTaoavLS-JpIFeRbzD8GK48pzygH96aDuwWi9FFo,2245
79
+ ate/recording/demonstration.py,sha256=MsZNDJxb18OrXT0dudw9wdRRrImLgaOx6QMTYE73pUM,12779
80
+ ate/recording/session.py,sha256=a6i5NtjWBHn2o50NiTgnqM_vCHubEiKV47ZoHcJ5AdI,14557
81
+ ate/recording/upload.py,sha256=pp3wt6RJQdZalfRoUNt6A6DYR_hhrNLgIVG5GU7m7eA,10000
82
+ ate/recording/visual.py,sha256=W4A12AEtGGcehlHMwB88EREUN4CVMVOlGs7CACFoUnk,13710
83
+ ate/recording/wrapper.py,sha256=9A6uodDZWc7yps9NFiZBSHYCRCgtP5cYedHaWOXnyQQ,2667
84
+ ate/robot/__init__.py,sha256=3XisSynFhrzSBkm_AkhufbtywRSbIVH_uBa05j7AhZ0,4585
85
+ ate/robot/agentic_servo.py,sha256=Un1JUJPiT_9GVgmY2fa7m1wSGmoclS5skKlUJl1ryrQ,28342
86
+ ate/robot/behaviors.py,sha256=n38DsSvP1Ucwyceg6rYQVYWJBIaQdSy-5W1SLfZVxuU,16027
87
+ ate/robot/ble_capture.py,sha256=AE0dvHVFrXfCLJ-pyvIF-h0fNuNDkHuYrAZ5fl7ZOfw,33045
88
+ ate/robot/ble_enumerate.py,sha256=sqRZ8mbpGdDtpQuokoVWJ8WZ24gSmi5knZmDK1R2c8Q,17661
89
+ ate/robot/calibration.py,sha256=xeDSIfHLTOjIMK8satPFvzyawrrU68ebxrKiad_Wl8M,21808
90
+ ate/robot/calibration_state.py,sha256=iiIDO6z_f_8T0TRcnIzdUpfQCqV7g4IbVKlDmx4gj58,13463
91
+ ate/robot/commands.py,sha256=jD3XS6LSrzLVE2EKWc9gc2yGbzXwXQJ0WQRxnpgxESs,139411
92
+ ate/robot/direction_calibration.py,sha256=jQ-5jcR8Ry-XPvQW7GZP72aVGgdovEkZYSfaR1IP16c,18881
93
+ ate/robot/discovery.py,sha256=A3LSIyhoqj80e4gljriOFb89WZzdx451OO18kBxZm3M,12807
94
+ ate/robot/introspection.py,sha256=in2ziySCc11G-AqiWurIsaro16oK7D-xzatbTs8OQlQ,9332
95
+ ate/robot/llm_system_id.py,sha256=8xihkhzwuYASokNredzyU0kC8SkdLH4cQMLqAvfE2e8,21565
96
+ ate/robot/locomotion_calibration.py,sha256=9F9KQJkypN2KUyxehPbNLZmI1qAFME1rBNVJxiQ71xo,16166
97
+ ate/robot/manager.py,sha256=MR7SZYkB76sOs3Jitu_ou6-hOy8yWuGzP6yaAjt2usU,7253
98
+ ate/robot/marker_generator.py,sha256=2RV284zItL55Xh8QA-uzksF5JZr3hmvuizR-NDu0wBE,19267
99
+ ate/robot/perception.py,sha256=v2GrGEQ8pMPJvXS7d-iuUYT-zSUdZRb6abDcg_n48MY,15511
100
+ ate/robot/primitives.py,sha256=5-E_z0iFJ9MtxaaA5_4brbnXb5JK6Ueh6R2kXB2pbEA,21856
101
+ ate/robot/profiles.py,sha256=aKI62ndWWiWytaKSTCR7C0ZrQnb7gyBQwZ1X3UdDSoo,7146
102
+ ate/robot/registry.py,sha256=ydyoy_zFcICLs0gFXEi5PJgYEDkszHpAF49cWFyRU5Y,8819
103
+ ate/robot/servo_mapper.py,sha256=NU7PBknxsPpvh-jBBLCIB_Gj5XlIUApbRUwjxPPVV-M,39240
104
+ ate/robot/skill_upload.py,sha256=jRDny0tBXN5zsz5Jb4RfwmYCwB6lz5HRvayxKJ6Vyf4,24013
105
+ ate/robot/target_calibration.py,sha256=GIzddwr42p8bceLyzcRTcjdQ7pCwLf--HMJgQAe_N-I,16944
106
+ ate/robot/teach.py,sha256=FRZosw6LPWMjwcCIH2ApfKCSuSaRyNPKm5TefDjKYIE,17438
107
+ ate/robot/types.py,sha256=7ZZR9xcIiDHsh1FV5p1ZhzCskaVwrT9ryInhl1hSDdY,7101
108
+ ate/robot/visual_labeler.py,sha256=s9fO-qsMnYASZEMoklHcZre97vDq7xsEiL1RXK9Mazw,34988
109
+ ate/robot/visual_servo_loop.py,sha256=NLoEhS-mftW1qQNYXyEa3zmAdqqkxg0XuSVCxw17lsY,17336
110
+ ate/robot/visual_servoing.py,sha256=eganZtC20jSmedEz3TbIUrrjQlmyxE4ePZGpQIg5WtI,17802
111
+ ate/robot/visual_system_id.py,sha256=mH-x28_gGox80P8aSuKlseWpK9mY4abQjROIl__JgR0,30170
112
+ ate/telemetry/__init__.py,sha256=qNUnu4n33vJn53AfUVNvME0C8Fc4smUCmXOFsBHTtzs,669
113
+ ate/telemetry/cli.py,sha256=-Jzp3HXkQsm9_Q0qQgt3HDzOMSqsZsPwycwV3eS2Gl0,15816
114
+ ate/telemetry/collector.py,sha256=3A4JSa_d3XUaVPYi4SVHI1pgkPBh2KFhO56ToBhO8R4,15844
115
+ ate/telemetry/context.py,sha256=km-b7ge31vbfN7HhFEErdCOkdXCEl-a9e6j5szqbziA,10429
116
+ ate/telemetry/fleet_agent.py,sha256=iWKSXmnASumTArvO4ek7Wcv019dvnkJAdLH9spsKnSw,14260
117
+ ate/telemetry/types.py,sha256=5kgwXGoQ-_kuD4gszlaXW7LN9L6lKmSyt4EOPeoZlSo,11066
118
+ ate/telemetry/formats/__init__.py,sha256=a9ylB6nSJMbLIarBq60gEMpznHSs2d3JMY3uIeUt4F4,458
119
+ ate/telemetry/formats/hdf5_serializer.py,sha256=RgACw9S8J5ZRkj1GML0ib4k0WHWx30TAemIw-Nko1l8,18703
120
+ ate/telemetry/formats/mcap_serializer.py,sha256=7wsDzguseApTO6G58nFM4Jp-mTWzy5IaTZCKzpUs0-U,14396
121
+ ate/transports/__init__.py,sha256=iu3ZEA2s54xVuKCtLoF5RZX0t8zKnl8mdI3iZoMhkx0,3301
122
+ ate/transports/base.py,sha256=aYYqllft7Lbp4yQwai1ffg8YbxufuD8uiUqpClkBkWE,11669
123
+ ate/transports/ble.py,sha256=v2Be8dSZsFW819yStnwFFdKRb8a_hSFNwJrrMv2dFJU,13768
124
+ ate/transports/hybrid.py,sha256=HhfaDuxUETYE0UkxkpyKSGdYAGErC0FE6A8QA9E083Q,15465
125
+ ate/transports/serial.py,sha256=kc52stSZ6A8PdMO7-fnS7jZSKYLcu-Wwej8RicYawIY,11184
126
+ ate/urdf/__init__.py,sha256=5hhxn1QI7ZxLqUVEYXEg3wxsaqDmNK2nkP-nI-VBMVg,918
127
+ ate/urdf/capture.py,sha256=3DPY1lXBBtj9htqCCSegqmk4Kr70YTkJ-REXghu20Q0,18614
128
+ ate/urdf/cloud.py,sha256=ncICU3FTZS5SGaQZUMSOkYSOs9mhdtjxRn54tAQ-ekg,15186
129
+ ate/urdf/collision.py,sha256=DLKnRmBu27QAHMCw3c9VYSpPUrO-B4O5lTCH1rghrV4,7275
130
+ ate/urdf/commands.py,sha256=1qjXgy55rf8b211jvA1ZTXeWog9M0yi8XV_9mCFZ8ps,23958
131
+ ate/urdf/depth.py,sha256=PUSe3IElUyUAZEMqTZkwt1CKlbtXUiRTsXPcayRvZK0,10111
132
+ ate/urdf/inertial.py,sha256=39MsJ_uQnYVH_7YZio2E6zh64XTqVx64zOL0ddeQgFM,8489
133
+ ate/urdf/kinematics.py,sha256=xFe4CSrJnuOD6BEmiT-G-vpDOqQZGkdEUIpmmxFmUa0,9425
134
+ ate/urdf/lifting.py,sha256=n_j3WOcL1oSUh9VJ8jQr4r-KXySrPRte8dwmj95AvKs,11438
135
+ ate/urdf/meshing.py,sha256=kZ04ubmpTnSEUj0F7xVsNblQN8N21GoIQsbg5WZJd8s,8204
136
+ ate/urdf/motion_analysis.py,sha256=0pi7gn2TuwSE5knJ0PtVkKkDPpLDGIE-aAbK8so3wyg,12012
137
+ ate/urdf/pipeline.py,sha256=rpw6_GWz3KRTbLBzgLFJM5pLWLQGRomw6JGEnskSYkI,13620
138
+ ate/urdf/scale.py,sha256=eUiuVLxK7Dj5yiK7toq_ImbuLP2dKh_iimg6xTboiVI,6762
139
+ ate/urdf/scan_session.py,sha256=aZVL7fs9MEmrZufjSHL3I3K9P4j5hZRPWeXBWzM3Ezs,13435
140
+ ate/urdf/segmentation.py,sha256=QwR4FBZyTskfFVy2ivIjo-5QK_7_hyHTm2xhCUcp_88,8595
141
+ ate/urdf/synthesis.py,sha256=tXOo1_nfM2ZtbZ2ESwCp5r5-AaafdO4KzIbJg4_1J3Q,8780
142
+ ate/urdf/topology.py,sha256=v9LA2qS_GI_e-jVZAGFesDXtPTmafIm-lRDatMjfngY,9728
143
+ ate/urdf/validation.py,sha256=dUccQhq042KnPGZNJt1GCL2cJMzGF-gCX8SP6-ixsiQ,10398
144
+ ate/urdf/models/__init__.py,sha256=7AwpFkH4cS4ZgFyOD2osTobXSCBL23FTectQY7EAWqs,3162
145
+ ate/urdf/models/depth_anything.py,sha256=z9l7uRYkXNSnvGYTHV0PH56x7jWSeL8xIbiA0u4zU5Y,7286
146
+ ate/urdf/models/sam2.py,sha256=PEczfxPbwGxgpi8vpb5c8X892GiXsbtTQk3lCtIhSAk,9859
147
+ mechdog_labeled/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
148
+ mechdog_labeled/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
149
+ mechdog_labeled/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
150
+ mechdog_output/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
151
+ mechdog_output/primitives.py,sha256=msTdyL1z3sh4qQcP_Cr0yKzg9xAzZUod14FkLd5Aeww,1884
152
+ mechdog_output/servo_map.py,sha256=hygFLlg8kHbmu3CJOQGey1kRTB8XpmPayA1byP4pVIA,3589
153
+ test_autodetect/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
154
+ test_autodetect/primitives.py,sha256=7em8nBqB8zG93R32F3R6pPs4-rdH4xs3koZN8OH33Gg,3783
155
+ test_autodetect/servo_map.py,sha256=YzYuVN-zuBC9uWgD1lBhFpSRYSbxRtflvGI2Qspeer8,4724
156
+ test_full_auto/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
157
+ test_full_auto/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
158
+ test_full_auto/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
159
+ test_smart_detect/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
160
+ test_smart_detect/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
161
+ test_smart_detect/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
162
+ foodforthought_cli-0.3.0.dist-info/METADATA,sha256=BdnQkd1TgYMKcDyXwy1RUgBCDuJvxh0suUh_R0_T9Oc,9968
163
+ foodforthought_cli-0.3.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
164
+ foodforthought_cli-0.3.0.dist-info/entry_points.txt,sha256=JSxWuXCbGllyHqVJpomP_BDlXYpiNglM9Mo6bEmQK1A,37
165
+ foodforthought_cli-0.3.0.dist-info/top_level.txt,sha256=Q8RL26hnZ7yLJbGqHMbthsZJJRho-UvpOJAEtAG4NbI,84
166
+ foodforthought_cli-0.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,44 +0,0 @@
1
- ate/__init__.py,sha256=RkSEVsHQEsqTdt-7DvetJ_Ctrt7n-iMq4xYsGCT2-t0,105
2
- ate/bridge_server.py,sha256=FI9PSLzq_eW9JYUS_qzTHZ4NnOkIr7G7sdwTWSYaMnQ,21365
3
- ate/cli.py,sha256=kjGtQ0bD2UI9rHScBvqo6MljRLO7rDOo4lCIgfMWkAQ,176611
4
- ate/compatibility.py,sha256=K5pSpPVHLgPSIF-a6kIJrehI9wl5AH3Cx76rOFCUZ2k,23094
5
- ate/generator.py,sha256=DUPat3cmoe9ufPajHFoI5kK6tfvPtVtB9gLvTlJzPdU,18308
6
- ate/marketplace.py,sha256=oLZOm8GbOOuxvsB45836KiTW7lCI_wSfIh-VY6crlYA,17474
7
- ate/mcp_server.py,sha256=hMi2QFcgkxyZGRLbvn8YZwcN2lVPPE2VgjoZjb2lEdc,102256
8
- ate/primitives.py,sha256=mku_-ivbBiTth90ru6wLZg4by-f6Fkds4D9l6PrroFI,30390
9
- ate/robot_setup.py,sha256=5KNYHh2RSWy5Y9hA3F56HQYa7HD8Y7VLq3gcuNV-wnQ,91800
10
- ate/skill_schema.py,sha256=q5zOrYJV2FVR59cW5UN9OowHLxtnwstWMF1pa5XgvtE,17719
11
- ate/generators/__init__.py,sha256=8tVjL3FpiesAH6SaSAIlwP1ctlP5GBXbptUaOOGMuvI,544
12
- ate/generators/docker_generator.py,sha256=Q2ux-db_9AZfmogB4O0JL_0s0nv38JzTiSpOnkPEBqI,11779
13
- ate/generators/hardware_config.py,sha256=FU5ntIzpxPAVecgqRHKCOUdUoFYRwVc_kz9DinZRcXA,15986
14
- ate/generators/ros2_generator.py,sha256=Sx8GIoYhBCRuv0L9Y9QlZvgoR2GOGm5tCpGyGvG3YmY,19765
15
- ate/generators/skill_generator.py,sha256=WLNxM437bL0iXf4UlAXYstNI5RSmBhzFSGKQdfJsLAc,28631
16
- ate/telemetry/__init__.py,sha256=qNUnu4n33vJn53AfUVNvME0C8Fc4smUCmXOFsBHTtzs,669
17
- ate/telemetry/cli.py,sha256=-Jzp3HXkQsm9_Q0qQgt3HDzOMSqsZsPwycwV3eS2Gl0,15816
18
- ate/telemetry/collector.py,sha256=3A4JSa_d3XUaVPYi4SVHI1pgkPBh2KFhO56ToBhO8R4,15844
19
- ate/telemetry/context.py,sha256=km-b7ge31vbfN7HhFEErdCOkdXCEl-a9e6j5szqbziA,10429
20
- ate/telemetry/fleet_agent.py,sha256=iWKSXmnASumTArvO4ek7Wcv019dvnkJAdLH9spsKnSw,14260
21
- ate/telemetry/types.py,sha256=5kgwXGoQ-_kuD4gszlaXW7LN9L6lKmSyt4EOPeoZlSo,11066
22
- ate/telemetry/formats/__init__.py,sha256=a9ylB6nSJMbLIarBq60gEMpznHSs2d3JMY3uIeUt4F4,458
23
- ate/telemetry/formats/hdf5_serializer.py,sha256=RgACw9S8J5ZRkj1GML0ib4k0WHWx30TAemIw-Nko1l8,18703
24
- ate/telemetry/formats/mcap_serializer.py,sha256=7wsDzguseApTO6G58nFM4Jp-mTWzy5IaTZCKzpUs0-U,14396
25
- mechdog_labeled/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
26
- mechdog_labeled/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
27
- mechdog_labeled/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
28
- mechdog_output/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
29
- mechdog_output/primitives.py,sha256=msTdyL1z3sh4qQcP_Cr0yKzg9xAzZUod14FkLd5Aeww,1884
30
- mechdog_output/servo_map.py,sha256=hygFLlg8kHbmu3CJOQGey1kRTB8XpmPayA1byP4pVIA,3589
31
- test_autodetect/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
32
- test_autodetect/primitives.py,sha256=7em8nBqB8zG93R32F3R6pPs4-rdH4xs3koZN8OH33Gg,3783
33
- test_autodetect/servo_map.py,sha256=YzYuVN-zuBC9uWgD1lBhFpSRYSbxRtflvGI2Qspeer8,4724
34
- test_full_auto/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
35
- test_full_auto/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
36
- test_full_auto/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
37
- test_smart_detect/__init__.py,sha256=qIrQzLk38jm9kfGtyqVHEuBNE-ljz3v3P8jg7aIARF0,160
38
- test_smart_detect/primitives.py,sha256=W9AtSjeTBy5gteEKS0NkZgogL1Hf2Etxsdd0hq6LRhs,3846
39
- test_smart_detect/servo_map.py,sha256=p86iBqkBDa09JKVm_TWC1j42erOQMTb96eMHWZtdGf4,4543
40
- foodforthought_cli-0.2.7.dist-info/METADATA,sha256=HwaHy4-7az2zJ9vPT-HkBEccsx_C_5DeaY_9yoxCwJY,9584
41
- foodforthought_cli-0.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
42
- foodforthought_cli-0.2.7.dist-info/entry_points.txt,sha256=JSxWuXCbGllyHqVJpomP_BDlXYpiNglM9Mo6bEmQK1A,37
43
- foodforthought_cli-0.2.7.dist-info/top_level.txt,sha256=Q8RL26hnZ7yLJbGqHMbthsZJJRho-UvpOJAEtAG4NbI,84
44
- foodforthought_cli-0.2.7.dist-info/RECORD,,