lionagi 0.2.6__py3-none-any.whl → 0.2.8__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. lionagi/__init__.py +11 -25
  2. lionagi/core/action/README.md +20 -0
  3. lionagi/core/action/__init__.py +1 -2
  4. lionagi/core/action/function_calling.py +2 -27
  5. lionagi/core/action/node.py +1 -16
  6. lionagi/core/action/tool.py +4 -17
  7. lionagi/core/action/tool_manager.py +8 -31
  8. lionagi/core/agent/README.md +1 -0
  9. lionagi/core/agent/base_agent.py +3 -27
  10. lionagi/core/agent/eval/README.md +1 -0
  11. lionagi/core/collections/README.md +23 -0
  12. lionagi/core/collections/__init__.py +2 -3
  13. lionagi/core/collections/_logger.py +0 -17
  14. lionagi/core/collections/abc/README.md +63 -0
  15. lionagi/core/collections/abc/__init__.py +18 -18
  16. lionagi/core/collections/abc/component.py +5 -21
  17. lionagi/core/collections/abc/concepts.py +1 -17
  18. lionagi/core/collections/abc/exceptions.py +0 -16
  19. lionagi/core/collections/exchange.py +1 -16
  20. lionagi/core/collections/flow.py +5 -25
  21. lionagi/core/collections/model.py +8 -21
  22. lionagi/core/collections/pile.py +317 -35
  23. lionagi/core/collections/progression.py +4 -17
  24. lionagi/core/collections/util.py +2 -2
  25. lionagi/core/director/README.md +1 -0
  26. lionagi/core/director/direct.py +1 -17
  27. lionagi/core/engine/branch_engine.py +6 -6
  28. lionagi/core/engine/instruction_map_engine.py +4 -4
  29. lionagi/core/engine/script_engine.py +2 -16
  30. lionagi/core/executor/base_executor.py +1 -1
  31. lionagi/core/executor/graph_executor.py +6 -9
  32. lionagi/core/executor/neo4j_executor.py +7 -9
  33. lionagi/core/generic/README.md +0 -0
  34. lionagi/core/generic/__init__.py +1 -2
  35. lionagi/core/generic/edge.py +7 -3
  36. lionagi/core/generic/edge_condition.py +3 -2
  37. lionagi/core/generic/graph.py +5 -6
  38. lionagi/core/generic/node.py +4 -4
  39. lionagi/core/generic/tree.py +2 -1
  40. lionagi/core/generic/tree_node.py +2 -0
  41. lionagi/core/mail/__init__.py +0 -1
  42. lionagi/core/mail/mail.py +2 -1
  43. lionagi/core/mail/mail_manager.py +8 -6
  44. lionagi/core/mail/package.py +2 -0
  45. lionagi/core/mail/start_mail.py +2 -2
  46. lionagi/core/message/__init__.py +4 -5
  47. lionagi/core/message/action_request.py +5 -31
  48. lionagi/core/message/action_response.py +3 -23
  49. lionagi/core/message/assistant_response.py +2 -17
  50. lionagi/core/message/instruction.py +2 -48
  51. lionagi/core/message/message.py +2 -17
  52. lionagi/core/message/system.py +2 -17
  53. lionagi/core/message/util.py +7 -26
  54. lionagi/core/report/base.py +4 -26
  55. lionagi/core/report/form.py +7 -28
  56. lionagi/core/report/report.py +3 -26
  57. lionagi/core/report/util.py +2 -17
  58. lionagi/core/rule/_default.py +3 -2
  59. lionagi/core/rule/action.py +4 -19
  60. lionagi/core/rule/base.py +4 -19
  61. lionagi/core/rule/boolean.py +2 -2
  62. lionagi/core/rule/choice.py +3 -2
  63. lionagi/core/rule/mapping.py +7 -21
  64. lionagi/core/rule/number.py +3 -1
  65. lionagi/core/rule/rulebook.py +2 -70
  66. lionagi/core/rule/string.py +2 -13
  67. lionagi/core/rule/util.py +0 -35
  68. lionagi/core/session/branch.py +20 -36
  69. lionagi/core/session/directive_mixin.py +1 -16
  70. lionagi/core/session/session.py +8 -24
  71. lionagi/core/unit/__init__.py +1 -2
  72. lionagi/core/unit/parallel_unit.py +4 -21
  73. lionagi/core/unit/template/action.py +0 -16
  74. lionagi/core/unit/template/base.py +0 -16
  75. lionagi/core/unit/template/plan.py +1 -16
  76. lionagi/core/unit/template/predict.py +0 -16
  77. lionagi/core/unit/template/score.py +1 -17
  78. lionagi/core/unit/template/select.py +1 -16
  79. lionagi/core/unit/unit.py +6 -21
  80. lionagi/core/unit/unit_form.py +6 -19
  81. lionagi/core/unit/unit_mixin.py +11 -29
  82. lionagi/core/unit/util.py +1 -0
  83. lionagi/core/validator/validator.py +8 -22
  84. lionagi/core/work/work.py +2 -19
  85. lionagi/core/work/work_edge.py +3 -3
  86. lionagi/core/work/work_function.py +1 -18
  87. lionagi/core/work/work_function_node.py +0 -5
  88. lionagi/core/work/work_queue.py +1 -16
  89. lionagi/core/work/work_task.py +4 -4
  90. lionagi/core/work/worker.py +5 -20
  91. lionagi/core/work/worker_engine.py +5 -5
  92. lionagi/core/work/worklog.py +1 -17
  93. lionagi/experimental/compressor/base.py +1 -0
  94. lionagi/experimental/compressor/llm_compressor.py +7 -4
  95. lionagi/experimental/directive/README.md +1 -0
  96. lionagi/experimental/directive/parser/base_parser.py +2 -17
  97. lionagi/experimental/directive/parser/base_syntax.txt +200 -0
  98. lionagi/experimental/directive/template/base_template.py +1 -17
  99. lionagi/experimental/directive/tokenizer.py +0 -16
  100. lionagi/experimental/evaluator/README.md +1 -0
  101. lionagi/experimental/evaluator/ast_evaluator.py +0 -16
  102. lionagi/experimental/evaluator/base_evaluator.py +1 -17
  103. lionagi/experimental/knowledge/base.py +1 -1
  104. lionagi/integrations/bridge/__init__.py +1 -1
  105. lionagi/integrations/bridge/langchain_/documents.py +1 -1
  106. lionagi/integrations/bridge/llamaindex_/node_parser.py +2 -1
  107. lionagi/integrations/bridge/llamaindex_/textnode.py +2 -1
  108. lionagi/integrations/bridge/pydantic_/pydantic_bridge.py +1 -1
  109. lionagi/integrations/bridge/transformers_/install_.py +1 -0
  110. lionagi/integrations/chunker/chunk.py +5 -6
  111. lionagi/integrations/loader/load.py +3 -3
  112. lionagi/integrations/loader/load_util.py +2 -2
  113. lionagi/integrations/provider/__init__.py +0 -1
  114. lionagi/integrations/provider/_mapping.py +6 -5
  115. lionagi/integrations/provider/mlx_service.py +4 -3
  116. lionagi/integrations/provider/oai.py +1 -17
  117. lionagi/integrations/provider/ollama.py +1 -1
  118. lionagi/integrations/provider/openrouter.py +1 -0
  119. lionagi/integrations/provider/transformers.py +2 -2
  120. lionagi/integrations/storage/neo4j.py +1 -1
  121. lionagi/integrations/storage/storage_util.py +3 -4
  122. lionagi/integrations/storage/structure_excel.py +5 -4
  123. lionagi/integrations/storage/to_csv.py +3 -2
  124. lionagi/integrations/storage/to_excel.py +2 -2
  125. lionagi/libs/__init__.py +15 -19
  126. lionagi/libs/ln_api.py +9 -26
  127. lionagi/libs/ln_async.py +3 -2
  128. lionagi/libs/ln_convert.py +1 -18
  129. lionagi/libs/ln_func_call.py +3 -20
  130. lionagi/libs/ln_image.py +4 -1
  131. lionagi/libs/ln_knowledge_graph.py +5 -2
  132. lionagi/libs/ln_nested.py +2 -18
  133. lionagi/libs/ln_parse.py +4 -19
  134. lionagi/libs/ln_queue.py +2 -17
  135. lionagi/libs/ln_tokenize.py +3 -1
  136. lionagi/libs/ln_validate.py +2 -18
  137. lionagi/libs/sys_util.py +0 -16
  138. lionagi/lions/coder/code_form.py +3 -1
  139. lionagi/lions/coder/coder.py +1 -1
  140. lionagi/lions/coder/util.py +3 -2
  141. lionagi/lions/researcher/data_source/finhub_.py +1 -0
  142. lionagi/lions/researcher/data_source/google_.py +2 -2
  143. lionagi/lions/researcher/data_source/wiki_.py +1 -1
  144. lionagi/tests/libs/test_api.py +2 -1
  145. lionagi/tests/libs/test_convert.py +2 -1
  146. lionagi/tests/libs/test_field_validators.py +9 -8
  147. lionagi/tests/libs/test_func_call.py +2 -2
  148. lionagi/tests/libs/test_nested.py +1 -0
  149. lionagi/tests/libs/test_queue.py +1 -0
  150. lionagi/tests/libs/test_sys_util.py +4 -4
  151. lionagi/tests/test_core/collections/test_component.py +6 -4
  152. lionagi/tests/test_core/collections/test_exchange.py +2 -1
  153. lionagi/tests/test_core/collections/test_flow.py +2 -1
  154. lionagi/tests/test_core/collections/test_pile.py +3 -2
  155. lionagi/tests/test_core/collections/test_progression.py +3 -2
  156. lionagi/tests/test_core/generic/test_edge.py +4 -2
  157. lionagi/tests/test_core/generic/test_graph.py +3 -2
  158. lionagi/tests/test_core/generic/test_node.py +2 -1
  159. lionagi/tests/test_core/generic/test_tree_node.py +2 -1
  160. lionagi/tests/test_core/mail/test_mail.py +2 -1
  161. lionagi/tests/test_core/test_branch.py +3 -2
  162. lionagi/tests/test_core/test_form.py +1 -0
  163. lionagi/tests/test_core/test_report.py +1 -0
  164. lionagi/tests/test_core/test_validator.py +4 -3
  165. lionagi/version.py +1 -1
  166. lionagi-0.2.8.dist-info/METADATA +66 -0
  167. lionagi-0.2.8.dist-info/RECORD +267 -0
  168. {lionagi-0.2.6.dist-info → lionagi-0.2.8.dist-info}/WHEEL +1 -2
  169. lionagi-0.2.6.dist-info/METADATA +0 -277
  170. lionagi-0.2.6.dist-info/RECORD +0 -258
  171. lionagi-0.2.6.dist-info/top_level.txt +0 -1
  172. {lionagi-0.2.6.dist-info → lionagi-0.2.8.dist-info}/LICENSE +0 -0
@@ -0,0 +1,267 @@
1
+ lionagi/__init__.py,sha256=y5_ed_SG5TAIM5HNkKMALSwwpFWsBuZxJl6eHT9vfOg,1431
2
+ lionagi/core/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
3
+ lionagi/core/_setting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ lionagi/core/_setting/_setting.py,sha256=p23fHtrzIZlQ8s8CDZICn8C6k7mdB_088nIDx19JaqM,1907
5
+ lionagi/core/action/README.md,sha256=DBr3qwGRZBrv4mZ6CEA9tEyO3S17OSSbhzIPKlr441s,2060
6
+ lionagi/core/action/__init__.py,sha256=eHMCkOjQCVwSGktG6BpZK4LlF63JAq3h2qepCTOtceg,303
7
+ lionagi/core/action/function_calling.py,sha256=zwC8H_lNNRMLZxOz_1iLznVTR0cdaF1bTlTceiX2VNQ,3820
8
+ lionagi/core/action/manual.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
9
+ lionagi/core/action/node.py,sha256=XZTMvI8ST_ysUQjYar_asKI_zPpf0T5YszFovZlpIv0,2966
10
+ lionagi/core/action/tool.py,sha256=n7w0BkjUzyRzD0wx0_URr6EHN-z8Avt3O4iVYFJN8N4,3377
11
+ lionagi/core/action/tool_manager.py,sha256=Cao93jNherD07TYGIO_PpyabYt7shdFgEjfXcclO5Z4,10838
12
+ lionagi/core/agent/README.md,sha256=myTMCsFGy6GKyDBlFwfzA0a7LfD_v8Pes2c4sVH9Tak,40
13
+ lionagi/core/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ lionagi/core/agent/base_agent.py,sha256=QbCvQQSuzwS8vY13WqM00rh4zoHEoYfKaXyU0_2FpxE,2639
15
+ lionagi/core/agent/eval/README.md,sha256=M35UepUPyKmFkvENlkweeaMElheQqNoM5Emh8ADO-rs,4
16
+ lionagi/core/agent/eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ lionagi/core/agent/eval/evaluator.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
18
+ lionagi/core/agent/eval/vote.py,sha256=A0rhWzSC9GPDa04ZNCBHz4lvEoSJUUGWkcwG3XY_7M8,1104
19
+ lionagi/core/agent/learn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ lionagi/core/agent/learn/learner.py,sha256=vMPskzGmUVKS9gaswQ5sc_tHIZ-6ZOfvGFFZ0mZ0rxo,2773
21
+ lionagi/core/agent/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ lionagi/core/agent/plan/plan.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ lionagi/core/agent/plan/unit_template.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
24
+ lionagi/core/collections/README.md,sha256=GG1Rfc0S4rGJ0D32k-dav3AVV6yG6Ie8XPzsJlQ4p54,2380
25
+ lionagi/core/collections/__init__.py,sha256=RgnaBHgeUlPQyPfraE2MI86wAZpHAtmfgU0hhvdKoqE,296
26
+ lionagi/core/collections/_logger.py,sha256=45CvQs0OW8-mQTIxXrrJzIcLEn4CKeJ1jUu5MnGI-V0,11544
27
+ lionagi/core/collections/abc/README.md,sha256=3PiXYV-ul3CQr1YVtVB_iLhjY53OEvcoDRfxWmgJ7Z8,5523
28
+ lionagi/core/collections/abc/__init__.py,sha256=cCPlUaXtXXPdQamXWQAf8MHKck7sa1asu6TDLX1W6S0,984
29
+ lionagi/core/collections/abc/component.py,sha256=PL-leVqCNx9Tb9kDDnmDEfH8yRoZqk672xFlN5YWHqc,21291
30
+ lionagi/core/collections/abc/concepts.py,sha256=MO9zXYmpYgtgTFqBww_7ndZQMH-AN3LenS-_MRHJ06Q,8021
31
+ lionagi/core/collections/abc/exceptions.py,sha256=QYnvn1oPOeHpTa4NUYo4ctDqjSUclb55tG1-YBSO-fg,4043
32
+ lionagi/core/collections/abc/util.py,sha256=CjJs-PgK0t4MAG1AJUdgrxQg7v2Ou-ixv-gWjatu7d4,779
33
+ lionagi/core/collections/exchange.py,sha256=7h9kI7gNRyCYFZUd-686ClPZXFZLtrEn7pVHjk4ol60,4274
34
+ lionagi/core/collections/flow.py,sha256=76i4eeBr_BmAuHnezeP_7pNQW6hnH7VqGOcJVK-LY8U,12607
35
+ lionagi/core/collections/model.py,sha256=YeeBbWdIe1poBpSrZvNXipxER4QFucG2V8bdP0X0SBg,15498
36
+ lionagi/core/collections/pile.py,sha256=JTSHRn2hcysn4n93VIKaXJDKrsqcCO-7VI2nS5I1jy0,37418
37
+ lionagi/core/collections/progression.py,sha256=S-jwBgJcd9wls0ix-KEIBwlxnCBP3fqdXnoXdJlr4J8,6739
38
+ lionagi/core/collections/util.py,sha256=AuLQbZEqorrrX9N-DFXxXN41e1WL8enWsj479ylXpnk,1962
39
+ lionagi/core/director/README.md,sha256=mdv5eu5VYL7EaUpfK23UHAt5aO6P8VAjoogUvJ5AEHE,54
40
+ lionagi/core/director/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ lionagi/core/director/direct.py,sha256=vKcirI2vp9CvU6Y7SoznaLwppJpI9j9YBo0cvfWwxiM,9552
42
+ lionagi/core/director/director.py,sha256=E-zgbAj5gbUgDrfE0YzFoipZnr0WWGZwIreEGGY2KJc,103
43
+ lionagi/core/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ lionagi/core/engine/branch_engine.py,sha256=ivhCgmL7DCB6a23oqIu-xE3KYzBve8eeI2V5tnT9zYA,12322
45
+ lionagi/core/engine/instruction_map_engine.py,sha256=6PxuV9BN57ukCv2773fg6wm5sEE_42gq5pblJ7GTMg0,8497
46
+ lionagi/core/engine/sandbox_.py,sha256=yjq8aznCEBeflus68VVQavy6ChfdIoZeVvPhUx_UzrI,459
47
+ lionagi/core/engine/script_engine.py,sha256=7MZqSbdkcJrfEkqSoCLSDHRXgQ9LeTGw1dXuEo3u7mw,3087
48
+ lionagi/core/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ lionagi/core/executor/base_executor.py,sha256=_geiEwDwuS7D2idUinPiKrEK0-gzc4iHa9zCPBSNfbQ,2772
50
+ lionagi/core/executor/graph_executor.py,sha256=i3m56h3qKglzoAEiGCJwTHpP0PyoJ0tL9oY-GOPCbDI,13278
51
+ lionagi/core/executor/neo4j_executor.py,sha256=d_0qcf7dWuaNag8A9RK47xgIHUliIRHVTNUEXSPq3LE,15383
52
+ lionagi/core/generic/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ lionagi/core/generic/__init__.py,sha256=KRhSxsib7MvtGZhQDvI-rWTW99r0Gw21agRCRpoof4U,139
54
+ lionagi/core/generic/edge.py,sha256=xR-FtwCdKnV8MjyPVTkVZSRAQaKUKXtnPQ9OUtwhsEo,4004
55
+ lionagi/core/generic/edge_condition.py,sha256=ZvQMYDl4WFXrwkvjQajVFluF5FNosw_OLeBihFUR6l8,356
56
+ lionagi/core/generic/graph.py,sha256=NJL3qZ8WnpoGwX020fbJsg6rJEw4az2d_oJjlMtoTSw,7613
57
+ lionagi/core/generic/hyperedge.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
58
+ lionagi/core/generic/node.py,sha256=LzkHtWossgG63Xa0WT1hBdH3BzEm0fv6O0pC5unL3Ww,7020
59
+ lionagi/core/generic/tree.py,sha256=YVlJT1_gN96utEUB1Uc4pmHEeFVyJrtSF6cqIBWZDJI,1541
60
+ lionagi/core/generic/tree_node.py,sha256=V-WtNVDd8pPdcRmZVJ1m7Chs-YIzo_tOEmlfqH84q7Q,2413
61
+ lionagi/core/mail/__init__.py,sha256=_-C11e519cBCuEuYhCgsQnzph2vDpUaLEfsKNwz33AQ,202
62
+ lionagi/core/mail/mail.py,sha256=DNmAmeTFRW6KP516NE7kXlAOmy0te1ejadTb4pf3vCs,727
63
+ lionagi/core/mail/mail_manager.py,sha256=-Qzthx6bIbcGmCdcLd9MDbPOn28745sQYkmG2hNw3zs,5992
64
+ lionagi/core/mail/package.py,sha256=OJ71DsZRlBJIIRZeJmIXCwqUd733_vliM3-8CxTTc8g,1150
65
+ lionagi/core/mail/start_mail.py,sha256=iV25FHfBH5PN5SYqD7T2T0GDRquMWtPNboDz6cckfgk,1219
66
+ lionagi/core/message/__init__.py,sha256=Vwdx3Y2JV8Xy93zRptfNj2aWdTI5n3e49cUDZcc5M60,457
67
+ lionagi/core/message/action_request.py,sha256=l4XBx7s0XMeggVY0IQNB7G0BtuEolcZ04PMBHh-XRBI,3626
68
+ lionagi/core/message/action_response.py,sha256=Mw2Znz0wWqZD8yGvifKPPQ_l6OzJXBDncbYw6T6ygbo,4222
69
+ lionagi/core/message/assistant_response.py,sha256=EcDDTXm9BWOTtnh-Y3nZNTmmfSvUGXmHzd_aCTCXbQg,2619
70
+ lionagi/core/message/instruction.py,sha256=fWHJqBlQJ-xcYFMhdlcutGKcOzslfuQvbZZB33b_GbE,6844
71
+ lionagi/core/message/message.py,sha256=Etl4a3mUrXLsym7i6ILqTV_Xun0xZw0UCoBMl1OtsNE,2403
72
+ lionagi/core/message/system.py,sha256=48mvib50mno9F-8fkLa8SzPxz3G1KlRgz3GkIluMFUQ,2318
73
+ lionagi/core/message/util.py,sha256=b72t4uu5vJqYwGeM8AyTUs3HGyO5sgpvVjqvHoCm2Wg,9099
74
+ lionagi/core/report/__init__.py,sha256=KqfJNaSx9fzRw3eyrlIlYIiueo-jVYMgjaOdfzTUAN4,80
75
+ lionagi/core/report/base.py,sha256=9YN-nes5Dv_bbd9Efd5wbu2ZGInk70PF7UXcvXoigXk,7095
76
+ lionagi/core/report/form.py,sha256=h4ZoEPFB5vpoopjA6w-5CseSUvtfzfh1SzTp4te7Ypc,7022
77
+ lionagi/core/report/report.py,sha256=nybz122W9dBkcwxp_Ui5PqjrLNloZhwTwn9ia8cWMwQ,5225
78
+ lionagi/core/report/util.py,sha256=mTLBAA79BvgeNBazLl9Mc0lO9mlo-N2SoI7LBMqG7Fc,444
79
+ lionagi/core/rule/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ lionagi/core/rule/_default.py,sha256=EtKfqz6CWmF4EnzPsXCy37rn7x8VhdqiMLyfqG_N2xU,398
81
+ lionagi/core/rule/action.py,sha256=uGWhcmNvbZusR9SAlHeFiiZWd3YB0cI8Wv3kxkrxpBY,2557
82
+ lionagi/core/rule/base.py,sha256=nU7fmbrV-b2FkH2CfonvpSYNHBzkmW7oyuvH_Ns6siE,6957
83
+ lionagi/core/rule/boolean.py,sha256=JuqVcgVWlKwZd_Y_b7i2SC7lLEAiUJlAkAvC9aYb5tI,1470
84
+ lionagi/core/rule/choice.py,sha256=lQ6xYQcRMYNmBrsQ1L1JbHfb2jsbQWwLGgV_JLhbt8U,1464
85
+ lionagi/core/rule/mapping.py,sha256=jeVRbHpe3gLQ8voJGru7uwd_Ca1wqtVn6PlkR4q7u0Y,2545
86
+ lionagi/core/rule/number.py,sha256=YKcb7HZ89ktWdLd8dA2azLg2p5HALQWqMsIm98Xw8Dw,2276
87
+ lionagi/core/rule/rulebook.py,sha256=ngnFAMxKlIrrPNamH1OoQRiyGBmj2ZYUCFEVVYeLCj0,981
88
+ lionagi/core/rule/string.py,sha256=p_cnVu-7KoH57yirgIcKWeNJ3fQ-NrL-EYW91AsQ67Q,1179
89
+ lionagi/core/rule/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ lionagi/core/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ lionagi/core/session/branch.py,sha256=3yD1UV0vYMSqztfzyV1XSe-Vo4BTzWtp-PbsB9uEHT0,14210
92
+ lionagi/core/session/directive_mixin.py,sha256=Rsm8-hyLmcD9WesI8EpbCPSWcjW9jm64_Rb83TX_gdE,11717
93
+ lionagi/core/session/session.py,sha256=nCiAAYX7q9garhMGC0-LTHqPb5mzjzot8yBF-HSjOq0,10409
94
+ lionagi/core/structure/__init__.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
95
+ lionagi/core/structure/chain.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
96
+ lionagi/core/structure/forest.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
97
+ lionagi/core/structure/graph.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
98
+ lionagi/core/structure/tree.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
99
+ lionagi/core/unit/__init__.py,sha256=rKMkYPml-R32DjR-TqU4F0d3mVQUGyGn54puPUrT31w,87
100
+ lionagi/core/unit/parallel_unit.py,sha256=hoLG5taymuTzI7LFYdK0SbLJG9WUB6iAClXfE6Ph8lQ,8765
101
+ lionagi/core/unit/template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ lionagi/core/unit/template/action.py,sha256=n7yoA6-S7NaJjx61qr0KKHRJFHHSzijr0l9ChM0lcCs,2232
103
+ lionagi/core/unit/template/base.py,sha256=hp8oGokyLKq4BtK9p-8h9AuJfelETy67X3Av7_7f1Gg,1208
104
+ lionagi/core/unit/template/plan.py,sha256=i4FmKEB8eRsRCsTanvfoX-2RZ8SaM1qvLBluuY-l20Q,2175
105
+ lionagi/core/unit/template/predict.py,sha256=5unb8YjZ_z8uaINJ-eh8luDioDbgpLgzN73gY_Fva-4,3146
106
+ lionagi/core/unit/template/score.py,sha256=ReUaIIr-NLjunSy4NNXQpIsH28NNceGBAUuPCRptzMc,3809
107
+ lionagi/core/unit/template/select.py,sha256=diYFXp0UfZMlBGMUrz72i8lSfdZmmNrYi3_7Xn8OocM,3046
108
+ lionagi/core/unit/unit.py,sha256=co0cxsNhQe719nW5RauV3TnWa4uq5KkB3f9pkeRK5Zg,12775
109
+ lionagi/core/unit/unit_form.py,sha256=ZLlJerMomWpYPx7v6BXrewNRuGjBiBNnhwezf-jmcPg,11014
110
+ lionagi/core/unit/unit_mixin.py,sha256=W0lQSNfd6Zk4RSdtjF77WMXLwNJnjMkHn_U9pc6y1fs,38584
111
+ lionagi/core/unit/util.py,sha256=2OBjHvTXbyHmxZDnDarSTIy_oNXPWQ1OG8M-94297cA,1995
112
+ lionagi/core/validator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ lionagi/core/validator/validator.py,sha256=jACb1dvTfSmxR7I8BLEJJCX4w3cYHiHXWgAkESSU-wQ,11996
114
+ lionagi/core/work/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ lionagi/core/work/work.py,sha256=CswZTTgJyYo1E0DresmrZjcI5SuWCwF7AMl2_1WdEm4,1958
116
+ lionagi/core/work/work_edge.py,sha256=RbXFMV_dejper0iivKfhWKgNRoEwL08iVwbP3hUeMtU,3408
117
+ lionagi/core/work/work_function.py,sha256=CxJPDESNGEya3dBNe8NB-Kf3PWjWUau-LxE2Nxgfb6o,3444
118
+ lionagi/core/work/work_function_node.py,sha256=EmNabqf4SKAxUeH6tp1baYiNexeyP75mMefluUunRq4,1927
119
+ lionagi/core/work/work_queue.py,sha256=TFrO0zqpCWD8WmuoQ6rEt2qihfCVimvzeS4pkJkE0qg,3052
120
+ lionagi/core/work/work_task.py,sha256=mx7WNyeIRWe99iPLXJNC8X8RBonThFruUf3nIRqcrS0,5289
121
+ lionagi/core/work/worker.py,sha256=JPF0srQNdGcY-EhZtb52FvcuSET5jbzXa6i88Vmwdvc,14642
122
+ lionagi/core/work/worker_engine.py,sha256=Oq-UuCF6QuIqpJ0cIv3ZOB_ZcTQ8c6jOQBA2wgC2WF8,7538
123
+ lionagi/core/work/worklog.py,sha256=urbsgENJ0xut03K77cdogjJ5XekLT7l02XRjdr-sSO0,3060
124
+ lionagi/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ lionagi/experimental/compressor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ lionagi/experimental/compressor/base.py,sha256=rTOm962ozV9tF74H7-rJWLqKuxczUL17HeckwBavfwE,2018
127
+ lionagi/experimental/compressor/llm_compressor.py,sha256=WeeLtRn4IBnaUiRisL8ybVjK2To7ga-3ssAU-2z_gG4,8483
128
+ lionagi/experimental/compressor/llm_summarizer.py,sha256=TujLunlEXBtHCwKQZoud5T9bogeSgbVxX_dtuasDg_c,2407
129
+ lionagi/experimental/compressor/util.py,sha256=pUsL2vL6ZuJa6Kr--2_Qnh-dOleFVpfhbMYdMn5FbXU,2226
130
+ lionagi/experimental/directive/README.md,sha256=M35UepUPyKmFkvENlkweeaMElheQqNoM5Emh8ADO-rs,4
131
+ lionagi/experimental/directive/__init__.py,sha256=01JLCb7Zd7UTVsTGog9-pXXT4FBT7P7QErbhoT7vkIw,403
132
+ lionagi/experimental/directive/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ lionagi/experimental/directive/parser/base_parser.py,sha256=WctUbzR8cKUtqz7oTLwt8uchpopyt4QwW5fXAEKF_vI,10200
134
+ lionagi/experimental/directive/parser/base_syntax.txt,sha256=CXK7nuheeb6x3-fgFHMG0g6tYyaSc-cbJVqHNrKWY-M,2858
135
+ lionagi/experimental/directive/template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ lionagi/experimental/directive/template/base_template.py,sha256=ebGOw-8yU0-aTLTwEQegFtMOVQzp7rrlOglKM8zhQCE,2609
137
+ lionagi/experimental/directive/template/schema.py,sha256=vGHQqn_ZAMkIfUqqdnPCHN8p-wommVyMBkanWHPuCSI,861
138
+ lionagi/experimental/directive/tokenizer.py,sha256=lnOgxgHUHYqurZ6Ws_a_pS0fjwwUBlMcAYTDj4FNrEE,1784
139
+ lionagi/experimental/evaluator/README.md,sha256=M35UepUPyKmFkvENlkweeaMElheQqNoM5Emh8ADO-rs,4
140
+ lionagi/experimental/evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
+ lionagi/experimental/evaluator/ast_evaluator.py,sha256=DbBAQsTFUI4_QDOpG7eDcMbWLvkuU9WKYTtO8zYDgJ0,4132
142
+ lionagi/experimental/evaluator/base_evaluator.py,sha256=MHuhHRAq1t7gH9-GPUPJ7DnNc6HMF9Pro6y80v6iNkI,8062
143
+ lionagi/experimental/knowledge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ lionagi/experimental/knowledge/base.py,sha256=Z6ExjUZdF_cLm5tye00dVHNL1gkhsOjUCk8ZId8p3uA,218
145
+ lionagi/experimental/knowledge/graph.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
+ lionagi/experimental/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ lionagi/experimental/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ lionagi/experimental/strategies/base.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
149
+ lionagi/integrations/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
150
+ lionagi/integrations/bridge/__init__.py,sha256=GTtqrkDb7OW5JID56bHyJTTkztZupOJyvHGAr0lN3VY,169
151
+ lionagi/integrations/bridge/autogen_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
+ lionagi/integrations/bridge/autogen_/autogen_.py,sha256=D66BIcAI_4AafYHp67TqyNF-lgap6bbOxRHukLpAz2s,4055
153
+ lionagi/integrations/bridge/langchain_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
+ lionagi/integrations/bridge/langchain_/documents.py,sha256=zQbSJ-LCWe_nI86xVS_M1KNN0e6FAobus5-JRjgiN00,4938
155
+ lionagi/integrations/bridge/langchain_/langchain_bridge.py,sha256=-lnJtyf4iJEwHKQAwBRN6YZ7CTsyFLetl5e8_9UGouY,3163
156
+ lionagi/integrations/bridge/llamaindex_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
+ lionagi/integrations/bridge/llamaindex_/index.py,sha256=6kjnqTiwFRI8x51OhBVxj_QOEzPxhG4w1S8qqbFaLY8,748
158
+ lionagi/integrations/bridge/llamaindex_/llama_index_bridge.py,sha256=AxLuoaDueNPZ_vX4_-kGlxlDKezqb1E1Cn_s33Dq2pM,5203
159
+ lionagi/integrations/bridge/llamaindex_/llama_pack.py,sha256=07hDT7ZlXTOkWg4arRYNqDHBR4NJE5hOmNn52GGtS4o,8397
160
+ lionagi/integrations/bridge/llamaindex_/node_parser.py,sha256=Jk3aMAw6octOQKDb02Y1MUgujYZsfz7ZJGM_JS-qLcI,3459
161
+ lionagi/integrations/bridge/llamaindex_/reader.py,sha256=VxdTk5h3a3_5RQzN15q75XGli52umhz9gLUrKk1Sg90,8235
162
+ lionagi/integrations/bridge/llamaindex_/textnode.py,sha256=NmkxBkxgFVTHObSvzay7C-OH-mOIQ7_q2zAFjTnqyNE,2323
163
+ lionagi/integrations/bridge/pydantic_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ lionagi/integrations/bridge/pydantic_/pydantic_bridge.py,sha256=4-YPg9989u-jZ6hyEo5jiE9u7Loeje_OGo44zB-bO1A,87
165
+ lionagi/integrations/bridge/transformers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ lionagi/integrations/bridge/transformers_/install_.py,sha256=JUmhaObJbQ15p9Cv5VWxqnfzjWeWBdu9oHljiNCnScY,1216
167
+ lionagi/integrations/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ lionagi/integrations/chunker/chunk.py,sha256=KWOaZlFq5awGugMufKqmnCnWb2RXN_cF_xV4I0ZvKT8,10654
169
+ lionagi/integrations/config/__init__.py,sha256=zzQGZe3H5vofcNWSjjoqe_gqHpCO8Yl7FefmrUpLqnw,133
170
+ lionagi/integrations/config/mlx_configs.py,sha256=xbostqjnk3aAN-qKyC54YBprHPA38C8YDevXMMEHXWY,44
171
+ lionagi/integrations/config/oai_configs.py,sha256=fgby-3o_tO24QhSiPyko-oeAMEa0cWCThh6L6ChiXoo,3625
172
+ lionagi/integrations/config/ollama_configs.py,sha256=GUn0kagrQA3gpIiaxYyfdi2LAf_Ohz1sVrsAb20OBwo,17
173
+ lionagi/integrations/config/openrouter_configs.py,sha256=x5LjLx-aqCLzzrqr15gVzuTTG4Y_BVS6tRrKout5vPQ,1690
174
+ lionagi/integrations/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
+ lionagi/integrations/loader/load.py,sha256=cV7wjQ244zQh4ZsjIl54QYS1ulic4gy0BaYzbnziZtc,8622
176
+ lionagi/integrations/loader/load_util.py,sha256=3QrLib-H-Tzs4J4m0YZaVF4O7h6Gfr_AVlxO6IOU5eY,6438
177
+ lionagi/integrations/provider/__init__.py,sha256=mXytlBiHEAIryQJ3ayTCWEB2ATf0RWRFfOgLP_HLL_c,197
178
+ lionagi/integrations/provider/_mapping.py,sha256=gbJMe37jCOG_3XEWQjDuPwm2yVVPs7xzhJsmYWKc_Ow,1347
179
+ lionagi/integrations/provider/litellm.py,sha256=75ElNHYXmgPrgcUElelT_MH2FSB2D8Nvqerc2Pv_zUQ,1283
180
+ lionagi/integrations/provider/mistralai.py,sha256=G-StbfrnUcWZvl0eRby6CZYXxmJf6BRMFzDaix-brmU,7
181
+ lionagi/integrations/provider/mlx_service.py,sha256=G4_hWHI5SngxzruuAeQn6xyJvqaujT6ZyK_h4yU1zyU,1727
182
+ lionagi/integrations/provider/oai.py,sha256=nzGTcCVNsIfwnK_uSwLsprqVNx1josrxpxMrkxGuggo,6495
183
+ lionagi/integrations/provider/ollama.py,sha256=lgZAAnmOhAW-RV_OIzEi9SE6MfRj7io_ayT9rxRR3uw,1380
184
+ lionagi/integrations/provider/openrouter.py,sha256=joiIIC3eIsJKQgJfLEvCgex8Uw-IcD5I9NOikl3zoDM,5651
185
+ lionagi/integrations/provider/services.py,sha256=O7q-w79tdE-8UhBQ9WOlpbiY7mKBb-7tUk4E7J5rSxw,5388
186
+ lionagi/integrations/provider/transformers.py,sha256=klRuI1j3zPzE0IjIQLTUWHfDhR00G_fGmXcWqeMZIZ0,3182
187
+ lionagi/integrations/storage/__init__.py,sha256=W5FouDavC32X818ta84GAMc_z9x8onTzXNlYKQpH_a4,79
188
+ lionagi/integrations/storage/neo4j.py,sha256=H6rCQiBGZvDau1bQCm8m2hRFMQn6hLzCh5v3J0r8AGM,25705
189
+ lionagi/integrations/storage/storage_util.py,sha256=GecWi6pHgaHYH5uvr6BpXsJmYyaZIvk8-msJw6EFyIk,10620
190
+ lionagi/integrations/storage/structure_excel.py,sha256=WdCQZn5606VIWANluNKTRuxWQM6WT8GiMng6eQGTBGQ,12326
191
+ lionagi/integrations/storage/to_csv.py,sha256=BlrQPMgT7TRlAKCFucg_DfZowgXg_uNnAxQ6-49ahJM,2882
192
+ lionagi/integrations/storage/to_excel.py,sha256=tUXDDsgAvncko4fr6-C5YZSUU_sz_FSRxgp8uBl6znc,3478
193
+ lionagi/libs/__init__.py,sha256=9yvPizpja3Ssyjm8jWERtaE1tg9xLOCmPNJU_ob0JEA,1237
194
+ lionagi/libs/ln_api.py,sha256=lSNxNl2Xqn1ioJIum3lSXo9HOFgthojKx1twKSXnne8,36310
195
+ lionagi/libs/ln_async.py,sha256=a1thJjFgqMBYe8Lp2XasCagyPpPpnoaX-hoVxrsRaiA,6075
196
+ lionagi/libs/ln_context.py,sha256=lhXL5x-7Cd1GqXMZ6rROxoP2PIXV0PHnq7w0tUJJ3BA,1024
197
+ lionagi/libs/ln_convert.py,sha256=5866_CknoInZTLKqwwW1hb0OGdhk_IczkatyYAS4-m0,23323
198
+ lionagi/libs/ln_dataframe.py,sha256=d6oJQ1Xk7Mnl8FZj0lBCPf3QdFfPQpPqnnXsiG-ubUI,5539
199
+ lionagi/libs/ln_func_call.py,sha256=6rW_kh2Du2mJJ0ixTB64wGfPx8BsTlEtXBE1gbQq_NE,49822
200
+ lionagi/libs/ln_image.py,sha256=NThfW6cQjoInI-hOmRnbPL1EGAovv9vIhh8DAPN8p7A,3625
201
+ lionagi/libs/ln_knowledge_graph.py,sha256=N5q_Xstz2_DzabTL_OnV65wWI2Zci1dKVupKpt56ToE,14999
202
+ lionagi/libs/ln_nested.py,sha256=-lRdro-tVbq8RcbVT1Ced5f6HQcIcKVq_nPS_iDN114,29624
203
+ lionagi/libs/ln_parse.py,sha256=cyDFTNe7Rk9Fl-v16Cl8vI8FqwasPVphRCaakSQy2jQ,26644
204
+ lionagi/libs/ln_queue.py,sha256=rssnlOW9pRDfkAaNc6236s519zgx_6qp0ZE77FBknsg,3419
205
+ lionagi/libs/ln_tokenize.py,sha256=L0qdfn3G27dfutrU5KJqX8pOOBoCVGe40LKA0LuS3LY,5180
206
+ lionagi/libs/ln_validate.py,sha256=-r2ZapEIclb-mhJtNYZCZ_COfa0Nq9yHkBMSn3axbvk,8404
207
+ lionagi/libs/special_tokens.py,sha256=ViFaql64LgEGHSXzODzaVMh4GfteN8D2ogmqWYTYwiQ,2411
208
+ lionagi/libs/sys_util.py,sha256=nvEnIDZR5mqRIUgT2iAW2VXiEx3k0RsCZ0C6kAlLFWA,19217
209
+ lionagi/lions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ lionagi/lions/coder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
211
+ lionagi/lions/coder/add_feature.py,sha256=mLMfz9V9yYbdH6DJs39FOz9IHdhdyPZajocQtQhjgcA,703
212
+ lionagi/lions/coder/base_prompts.py,sha256=SLpC442nZm2cEkB8o9j28kpkB-WzKLjH6sOTS8CnIrY,367
213
+ lionagi/lions/coder/code_form.py,sha256=xW66cWCsrZu2qGu-wGUGSIPL1uZevGQVCE_vBRH9Kmc,384
214
+ lionagi/lions/coder/coder.py,sha256=vzBjPetZ916kpOWvdl0SM9h7g31DIUTJALuK3R9xWgw,5677
215
+ lionagi/lions/coder/util.py,sha256=FNUTwx3pJ2dj6ue_8X4Ey2ms0xmaTghbnARU4BZ2XBg,2713
216
+ lionagi/lions/researcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
217
+ lionagi/lions/researcher/data_source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ lionagi/lions/researcher/data_source/finhub_.py,sha256=W63daXgIwHJQ6TDMR2ALQIDk1mV3msoDQ9RgOYXsGoE,8783
219
+ lionagi/lions/researcher/data_source/google_.py,sha256=oujwsGiMEb_oXpTLUoGm76M7K3AThOil6rFkzPSxy1s,6675
220
+ lionagi/lions/researcher/data_source/wiki_.py,sha256=CmODZvXbB6wjSCi_MtS2heTAImv3c1umm9S-ejHxFWA,3123
221
+ lionagi/lions/researcher/data_source/yfinance_.py,sha256=snAf897J69MyAc6fcFjF0irrMjbAh81EZ3RvaFT3hxE,977
222
+ lionagi/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ lionagi/tests/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ lionagi/tests/api/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
+ lionagi/tests/api/aws/conftest.py,sha256=NfI8VhEhyNUG9Xe8R7LV8wpbvis4zPBR_PgB4DySsag,523
226
+ lionagi/tests/api/aws/test_aws_s3.py,sha256=KUDCOtWMIwXNrGzfTWNYwM549v-pWJZK2paInJhxDes,143
227
+ lionagi/tests/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ lionagi/tests/libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ lionagi/tests/libs/test_api.py,sha256=8cq44TjJcpdRJ2HRvNZw_NzIBtxVfO3XjzyR1s1O7dI,1682
230
+ lionagi/tests/libs/test_convert.py,sha256=cMcaEJup_SekEp-7EN4X_0t-qtjN7oWih4BjnoVAVMs,2797
231
+ lionagi/tests/libs/test_field_validators.py,sha256=vQM0nMnHTbpMMxnjdvxgR_rFsvoOu1FlIohJWSCMtrM,11902
232
+ lionagi/tests/libs/test_func_call.py,sha256=PxTtLuVEGTNygA20Zp9aLFQ9b5_EFTDDSwVQkKOu67Q,20828
233
+ lionagi/tests/libs/test_nested.py,sha256=4gDf0w9eKxyCsNhrIg4wAE-qY4gvjW6hqOGoSlBR7yE,13528
234
+ lionagi/tests/libs/test_parse.py,sha256=dnu9iDb7VVymbT1oQDXCLhaqfnTFEVE2FJSpOr8_Vso,6814
235
+ lionagi/tests/libs/test_queue.py,sha256=oo9cv6Be0tJ05TJFUl3rlUZ4kGf4OHY046L-rgTw2Nc,1990
236
+ lionagi/tests/libs/test_sys_util.py,sha256=mklK4yCoc8TxPARBRskyz6eY8Res0G-og_eTnEXUf5o,7849
237
+ lionagi/tests/test_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ lionagi/tests/test_core/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ lionagi/tests/test_core/collections/test_component.py,sha256=UTEy4QIvRwczbrFyh1tCsOL9R5lPobQa2Ce83h0XBKA,8655
240
+ lionagi/tests/test_core/collections/test_exchange.py,sha256=126rh8L0vqdWpb1cUHx9CmtqtJBZErNJYUxR0PwzU3M,4928
241
+ lionagi/tests/test_core/collections/test_flow.py,sha256=XsO843SKDqm1l60oi1n5U4vbaiNdtwBvQBt7vbZEGnU,5081
242
+ lionagi/tests/test_core/collections/test_pile.py,sha256=8rWQyGpio1i4Xx_TulwiqyUUtDFlcuypc5Bxm4VHAow,6457
243
+ lionagi/tests/test_core/collections/test_progression.py,sha256=7A6nCkTUpcNYD_1RwC9P69Uzc5pcdn7aXAurmfg1Mk4,4037
244
+ lionagi/tests/test_core/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
+ lionagi/tests/test_core/generic/test_edge.py,sha256=T_1LTy465_mQNrmZZXFi2JxLe_7JK0tDhLbISNQR65g,2534
246
+ lionagi/tests/test_core/generic/test_graph.py,sha256=1UhynHeiM-c2hRmicYKSThTR1GYZNMOIauL8XPdot_o,3569
247
+ lionagi/tests/test_core/generic/test_node.py,sha256=WAsLn7dKRzhrS9Xzu9t-ZAVyJtVuL1-hIFa2PW7T0zU,4418
248
+ lionagi/tests/test_core/generic/test_structure.py,sha256=C7EOtOuqJMm7iqq6yzEH7Assr3tp9HV0ADd_7Ewj4TM,8848
249
+ lionagi/tests/test_core/generic/test_tree_node.py,sha256=uRn3l0yAYAkWadBQ4_J5Ddi6akNZSjfzpoV9kkbnPPo,2935
250
+ lionagi/tests/test_core/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
+ lionagi/tests/test_core/graph/test_graph.py,sha256=EicIGp2-LVXIrgrWZaKg7_1IRrkDZDTvtIfX3t58IOU,2709
252
+ lionagi/tests/test_core/graph/test_tree.py,sha256=C3wuwg5f7Rtr6KH5S97jfu829YPPTOf7IvNFf4nEwqU,3381
253
+ lionagi/tests/test_core/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ lionagi/tests/test_core/mail/test_mail.py,sha256=1stMcdl_SAzcMsP3wcgEonUX0nQwpC6VsHJC95lncGs,3075
255
+ lionagi/tests/test_core/test_branch.py,sha256=JVyso4wkl0qbzg0-wEU5Bv_9fgVG9aRTbXvlgzOe-zc,4419
256
+ lionagi/tests/test_core/test_form.py,sha256=m0LxEQuHAW-Yd6-HQM1UnfHVNok67KfkZ-IoPJ5xGGo,1580
257
+ lionagi/tests/test_core/test_report.py,sha256=Tsla2Xru-w0tmQQcC-_aCbX1D6fDv1mvzaPRjAUtnL4,3439
258
+ lionagi/tests/test_core/test_structure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
+ lionagi/tests/test_core/test_structure/test_base_structure.py,sha256=qsaYP745fFIst5ZNiPFb9-ATScLyUFqQ5UQzyyBgJPM,9388
260
+ lionagi/tests/test_core/test_structure/test_graph.py,sha256=hLsTZmZMs9vCZW-KiOwYY3npk6WxaVU6zZSA9-ltDvQ,2162
261
+ lionagi/tests/test_core/test_structure/test_tree.py,sha256=PvMJXDsNPpJFgEQCan-5Q5JREgMrBOpYIaWcwHd-WDY,1944
262
+ lionagi/tests/test_core/test_validator.py,sha256=G8h3SMUuH9behQe0-c3-5fZ9s67vgTwlmwfcS0k6dtI,4234
263
+ lionagi/version.py,sha256=G6Dbxq2ws-1ZAXwDD8q0KWueYtso_Y6Uyvtj8sRWsPI,22
264
+ lionagi-0.2.8.dist-info/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
265
+ lionagi-0.2.8.dist-info/METADATA,sha256=wj1bDoR7HEl8dS_Eoyu6FR66CrDvUS3guvpuHSMAXEY,3059
266
+ lionagi-0.2.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
267
+ lionagi-0.2.8.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -1,277 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: lionagi
3
- Version: 0.2.6
4
- Summary: Towards automated general intelligence.
5
- Author: HaiyangLi
6
- Author-email: Haiyang Li <ocean@lionagi.ai>
7
- License: Apache License
8
- Version 2.0, January 2004
9
- http://www.apache.org/licenses/
10
-
11
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
12
-
13
- 1. Definitions.
14
-
15
- "License" shall mean the terms and conditions for use, reproduction,
16
- and distribution as defined by Sections 1 through 9 of this document.
17
-
18
- "Licensor" shall mean the copyright owner or entity authorized by
19
- the copyright owner that is granting the License.
20
-
21
- "Legal Entity" shall mean the union of the acting entity and all
22
- other entities that control, are controlled by, or are under common
23
- control with that entity. For the purposes of this definition,
24
- "control" means (i) the power, direct or indirect, to cause the
25
- direction or management of such entity, whether by contract or
26
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
27
- outstanding shares, or (iii) beneficial ownership of such entity.
28
-
29
- "You" (or "Your") shall mean an individual or Legal Entity
30
- exercising permissions granted by this License.
31
-
32
- "Source" form shall mean the preferred form for making modifications,
33
- including but not limited to software source code, documentation
34
- source, and configuration files.
35
-
36
- "Object" form shall mean any form resulting from mechanical
37
- transformation or translation of a Source form, including but
38
- not limited to compiled object code, generated documentation,
39
- and conversions to other media types.
40
-
41
- "Work" shall mean the work of authorship, whether in Source or
42
- Object form, made available under the License, as indicated by a
43
- copyright notice that is included in or attached to the work
44
- (an example is provided in the Appendix below).
45
-
46
- "Derivative Works" shall mean any work, whether in Source or Object
47
- form, that is based on (or derived from) the Work and for which the
48
- editorial revisions, annotations, elaborations, or other modifications
49
- represent, as a whole, an original work of authorship. For the purposes
50
- of this License, Derivative Works shall not include works that remain
51
- separable from, or merely link (or bind by name) to the interfaces of,
52
- the Work and Derivative Works thereof.
53
-
54
- "Contribution" shall mean any work of authorship, including
55
- the original version of the Work and any modifications or additions
56
- to that Work or Derivative Works thereof, that is intentionally
57
- submitted to Licensor for inclusion in the Work by the copyright owner
58
- or by an individual or Legal Entity authorized to submit on behalf of
59
- the copyright owner. For the purposes of this definition, "submitted"
60
- means any form of electronic, verbal, or written communication sent
61
- to the Licensor or its representatives, including but not limited to
62
- communication on electronic mailing lists, source code control systems,
63
- and issue tracking systems that are managed by, or on behalf of, the
64
- Licensor for the purpose of discussing and improving the Work, but
65
- excluding communication that is conspicuously marked or otherwise
66
- designated in writing by the copyright owner as "Not a Contribution."
67
-
68
- "Contributor" shall mean Licensor and any individual or Legal Entity
69
- on behalf of whom a Contribution has been received by Licensor and
70
- subsequently incorporated within the Work.
71
-
72
- 2. Grant of Copyright License. Subject to the terms and conditions of
73
- this License, each Contributor hereby grants to You a perpetual,
74
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
- copyright license to reproduce, prepare Derivative Works of,
76
- publicly display, publicly perform, sublicense, and distribute the
77
- Work and such Derivative Works in Source or Object form.
78
-
79
- 3. Grant of Patent License. Subject to the terms and conditions of
80
- this License, each Contributor hereby grants to You a perpetual,
81
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
82
- (except as stated in this section) patent license to make, have made,
83
- use, offer to sell, sell, import, and otherwise transfer the Work,
84
- where such license applies only to those patent claims licensable
85
- by such Contributor that are necessarily infringed by their
86
- Contribution(s) alone or by combination of their Contribution(s)
87
- with the Work to which such Contribution(s) was submitted. If You
88
- institute patent litigation against any entity (including a
89
- cross-claim or counterclaim in a lawsuit) alleging that the Work
90
- or a Contribution incorporated within the Work constitutes direct
91
- or contributory patent infringement, then any patent licenses
92
- granted to You under this License for that Work shall terminate
93
- as of the date such litigation is filed.
94
-
95
- 4. Redistribution. You may reproduce and distribute copies of the
96
- Work or Derivative Works thereof in any medium, with or without
97
- modifications, and in Source or Object form, provided that You
98
- meet the following conditions:
99
-
100
- (a) You must give any other recipients of the Work or
101
- Derivative Works a copy of this License; and
102
-
103
- (b) You must cause any modified files to carry prominent notices
104
- stating that You changed the files; and
105
-
106
- (c) You must retain, in the Source form of any Derivative Works
107
- that You distribute, all copyright, patent, trademark, and
108
- attribution notices from the Source form of the Work,
109
- excluding those notices that do not pertain to any part of
110
- the Derivative Works; and
111
-
112
- (d) If the Work includes a "NOTICE" text file as part of its
113
- distribution, then any Derivative Works that You distribute must
114
- include a readable copy of the attribution notices contained
115
- within such NOTICE file, excluding those notices that do not
116
- pertain to any part of the Derivative Works, in at least one
117
- of the following places: within a NOTICE text file distributed
118
- as part of the Derivative Works; within the Source form or
119
- documentation, if provided along with the Derivative Works; or,
120
- within a display generated by the Derivative Works, if and
121
- wherever such third-party notices normally appear. The contents
122
- of the NOTICE file are for informational purposes only and
123
- do not modify the License. You may add Your own attribution
124
- notices within Derivative Works that You distribute, alongside
125
- or as an addendum to the NOTICE text from the Work, provided
126
- that such additional attribution notices cannot be construed
127
- as modifying the License.
128
-
129
- You may add Your own copyright statement to Your modifications and
130
- may provide additional or different license terms and conditions
131
- for use, reproduction, or distribution of Your modifications, or
132
- for any such Derivative Works as a whole, provided Your use,
133
- reproduction, and distribution of the Work otherwise complies with
134
- the conditions stated in this License.
135
-
136
- 5. Submission of Contributions. Unless You explicitly state otherwise,
137
- any Contribution intentionally submitted for inclusion in the Work
138
- by You to the Licensor shall be under the terms and conditions of
139
- this License, without any additional terms or conditions.
140
- Notwithstanding the above, nothing herein shall supersede or modify
141
- the terms of any separate license agreement you may have executed
142
- with Licensor regarding such Contributions.
143
-
144
- 6. Trademarks. This License does not grant permission to use the trade
145
- names, trademarks, service marks, or product names of the Licensor,
146
- except as required for reasonable and customary use in describing the
147
- origin of the Work and reproducing the content of the NOTICE file.
148
-
149
- 7. Disclaimer of Warranty. Unless required by applicable law or
150
- agreed to in writing, Licensor provides the Work (and each
151
- Contributor provides its Contributions) on an "AS IS" BASIS,
152
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
153
- implied, including, without limitation, any warranties or conditions
154
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
155
- PARTICULAR PURPOSE. You are solely responsible for determining the
156
- appropriateness of using or redistributing the Work and assume any
157
- risks associated with Your exercise of permissions under this License.
158
-
159
- 8. Limitation of Liability. In no event and under no legal theory,
160
- whether in tort (including negligence), contract, or otherwise,
161
- unless required by applicable law (such as deliberate and grossly
162
- negligent acts) or agreed to in writing, shall any Contributor be
163
- liable to You for damages, including any direct, indirect, special,
164
- incidental, or consequential damages of any character arising as a
165
- result of this License or out of the use or inability to use the
166
- Work (including but not limited to damages for loss of goodwill,
167
- work stoppage, computer failure or malfunction, or any and all
168
- other commercial damages or losses), even if such Contributor
169
- has been advised of the possibility of such damages.
170
-
171
- 9. Accepting Warranty or Additional Liability. While redistributing
172
- the Work or Derivative Works thereof, You may choose to offer,
173
- and charge a fee for, acceptance of support, warranty, indemnity,
174
- or other liability obligations and/or rights consistent with this
175
- License. However, in accepting such obligations, You may act only
176
- on Your own behalf and on Your sole responsibility, not on behalf
177
- of any other Contributor, and only if You agree to indemnify,
178
- defend, and hold each Contributor harmless for any liability
179
- incurred by, or claims asserted against, such Contributor by reason
180
- of your accepting any such warranty or additional liability.
181
-
182
- END OF TERMS AND CONDITIONS
183
-
184
- APPENDIX: How to apply the Apache License to your work.
185
-
186
- To apply the Apache License to your work, attach the following
187
- boilerplate notice, with the fields enclosed by brackets "[]"
188
- replaced with your own identifying information. (Don't include
189
- the brackets!) The text should be enclosed in the appropriate
190
- comment syntax for the file format. We also recommend that a
191
- file or class name and description of purpose be included on the
192
- same "printed page" as the copyright notice for easier
193
- identification within third-party archives.
194
-
195
-
196
- Copyright 2024 HaiyangLi
197
-
198
- Licensed under the Apache License, Version 2.0 (the "License");
199
- you may not use this file except in compliance with the License.
200
- You may obtain a copy of the License at
201
-
202
- http://www.apache.org/licenses/LICENSE-2.0
203
-
204
- Unless required by applicable law or agreed to in writing, software
205
- distributed under the License is distributed on an "AS IS" BASIS,
206
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
- See the License for the specific language governing permissions and
208
- limitations under the License.
209
-
210
- Project-URL: PyPI, https://pypi.org/project/lionagi/
211
- Project-URL: Repository, https://github.com/lion-agi/lionagi
212
- Project-URL: Discord, https://discord.gg/ACnynvvPjt
213
- Classifier: Programming Language :: Python :: 3
214
- Classifier: License :: OSI Approved :: Apache Software License
215
- Classifier: Operating System :: OS Independent
216
- Requires-Python: >=3.10
217
- Description-Content-Type: text/markdown
218
- License-File: LICENSE
219
- Requires-Dist: aiohttp >=3.9.3
220
- Requires-Dist: python-dotenv ==1.0.0
221
- Requires-Dist: tiktoken >=0.5.1
222
- Requires-Dist: pydantic >=2.6.0
223
- Requires-Dist: aiocache >=0.12.2
224
- Requires-Dist: pandas >=2.1.0
225
- Requires-Dist: pytest >=8.2.2
226
- Requires-Dist: moto >=5.0.9
227
- Requires-Dist: PyYAML >=6.0.1
228
- Requires-Dist: boto3 >=1.34.131
229
-
230
- ![PyPI - Version](https://img.shields.io/pypi/v/lionagi?labelColor=233476aa&color=231fc935) ![PyPI - Downloads](https://img.shields.io/pypi/dm/lionagi?color=blue)
231
-
232
-
233
- [PyPI](https://pypi.org/project/lionagi/) | [Documentation](https://ocean-lion.com/Welcome) | [Discord](https://discord.gg/aqSJ2v46vu) | [Roadmap](https://trello.com/b/3seomsrI/lionagi)
234
-
235
-
236
- # Language InterOperable Network - LION
237
- ### an AGentic Intelligence Operating System
238
-
239
- ```
240
- pip install lionagi==0.2.5
241
- ```
242
-
243
- **Powerful Intelligent Workflow Automation**
244
-
245
- lionagi is an intelligent agentic workflow automation framework. It introduces advanced ML models into any existing workflows and data infrastructure.
246
-
247
-
248
- ### Why Automating Workflows?
249
-
250
- Intelligent AI models such as [Large Language Model (LLM)](https://en.wikipedia.org/wiki/Large_language_model), introduced new possibilities of human-computer interaction. LLMs is drawing a lot of attention worldwide due to its “one model fits all”, and incredible performance. One way of using LLM is to use as search engine, however, this usage is complicated by the fact that LLMs [hallucinate](https://arxiv.org/abs/2311.05232).
251
-
252
- What goes inside of a LLM is more akin to a [black-box](https://pauldeepakraj-r.medium.com/demystifying-the-black-box-a-deep-dive-into-llm-interpretability-971524966fdf), lacking interpretability, meaning we don’t know how it reaches certain answer or conclusion, thus we cannot fully trust/rely the output from such a system. Another approach of using LLM is to treat them as [intelligent agent](https://arxiv.org/html/2401.03428v1), that are equipped with various tools and data sources. A workflow conducted by such an intelligent agent have clear steps, and we can specify, observe, evaluate and optimize the logic for each decision that the `agent` made to perform actions. This approach, though we still cannot pinpoint how LLM output what it outputs, but the flow itself is **explainable**.
253
-
254
-
255
-
256
- ### Community
257
-
258
- We encourage contributions to LionAGI and invite you to enrich its features and capabilities. Engage with us and other community members [Join Our Discord](https://discord.gg/aqSJ2v46vu)
259
-
260
- ### Citation
261
-
262
- When referencing LionAGI in your projects or research, please cite:
263
-
264
- ```bibtex
265
- @software{Li_LionAGI_2023,
266
- author = {Haiyang Li},
267
- month = {12},
268
- year = {2023},
269
- title = {LionAGI: Towards Automated General Intelligence},
270
- url = {https://github.com/lion-agi/lionagi},
271
- }
272
- ```
273
-
274
-
275
- ### Requirements
276
- Python 3.10 or higher.
277
-