lionagi 0.1.1__py3-none-any.whl → 0.2.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (257) hide show
  1. lionagi/__init__.py +60 -5
  2. lionagi/core/__init__.py +0 -25
  3. lionagi/core/_setting/_setting.py +59 -0
  4. lionagi/core/action/__init__.py +14 -0
  5. lionagi/core/action/function_calling.py +136 -0
  6. lionagi/core/action/manual.py +1 -0
  7. lionagi/core/action/node.py +109 -0
  8. lionagi/core/action/tool.py +114 -0
  9. lionagi/core/action/tool_manager.py +356 -0
  10. lionagi/core/agent/base_agent.py +27 -13
  11. lionagi/core/agent/eval/evaluator.py +1 -0
  12. lionagi/core/agent/eval/vote.py +40 -0
  13. lionagi/core/agent/learn/learner.py +59 -0
  14. lionagi/core/agent/plan/unit_template.py +1 -0
  15. lionagi/core/collections/__init__.py +17 -0
  16. lionagi/core/{generic/data_logger.py → collections/_logger.py} +69 -55
  17. lionagi/core/collections/abc/__init__.py +53 -0
  18. lionagi/core/collections/abc/component.py +615 -0
  19. lionagi/core/collections/abc/concepts.py +297 -0
  20. lionagi/core/collections/abc/exceptions.py +150 -0
  21. lionagi/core/collections/abc/util.py +45 -0
  22. lionagi/core/collections/exchange.py +161 -0
  23. lionagi/core/collections/flow.py +426 -0
  24. lionagi/core/collections/model.py +419 -0
  25. lionagi/core/collections/pile.py +913 -0
  26. lionagi/core/collections/progression.py +236 -0
  27. lionagi/core/collections/util.py +64 -0
  28. lionagi/core/director/direct.py +314 -0
  29. lionagi/core/director/director.py +2 -0
  30. lionagi/core/{execute/branch_executor.py → engine/branch_engine.py} +134 -97
  31. lionagi/core/{execute/instruction_map_executor.py → engine/instruction_map_engine.py} +80 -55
  32. lionagi/{experimental/directive/evaluator → core/engine}/script_engine.py +17 -1
  33. lionagi/core/executor/base_executor.py +90 -0
  34. lionagi/core/{execute/structure_executor.py → executor/graph_executor.py} +83 -67
  35. lionagi/core/{execute → executor}/neo4j_executor.py +70 -67
  36. lionagi/core/generic/__init__.py +3 -33
  37. lionagi/core/generic/edge.py +42 -92
  38. lionagi/core/generic/edge_condition.py +16 -0
  39. lionagi/core/generic/graph.py +236 -0
  40. lionagi/core/generic/hyperedge.py +1 -0
  41. lionagi/core/generic/node.py +156 -221
  42. lionagi/core/generic/tree.py +48 -0
  43. lionagi/core/generic/tree_node.py +79 -0
  44. lionagi/core/mail/__init__.py +12 -0
  45. lionagi/core/mail/mail.py +25 -0
  46. lionagi/core/mail/mail_manager.py +139 -58
  47. lionagi/core/mail/package.py +45 -0
  48. lionagi/core/mail/start_mail.py +36 -0
  49. lionagi/core/message/__init__.py +19 -0
  50. lionagi/core/message/action_request.py +133 -0
  51. lionagi/core/message/action_response.py +135 -0
  52. lionagi/core/message/assistant_response.py +95 -0
  53. lionagi/core/message/instruction.py +234 -0
  54. lionagi/core/message/message.py +101 -0
  55. lionagi/core/message/system.py +86 -0
  56. lionagi/core/message/util.py +283 -0
  57. lionagi/core/report/__init__.py +4 -0
  58. lionagi/core/report/base.py +217 -0
  59. lionagi/core/report/form.py +231 -0
  60. lionagi/core/report/report.py +166 -0
  61. lionagi/core/report/util.py +28 -0
  62. lionagi/core/rule/_default.py +16 -0
  63. lionagi/core/rule/action.py +99 -0
  64. lionagi/core/rule/base.py +238 -0
  65. lionagi/core/rule/boolean.py +56 -0
  66. lionagi/core/rule/choice.py +47 -0
  67. lionagi/core/rule/mapping.py +96 -0
  68. lionagi/core/rule/number.py +71 -0
  69. lionagi/core/rule/rulebook.py +109 -0
  70. lionagi/core/rule/string.py +52 -0
  71. lionagi/core/rule/util.py +35 -0
  72. lionagi/core/session/branch.py +431 -0
  73. lionagi/core/session/directive_mixin.py +287 -0
  74. lionagi/core/session/session.py +229 -903
  75. lionagi/core/structure/__init__.py +1 -0
  76. lionagi/core/structure/chain.py +1 -0
  77. lionagi/core/structure/forest.py +1 -0
  78. lionagi/core/structure/graph.py +1 -0
  79. lionagi/core/structure/tree.py +1 -0
  80. lionagi/core/unit/__init__.py +5 -0
  81. lionagi/core/unit/parallel_unit.py +245 -0
  82. lionagi/core/unit/template/action.py +81 -0
  83. lionagi/core/unit/template/base.py +51 -0
  84. lionagi/core/unit/template/plan.py +84 -0
  85. lionagi/core/unit/template/predict.py +109 -0
  86. lionagi/core/unit/template/score.py +124 -0
  87. lionagi/core/unit/template/select.py +104 -0
  88. lionagi/core/unit/unit.py +362 -0
  89. lionagi/core/unit/unit_form.py +305 -0
  90. lionagi/core/unit/unit_mixin.py +1168 -0
  91. lionagi/core/unit/util.py +71 -0
  92. lionagi/core/validator/validator.py +364 -0
  93. lionagi/core/work/work.py +74 -0
  94. lionagi/core/work/work_function.py +92 -0
  95. lionagi/core/work/work_queue.py +81 -0
  96. lionagi/core/work/worker.py +195 -0
  97. lionagi/core/work/worklog.py +124 -0
  98. lionagi/experimental/compressor/base.py +46 -0
  99. lionagi/experimental/compressor/llm_compressor.py +247 -0
  100. lionagi/experimental/compressor/llm_summarizer.py +61 -0
  101. lionagi/experimental/compressor/util.py +70 -0
  102. lionagi/experimental/directive/__init__.py +19 -0
  103. lionagi/experimental/directive/parser/base_parser.py +69 -2
  104. lionagi/experimental/directive/{template_ → template}/base_template.py +17 -1
  105. lionagi/{libs/ln_tokenizer.py → experimental/directive/tokenizer.py} +16 -0
  106. lionagi/experimental/{directive/evaluator → evaluator}/ast_evaluator.py +16 -0
  107. lionagi/experimental/{directive/evaluator → evaluator}/base_evaluator.py +16 -0
  108. lionagi/experimental/knowledge/__init__.py +0 -0
  109. lionagi/experimental/knowledge/base.py +10 -0
  110. lionagi/experimental/knowledge/graph.py +0 -0
  111. lionagi/experimental/memory/__init__.py +0 -0
  112. lionagi/experimental/strategies/__init__.py +0 -0
  113. lionagi/experimental/strategies/base.py +1 -0
  114. lionagi/integrations/bridge/langchain_/documents.py +4 -0
  115. lionagi/integrations/bridge/llamaindex_/index.py +30 -0
  116. lionagi/integrations/bridge/llamaindex_/llama_index_bridge.py +6 -0
  117. lionagi/integrations/chunker/chunk.py +161 -24
  118. lionagi/integrations/config/oai_configs.py +34 -3
  119. lionagi/integrations/config/openrouter_configs.py +14 -2
  120. lionagi/integrations/loader/load.py +122 -21
  121. lionagi/integrations/loader/load_util.py +6 -77
  122. lionagi/integrations/provider/_mapping.py +46 -0
  123. lionagi/integrations/provider/litellm.py +2 -1
  124. lionagi/integrations/provider/mlx_service.py +16 -9
  125. lionagi/integrations/provider/oai.py +91 -4
  126. lionagi/integrations/provider/ollama.py +6 -5
  127. lionagi/integrations/provider/openrouter.py +115 -8
  128. lionagi/integrations/provider/services.py +2 -2
  129. lionagi/integrations/provider/transformers.py +18 -22
  130. lionagi/integrations/storage/__init__.py +3 -3
  131. lionagi/integrations/storage/neo4j.py +52 -60
  132. lionagi/integrations/storage/storage_util.py +45 -47
  133. lionagi/integrations/storage/structure_excel.py +285 -0
  134. lionagi/integrations/storage/to_excel.py +23 -7
  135. lionagi/libs/__init__.py +26 -1
  136. lionagi/libs/ln_api.py +75 -20
  137. lionagi/libs/ln_context.py +37 -0
  138. lionagi/libs/ln_convert.py +21 -9
  139. lionagi/libs/ln_func_call.py +69 -28
  140. lionagi/libs/ln_image.py +107 -0
  141. lionagi/libs/ln_nested.py +26 -11
  142. lionagi/libs/ln_parse.py +82 -23
  143. lionagi/libs/ln_queue.py +16 -0
  144. lionagi/libs/ln_tokenize.py +164 -0
  145. lionagi/libs/ln_validate.py +16 -0
  146. lionagi/libs/special_tokens.py +172 -0
  147. lionagi/libs/sys_util.py +95 -24
  148. lionagi/lions/coder/code_form.py +13 -0
  149. lionagi/lions/coder/coder.py +50 -3
  150. lionagi/lions/coder/util.py +30 -25
  151. lionagi/tests/libs/test_func_call.py +23 -21
  152. lionagi/tests/libs/test_nested.py +36 -21
  153. lionagi/tests/libs/test_parse.py +1 -1
  154. lionagi/tests/test_core/collections/__init__.py +0 -0
  155. lionagi/tests/test_core/collections/test_component.py +206 -0
  156. lionagi/tests/test_core/collections/test_exchange.py +138 -0
  157. lionagi/tests/test_core/collections/test_flow.py +145 -0
  158. lionagi/tests/test_core/collections/test_pile.py +171 -0
  159. lionagi/tests/test_core/collections/test_progression.py +129 -0
  160. lionagi/tests/test_core/generic/__init__.py +0 -0
  161. lionagi/tests/test_core/generic/test_edge.py +67 -0
  162. lionagi/tests/test_core/generic/test_graph.py +96 -0
  163. lionagi/tests/test_core/generic/test_node.py +106 -0
  164. lionagi/tests/test_core/generic/test_tree_node.py +73 -0
  165. lionagi/tests/test_core/test_branch.py +115 -294
  166. lionagi/tests/test_core/test_form.py +46 -0
  167. lionagi/tests/test_core/test_report.py +105 -0
  168. lionagi/tests/test_core/test_validator.py +111 -0
  169. lionagi/version.py +1 -1
  170. lionagi-0.2.0.dist-info/LICENSE +202 -0
  171. lionagi-0.2.0.dist-info/METADATA +272 -0
  172. lionagi-0.2.0.dist-info/RECORD +240 -0
  173. lionagi/core/branch/base.py +0 -653
  174. lionagi/core/branch/branch.py +0 -474
  175. lionagi/core/branch/flow_mixin.py +0 -96
  176. lionagi/core/branch/util.py +0 -323
  177. lionagi/core/direct/__init__.py +0 -19
  178. lionagi/core/direct/cot.py +0 -123
  179. lionagi/core/direct/plan.py +0 -164
  180. lionagi/core/direct/predict.py +0 -166
  181. lionagi/core/direct/react.py +0 -171
  182. lionagi/core/direct/score.py +0 -279
  183. lionagi/core/direct/select.py +0 -170
  184. lionagi/core/direct/sentiment.py +0 -1
  185. lionagi/core/direct/utils.py +0 -110
  186. lionagi/core/direct/vote.py +0 -64
  187. lionagi/core/execute/base_executor.py +0 -47
  188. lionagi/core/flow/baseflow.py +0 -23
  189. lionagi/core/flow/monoflow/ReAct.py +0 -238
  190. lionagi/core/flow/monoflow/__init__.py +0 -9
  191. lionagi/core/flow/monoflow/chat.py +0 -95
  192. lionagi/core/flow/monoflow/chat_mixin.py +0 -253
  193. lionagi/core/flow/monoflow/followup.py +0 -213
  194. lionagi/core/flow/polyflow/__init__.py +0 -1
  195. lionagi/core/flow/polyflow/chat.py +0 -251
  196. lionagi/core/form/action_form.py +0 -26
  197. lionagi/core/form/field_validator.py +0 -287
  198. lionagi/core/form/form.py +0 -302
  199. lionagi/core/form/mixin.py +0 -214
  200. lionagi/core/form/scored_form.py +0 -13
  201. lionagi/core/generic/action.py +0 -26
  202. lionagi/core/generic/component.py +0 -455
  203. lionagi/core/generic/condition.py +0 -44
  204. lionagi/core/generic/mail.py +0 -90
  205. lionagi/core/generic/mailbox.py +0 -36
  206. lionagi/core/generic/relation.py +0 -70
  207. lionagi/core/generic/signal.py +0 -22
  208. lionagi/core/generic/structure.py +0 -362
  209. lionagi/core/generic/transfer.py +0 -20
  210. lionagi/core/generic/work.py +0 -40
  211. lionagi/core/graph/graph.py +0 -126
  212. lionagi/core/graph/tree.py +0 -190
  213. lionagi/core/mail/schema.py +0 -63
  214. lionagi/core/messages/schema.py +0 -325
  215. lionagi/core/tool/__init__.py +0 -5
  216. lionagi/core/tool/tool.py +0 -28
  217. lionagi/core/tool/tool_manager.py +0 -282
  218. lionagi/experimental/tool/function_calling.py +0 -43
  219. lionagi/experimental/tool/manual.py +0 -66
  220. lionagi/experimental/tool/schema.py +0 -59
  221. lionagi/experimental/tool/tool_manager.py +0 -138
  222. lionagi/experimental/tool/util.py +0 -16
  223. lionagi/experimental/work/_logger.py +0 -25
  224. lionagi/experimental/work/schema.py +0 -30
  225. lionagi/experimental/work/tests.py +0 -72
  226. lionagi/experimental/work/work_function.py +0 -89
  227. lionagi/experimental/work/worker.py +0 -12
  228. lionagi/integrations/bridge/llamaindex_/get_index.py +0 -294
  229. lionagi/tests/test_core/test_base_branch.py +0 -426
  230. lionagi/tests/test_core/test_chat_flow.py +0 -63
  231. lionagi/tests/test_core/test_mail_manager.py +0 -75
  232. lionagi/tests/test_core/test_prompts.py +0 -51
  233. lionagi/tests/test_core/test_session.py +0 -254
  234. lionagi/tests/test_core/test_session_base_util.py +0 -313
  235. lionagi/tests/test_core/test_tool_manager.py +0 -95
  236. lionagi-0.1.1.dist-info/LICENSE +0 -9
  237. lionagi-0.1.1.dist-info/METADATA +0 -174
  238. lionagi-0.1.1.dist-info/RECORD +0 -190
  239. /lionagi/core/{branch → _setting}/__init__.py +0 -0
  240. /lionagi/core/{execute → agent/eval}/__init__.py +0 -0
  241. /lionagi/core/{flow → agent/learn}/__init__.py +0 -0
  242. /lionagi/core/{form → agent/plan}/__init__.py +0 -0
  243. /lionagi/core/{branch/executable_branch.py → agent/plan/plan.py} +0 -0
  244. /lionagi/core/{graph → director}/__init__.py +0 -0
  245. /lionagi/core/{messages → engine}/__init__.py +0 -0
  246. /lionagi/{experimental/directive/evaluator → core/engine}/sandbox_.py +0 -0
  247. /lionagi/{experimental/directive/evaluator → core/executor}/__init__.py +0 -0
  248. /lionagi/{experimental/directive/template_ → core/rule}/__init__.py +0 -0
  249. /lionagi/{experimental/tool → core/unit/template}/__init__.py +0 -0
  250. /lionagi/{experimental/work → core/validator}/__init__.py +0 -0
  251. /lionagi/core/{flow/mono_chat_mixin.py → work/__init__.py} +0 -0
  252. /lionagi/experimental/{work/exchange.py → compressor/__init__.py} +0 -0
  253. /lionagi/experimental/{work/util.py → directive/template/__init__.py} +0 -0
  254. /lionagi/experimental/directive/{schema.py → template/schema.py} +0 -0
  255. /lionagi/{tests/libs/test_async.py → experimental/evaluator/__init__.py} +0 -0
  256. {lionagi-0.1.1.dist-info → lionagi-0.2.0.dist-info}/WHEEL +0 -0
  257. {lionagi-0.1.1.dist-info → lionagi-0.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,206 @@
1
+ import unittest
2
+ from lionagi.core.collections.abc.component import (
3
+ Component,
4
+ LionValueError,
5
+ LionTypeError,
6
+ )
7
+ import pandas as pd
8
+ from datetime import datetime
9
+ import json
10
+
11
+
12
+ class TestComponent(unittest.TestCase):
13
+
14
+ def setUp(self):
15
+ """Set up a basic Component instance for testing."""
16
+ self.component = Component()
17
+
18
+ def test_initialization(self):
19
+ """Test basic initialization and attributes."""
20
+ self.assertIsInstance(self.component.ln_id, str)
21
+ self.assertIsInstance(self.component.timestamp, str)
22
+ self.assertIsInstance(self.component.metadata, dict)
23
+ self.assertIsNone(self.component.content)
24
+ self.assertEqual(self.component.embedding, [])
25
+
26
+ def test_setting_attributes(self):
27
+ """Test setting and updating attributes."""
28
+ self.component.content = 1
29
+ self.assertEqual(self.component.content, 1)
30
+ self.assertIn("content", self.component.metadata["last_updated"])
31
+
32
+ def test_class_name(self):
33
+ """Test the class_name property."""
34
+ self.assertEqual(self.component.class_name, "Component")
35
+
36
+ def test_to_dict(self):
37
+ """Test converting to dictionary."""
38
+ self.component.content = "example content"
39
+ dict_repr = self.component.to_dict()
40
+ self.assertEqual(dict_repr["content"], "example content")
41
+ self.assertEqual(dict_repr["lion_class"], "Component")
42
+
43
+ def test_to_json_str(self):
44
+ """Test converting to JSON string."""
45
+ self.component.content = "example content"
46
+ json_str = self.component.to_json_str()
47
+ self.assertIn('"content": "example content"', json_str)
48
+
49
+ def test_to_xml(self):
50
+ """Test converting to XML string."""
51
+ self.component.content = "example content"
52
+ xml_str = self.component.to_xml()
53
+ self.assertIn("<content>example content</content>", xml_str)
54
+
55
+ def test_to_pd_series(self):
56
+ """Test converting to Pandas Series."""
57
+ self.component.content = "example content"
58
+ series = self.component.to_pd_series()
59
+ self.assertEqual(series["content"], "example content")
60
+
61
+ def test_from_obj_dict(self):
62
+ """Test creating a Component from a dictionary."""
63
+ dict_obj = {"a": 1, "b": 2}
64
+ new_component = Component.from_obj(dict_obj)
65
+ self.assertEqual(new_component.metadata["a"], 1)
66
+ self.assertEqual(new_component.metadata["b"], 2)
67
+
68
+ def test_from_obj_str(self):
69
+ """Test creating a Component from a JSON string."""
70
+ json_str = '{"a": 1, "b": 2}'
71
+ new_component = Component.from_obj(json_str)
72
+ self.assertEqual(new_component.metadata["a"], 1)
73
+ self.assertEqual(new_component.metadata["b"], 2)
74
+
75
+ def test_from_obj_fuzzy_str(self):
76
+ """Test creating a Component from a fuzzy JSON string."""
77
+ fuzzy_json_str = '{"name": "John", "age": 30, "city": ["New York", "DC", "LA"]'
78
+ new_component = Component.from_obj(fuzzy_json_str, fuzzy_parse=True)
79
+ self.assertEqual(new_component.metadata["name"], "John")
80
+ self.assertEqual(new_component.metadata["age"], 30)
81
+ self.assertEqual(new_component.metadata["city"], ["New York", "DC", "LA"])
82
+
83
+ def test_from_obj_series(self):
84
+ """Test creating a Component from a Pandas Series."""
85
+ series_obj = pd.Series({"a": 1, "b": 2})
86
+ new_component = Component.from_obj(series_obj)
87
+ self.assertEqual(new_component.metadata["a"], 1)
88
+ self.assertEqual(new_component.metadata["b"], 2)
89
+
90
+ def test_from_obj_dataframe(self):
91
+ """Test creating Components from a Pandas DataFrame."""
92
+ df = pd.DataFrame({"a": [1, 2], "b": [3, 4]}, index=["row1", "row2"])
93
+ components = Component.from_obj(df)
94
+ self.assertEqual(len(components), 2)
95
+ self.assertEqual(components[0].metadata["a"], 1)
96
+ self.assertEqual(components[0].metadata["b"], 3)
97
+ self.assertEqual(components[1].metadata["a"], 2)
98
+ self.assertEqual(components[1].metadata["b"], 4)
99
+
100
+ def test_metadata_manipulation(self):
101
+ """Test manipulation of metadata."""
102
+ self.component._meta_insert(["new_key"], "new_value")
103
+ self.assertEqual(self.component.metadata["new_key"], "new_value")
104
+ self.component._meta_set(["new_key"], "updated_value")
105
+ self.assertEqual(self.component.metadata["new_key"], "updated_value")
106
+ nested_value = {"a": 1, "b": 2}
107
+ self.component._meta_insert(["nested", 0], nested_value)
108
+ self.assertEqual(self.component.metadata["nested"][0], nested_value)
109
+ self.assertEqual(self.component._meta_get(["nested", 0, "a"]), 1)
110
+
111
+ def test_invalid_metadata_assignment(self):
112
+ """Test invalid direct assignment to metadata."""
113
+ with self.assertRaises(AttributeError):
114
+ self.component.metadata = {}
115
+
116
+ def test_field_annotations(self):
117
+ """Test field annotations."""
118
+ annotations = self.component._field_annotations
119
+ self.assertIn("ln_id", annotations)
120
+ self.assertIn("timestamp", annotations)
121
+
122
+ def test_dynamic_field_addition(self):
123
+ """Test adding fields dynamically to the Component."""
124
+ self.component._add_field(
125
+ "welcome", str, default="new value", value="hello world again"
126
+ )
127
+ self.assertEqual(
128
+ self.component._get_field_attr("welcome", "default"), "new value"
129
+ )
130
+ self.assertEqual(getattr(self.component, "welcome"), "hello world again")
131
+
132
+ def test_validation_error_handling(self):
133
+ """Test handling of validation errors."""
134
+ with self.assertRaises(LionValueError):
135
+ Component.from_obj({"ln_id": 12345}) # Invalid ln_id type
136
+
137
+ def test_str_repr_methods(self):
138
+ """Test __str__ and __repr__ methods."""
139
+ self.component.content = "example content"
140
+ self.assertIn("example content", str(self.component))
141
+ self.assertIn("example content", repr(self.component))
142
+
143
+ def test_embedded_content(self):
144
+ """Test embedded content handling."""
145
+ embedding_str = "[1.0, 2.0, 3.0]"
146
+ self.component.embedding = self.component._validate_embedding(embedding_str)
147
+ self.assertEqual(self.component.embedding, [1.0, 2.0, 3.0])
148
+
149
+ def test_invalid_embedded_content(self):
150
+ """Test invalid embedded content handling."""
151
+ with self.assertRaises(ValueError):
152
+ self.component._validate_embedding("[1.0, 'invalid', 3.0]")
153
+
154
+ def test_timestamp_format(self):
155
+ """Test if the timestamp is in the correct format."""
156
+ timestamp = self.component.timestamp
157
+ try:
158
+ datetime.strptime(timestamp, "%Y-%m-%dT%H:%M:%S.%f")
159
+ except ValueError:
160
+ self.fail("Timestamp is not in the correct format")
161
+
162
+ def test_default_field_values(self):
163
+ """Test the default values of fields."""
164
+ default_fields = self.component._all_fields
165
+ self.assertEqual(default_fields["embedding"].default, [])
166
+ self.assertEqual(default_fields["metadata"].default_factory(), {})
167
+ self.assertEqual(default_fields["extra_fields"].default_factory(), {})
168
+ self.assertIsNone(default_fields["content"].default)
169
+
170
+ def test_deeply_nested_metadata(self):
171
+ """Test setting and getting deeply nested metadata."""
172
+ nested_value = {"level1": {"level2": {"level3": "deep_value"}}}
173
+ self.component._meta_insert(["nested", 0], nested_value)
174
+ self.assertEqual(
175
+ self.component._meta_get(["nested", 0, "level1", "level2", "level3"]),
176
+ "deep_value",
177
+ )
178
+
179
+ def test_invalid_from_obj_type(self):
180
+ """Test invalid type in from_obj method."""
181
+ with self.assertRaises(LionTypeError):
182
+ Component.from_obj(12345) # Invalid type
183
+
184
+ def test_from_obj_pydantic_model(self):
185
+ """Test creating a Component from a Pydantic BaseModel."""
186
+ from pydantic import BaseModel
187
+
188
+ class SampleModel(BaseModel):
189
+ name: str
190
+ age: int
191
+
192
+ sample_instance = SampleModel(name="John Doe", age=30)
193
+ new_component = Component.from_obj(sample_instance)
194
+ self.assertEqual(new_component.metadata["name"], "John Doe")
195
+ self.assertEqual(new_component.metadata["age"], 30)
196
+
197
+ def test_json_serialization_deserialization(self):
198
+ """Test JSON serialization and deserialization."""
199
+ original_dict = self.component.to_dict()
200
+ json_str = json.dumps(original_dict)
201
+ new_component = Component.from_obj(json_str)
202
+ self.assertEqual(original_dict, new_component.to_dict())
203
+
204
+
205
+ if __name__ == "__main__":
206
+ unittest.main()
@@ -0,0 +1,138 @@
1
+ import unittest
2
+ from lionagi import Node, pile, progression
3
+ from lionagi.core.collections.abc import Element
4
+ from lionagi.core.collections import Exchange
5
+
6
+
7
+ class TestExchange(unittest.TestCase):
8
+
9
+ def setUp(self):
10
+ # Setup for creating initial nodes, piles, and progressions
11
+ self.nodes = [Node(content=i) for i in range(10)]
12
+ self.pile1 = pile(self.nodes)
13
+ self.prog1 = progression(self.nodes[:5], name="left")
14
+ self.prog2 = progression(self.nodes[5:], name="right")
15
+ self.exchange = Exchange()
16
+
17
+ def test_initialization(self):
18
+ self.assertEqual(len(self.exchange.pile), 0)
19
+ self.assertEqual(len(self.exchange.pending_ins), 0)
20
+ self.assertEqual(len(self.exchange.pending_outs), 0)
21
+
22
+ def test_include_in(self):
23
+ sender_id = "sender1"
24
+ for node in self.nodes[:5]:
25
+ node.sender = sender_id
26
+ self.exchange.include(node, "in")
27
+
28
+ self.assertEqual(len(self.exchange.pile), 5)
29
+ self.assertIn(sender_id, self.exchange.pending_ins)
30
+ self.assertEqual(len(self.exchange.pending_ins[sender_id]), 5)
31
+
32
+ def test_include_out(self):
33
+ for node in self.nodes[:5]:
34
+ self.exchange.include(node, "out")
35
+
36
+ self.assertEqual(len(self.exchange.pile), 5)
37
+ self.assertEqual(len(self.exchange.pending_outs), 5)
38
+
39
+ def test_exclude(self):
40
+ for node in self.nodes[:5]:
41
+ self.exchange.include(node, "out")
42
+
43
+ node_to_remove = self.nodes[0]
44
+ self.exchange.exclude(node_to_remove)
45
+ self.assertNotIn(node_to_remove, self.exchange.pile)
46
+ self.assertNotIn(node_to_remove, self.exchange.pending_outs)
47
+
48
+ def test_exclude_from_in(self):
49
+ sender_id = "sender1"
50
+ for node in self.nodes[:5]:
51
+ node.sender = sender_id
52
+ self.exchange.include(node, "in")
53
+
54
+ node_to_remove = self.nodes[0]
55
+ self.exchange.exclude(node_to_remove)
56
+ self.assertNotIn(node_to_remove, self.exchange.pile)
57
+ self.assertNotIn(node_to_remove, self.exchange.pending_ins[sender_id])
58
+
59
+ def test_senders(self):
60
+ sender_id = "sender1"
61
+ for node in self.nodes[:5]:
62
+ node.sender = sender_id
63
+ self.exchange.include(node, "in")
64
+
65
+ self.assertIn(sender_id, self.exchange.senders)
66
+
67
+ def test_to_dict(self):
68
+ for node in self.nodes[:5]:
69
+ self.exchange.include(node, "out")
70
+
71
+ exchange_dict = self.exchange.to_dict()
72
+ self.assertIn("pile", exchange_dict)
73
+ self.assertIn("pending_ins", exchange_dict)
74
+ self.assertIn("pending_outs", exchange_dict)
75
+
76
+ def test_bool(self):
77
+ self.assertTrue(self.exchange)
78
+
79
+ # Additional Tests for Edge Cases
80
+ def test_include_non_sendable(self):
81
+ non_sendable = Element()
82
+ with self.assertRaises(AttributeError):
83
+ self.exchange.include(non_sendable, "in")
84
+
85
+ def test_exclude_nonexistent_item(self):
86
+ non_existent_node = Node(content="nonexistent")
87
+ result = self.exchange.exclude(non_existent_node)
88
+ self.assertTrue(result)
89
+
90
+ def test_include_multiple_items_in(self):
91
+ sender_id = "sender2"
92
+ new_nodes = [Node(content="new_node1"), Node(content="new_node2")]
93
+ for new_node in new_nodes:
94
+ new_node.sender = sender_id
95
+ self.exchange.include(new_node, "in")
96
+
97
+ self.assertEqual(len(self.exchange.pile), 2)
98
+ self.assertEqual(len(self.exchange.pending_ins[sender_id]), 2)
99
+
100
+ def test_include_multiple_items_out(self):
101
+ new_nodes = [Node(content="new_node1"), Node(content="new_node2")]
102
+ for new_node in new_nodes:
103
+ self.exchange.include(new_node, "out")
104
+
105
+ self.assertEqual(len(self.exchange.pile), 2)
106
+ self.assertEqual(len(self.exchange.pending_outs), 2)
107
+
108
+ def test_exclude_from_empty_exchange(self):
109
+ result = self.exchange.exclude(Node(content="nonexistent"))
110
+ self.assertTrue(result)
111
+
112
+ def test_clear_empty_exchange(self):
113
+ self.exchange.pile.clear()
114
+ self.exchange.pending_ins.clear()
115
+ self.exchange.pending_outs.clear()
116
+ self.assertEqual(len(self.exchange.pile), 0)
117
+ self.assertEqual(len(self.exchange.pending_ins), 0)
118
+ self.assertEqual(len(self.exchange.pending_outs), 0)
119
+
120
+ def test_clear_exchange(self):
121
+ sender_id = "sender3"
122
+ for node in self.nodes[:5]:
123
+ node.sender = sender_id
124
+ self.exchange.include(node, "in")
125
+ for node in self.nodes[5:]:
126
+ self.exchange.include(node, "out")
127
+
128
+ self.exchange.pile.clear()
129
+ self.exchange.pending_ins.clear()
130
+ self.exchange.pending_outs.clear()
131
+
132
+ self.assertEqual(len(self.exchange.pile), 0)
133
+ self.assertEqual(len(self.exchange.pending_ins), 0)
134
+ self.assertEqual(len(self.exchange.pending_outs), 0)
135
+
136
+
137
+ if __name__ == "__main__":
138
+ unittest.main()
@@ -0,0 +1,145 @@
1
+ import unittest
2
+ from lionagi import Node, pile, progression, flow
3
+
4
+
5
+ class TestFlow(unittest.TestCase):
6
+
7
+ def setUp(self):
8
+ # Setup for creating initial nodes, piles, and progressions
9
+ self.nodes = [Node(content=i) for i in range(10)]
10
+ self.pile1 = pile(self.nodes)
11
+ self.prog1 = progression(self.nodes[:5], name="left")
12
+ self.prog2 = progression(self.nodes[5:], name="right")
13
+ self.flow = flow([self.prog1, self.prog2])
14
+
15
+ def test_initialization(self):
16
+ self.assertEqual(len(self.flow.sequences), 2)
17
+ self.assertIn("left", self.flow.registry)
18
+ self.assertIn("right", self.flow.registry)
19
+
20
+ def test_append_to_flow(self):
21
+ new_node = Node(content="new_node")
22
+ self.flow.append(new_node, "left")
23
+ self.assertIn(new_node.ln_id, self.flow.get("left"))
24
+
25
+ def test_exclude_from_flow(self):
26
+ node_to_remove = self.nodes[0]
27
+ self.flow.exclude("left", node_to_remove)
28
+ self.assertNotIn(node_to_remove.ln_id, self.flow.get("left"))
29
+
30
+ def test_get_sequence(self):
31
+ seq = self.flow.get("left")
32
+ self.assertEqual(seq, self.prog1)
33
+ seq_default = self.flow.get("nonexistent", default=None)
34
+ self.assertIsNone(seq_default)
35
+
36
+ def test_register_sequence(self):
37
+ new_prog = progression(self.nodes[2:4], name="middle")
38
+ self.flow.register(new_prog)
39
+ self.assertIn("middle", self.flow.registry)
40
+
41
+ def test_popleft(self):
42
+ first_node_id = self.prog1[0]
43
+ removed_node_id = self.flow.popleft("left")
44
+ self.assertEqual(first_node_id, removed_node_id)
45
+ self.assertNotIn(removed_node_id, self.flow.get("left"))
46
+
47
+ def test_shape_and_size(self):
48
+ shape = self.flow.shape()
49
+ self.assertEqual(shape["left"], 5)
50
+ self.assertEqual(shape["right"], 5)
51
+ size = self.flow.size()
52
+ self.assertEqual(size, 10)
53
+
54
+ def test_clear(self):
55
+ self.flow.clear()
56
+ self.assertEqual(len(self.flow.sequences), 0)
57
+ self.assertEqual(len(self.flow.registry), 0)
58
+
59
+ def test_iteration(self):
60
+ items = list(self.flow)
61
+ self.assertEqual(len(items), 2)
62
+
63
+ def test_to_df(self):
64
+ df = self.flow.to_df()
65
+ self.assertEqual(df.shape[0], 2)
66
+ self.assertEqual(df.columns.tolist(), ["order", "name"])
67
+
68
+ def test_inclusion_check(self):
69
+ self.assertTrue(self.prog1 in self.flow)
70
+ self.assertTrue(self.prog2 in self.flow)
71
+ try:
72
+ a = Node(content="nonexistent") in self.flow
73
+ except TypeError:
74
+ pass
75
+
76
+ # Additional Tests for Edge Cases
77
+ def test_empty_flow_initialization(self):
78
+ empty_flow = flow()
79
+ self.assertEqual(len(empty_flow.sequences), 0)
80
+ self.assertEqual(len(empty_flow.registry), 0)
81
+
82
+ def test_append_to_nonexistent_sequence(self):
83
+ new_node = Node(content="new_node")
84
+ self.flow.append(new_node, "nonexistent")
85
+ self.assertIn(new_node.ln_id, self.flow.get("nonexistent"))
86
+
87
+ def test_exclude_nonexistent_item(self):
88
+ non_existent_node = Node(content="nonexistent")
89
+ result = self.flow.exclude("left", non_existent_node)
90
+ self.assertTrue(result)
91
+
92
+ def test_exclude_nonexistent_sequence(self):
93
+ result = self.flow.exclude("nonexistent")
94
+ self.assertFalse(result)
95
+
96
+ def test_get_nonexistent_sequence(self):
97
+ try:
98
+ self.flow.get("nonexistent")
99
+ except Exception as e:
100
+ if e.__class__.__name__ == "LionTypeError":
101
+ return
102
+ raise AssertionError("LionTypeError not raised")
103
+
104
+ def test_register_existing_sequence_name(self):
105
+ with self.assertRaises(ValueError):
106
+ self.flow.register(self.prog1, name="right")
107
+
108
+ def test_popleft_nonexistent_sequence(self):
109
+ try:
110
+ self.flow.popleft("nonexistent")
111
+ except Exception as e:
112
+ if e.__class__.__name__ == "LionTypeError":
113
+ return
114
+ raise AssertionError("LionTypeError not raised")
115
+
116
+ def test_append_multiple_items(self):
117
+ new_nodes = [Node(content="new_node1"), Node(content="new_node2")]
118
+ for new_node in new_nodes:
119
+ self.flow.append(new_node, "left")
120
+ for new_node in new_nodes:
121
+ self.assertIn(new_node.ln_id, self.flow.get("left"))
122
+
123
+ def test_remove_from_all_sequences(self):
124
+ node_to_remove = self.nodes[0]
125
+ self.flow.append(node_to_remove, "right")
126
+ self.flow.remove(node_to_remove)
127
+ self.assertNotIn(node_to_remove.ln_id, self.flow.get("right"))
128
+
129
+ def test_shape_empty_flow(self):
130
+ empty_flow = flow()
131
+ self.assertEqual(empty_flow.shape(), {})
132
+
133
+ def test_size_empty_flow(self):
134
+ empty_flow = flow()
135
+ self.assertEqual(empty_flow.size(), 0)
136
+
137
+ def test_clear_empty_flow(self):
138
+ empty_flow = flow()
139
+ empty_flow.clear()
140
+ self.assertEqual(len(empty_flow.sequences), 0)
141
+ self.assertEqual(len(empty_flow.registry), 0)
142
+
143
+
144
+ if __name__ == "__main__":
145
+ unittest.main()
@@ -0,0 +1,171 @@
1
+ import unittest
2
+ import asyncio
3
+ from lionagi.core.collections.pile import Pile
4
+ from lionagi import Node
5
+
6
+
7
+ class TestPile(unittest.TestCase):
8
+
9
+ def setUp(self):
10
+ """Create initial nodes and piles for testing."""
11
+ self.nodes1 = [Node(content=i) for i in ["A", "B", "C"]]
12
+ self.nodes2 = [Node(content=i) for i in ["D", "E", "F"]]
13
+ self.p1 = Pile(self.nodes1)
14
+ self.p2 = Pile(self.nodes2)
15
+
16
+ def test_add_piles(self):
17
+ """Test adding two piles."""
18
+ combined_pile = self.p1 + self.p2
19
+ self.assertEqual(len(combined_pile), 6)
20
+ contents = [node.content for node in combined_pile.values()]
21
+ self.assertListEqual(contents, ["A", "B", "C", "D", "E", "F"])
22
+
23
+ def test_subtract_piles(self):
24
+ """Test subtracting nodes from a pile."""
25
+ with self.assertRaises(Exception):
26
+ result_pile = self.p1 - self.nodes2[0] # D not in p1
27
+
28
+ def test_containment(self):
29
+ """Test containment check."""
30
+ self.assertIn(self.nodes1[1], self.p1) # B in p1
31
+ self.assertNotIn(self.nodes2[0], self.p1) # D not in p1
32
+
33
+ def test_include_nodes(self):
34
+ """Test including nodes in a pile."""
35
+ self.p1.include(self.nodes2)
36
+ self.assertEqual(len(self.p1), 6)
37
+ contents = [node.content for node in self.p1.values()]
38
+ self.assertListEqual(contents, ["A", "B", "C", "D", "E", "F"])
39
+
40
+ def test_exclude_nodes(self):
41
+ """Test excluding nodes from a pile."""
42
+ self.p1.include(self.nodes2) # Include first to have something to exclude
43
+ self.p1.exclude(self.nodes2)
44
+ self.assertEqual(len(self.p1), 5)
45
+ contents = [node.content for node in self.p1.values()]
46
+ self.assertListEqual(contents, ["A", "B", "C", "E", "F"])
47
+
48
+ def test_get_item_by_index(self):
49
+ """Test getting an item by index."""
50
+ node = self.p1[0]
51
+ self.assertEqual(node.content, "A")
52
+
53
+ def test_set_item_by_index(self):
54
+ """Test setting an item at a specific index."""
55
+ new_node = Node(content="Updated Node")
56
+ self.p1[0] = new_node
57
+ self.assertEqual(self.p1[0].content, "Updated Node")
58
+
59
+ def test_insert_item(self):
60
+ """Test inserting an item at a specific position."""
61
+ new_node = Node(content="Inserted Node")
62
+ self.p1.insert(0, new_node)
63
+ self.assertEqual(self.p1[0].content, "Inserted Node")
64
+ self.assertEqual(len(self.p1), 4)
65
+
66
+ def test_homogenous(self):
67
+ """Test if all items in the pile are of the same type."""
68
+ self.assertTrue(self.p1.is_homogenous())
69
+ with self.assertRaises(AttributeError):
70
+ mixed_pile = Pile(self.nodes1 + [123]) # Adding an int to mix types
71
+
72
+ def test_is_empty(self):
73
+ """Test if the pile is empty."""
74
+ empty_pile = Pile()
75
+ self.assertTrue(empty_pile.is_empty())
76
+ self.assertFalse(self.p1.is_empty())
77
+
78
+ def test_pop_item(self):
79
+ """Test popping an item from the pile."""
80
+ popped_node = self.p1.pop(self.nodes1[0].ln_id)
81
+ self.assertEqual(popped_node.content, "A")
82
+ self.assertEqual(len(self.p1), 2)
83
+
84
+ def test_clear_pile(self):
85
+ """Test clearing the pile."""
86
+ self.p1.clear()
87
+ self.assertTrue(self.p1.is_empty())
88
+
89
+ def test_update_pile(self):
90
+ """Test updating the pile with another pile."""
91
+ self.p1.update(self.p2)
92
+ self.assertEqual(len(self.p1), 6)
93
+ contents = [node.content for node in self.p1.values()]
94
+ self.assertListEqual(contents, ["A", "B", "C", "D", "E", "F"])
95
+
96
+ def test_to_dataframe(self):
97
+ """Test converting the pile to a DataFrame."""
98
+ df = self.p1.to_df()
99
+ self.assertEqual(len(df), 3)
100
+ self.assertListEqual(df["content"].tolist(), ["A", "B", "C"])
101
+
102
+ def test_create_index(self):
103
+ """Test creating an index for the pile."""
104
+ with self.assertRaises(ValueError):
105
+ self.p1.create_index(index_type="llama_index")
106
+
107
+ def test_create_query_engine(self):
108
+ """Test creating a query engine for the pile."""
109
+ with self.assertRaises(ValueError):
110
+ self.p1.create_query_engine(index_type="llama_index")
111
+
112
+ def test_create_chat_engine(self):
113
+ """Test creating a chat engine for the pile."""
114
+ with self.assertRaises(ValueError):
115
+ self.p1.create_chat_engine(index_type="llama_index")
116
+
117
+ # async def test_query_pile(self):
118
+ # """Test querying the pile."""
119
+ # self.p1.create_query_engine(index_type="llama_index")
120
+ # response = await self.p1.query_pile(query="test query")
121
+ # self.assertIsInstance(response, str)
122
+
123
+ # async def test_chat_pile(self):
124
+ # """Test chatting with the pile."""
125
+ # self.p1.create_chat_engine(index_type="llama_index")
126
+ # response = await self.p1.chat_pile(query="test chat")
127
+ # self.assertIsInstance(response, str)
128
+
129
+ # async def test_embed_pile(self):
130
+ # """Test embedding the items in the pile."""
131
+ # await self.p1.embed_pile()
132
+ # for node in self.p1.values():
133
+ # self.assertIn("embedding", node._all_fields)
134
+
135
+ def test_to_csv(self):
136
+ """Test saving the pile to a CSV file."""
137
+ self.p1.to_csv("test_pile.csv")
138
+ with open("test_pile.csv", "r") as f:
139
+ content = f.read()
140
+ self.assertIn("content", content)
141
+
142
+ def test_from_csv(self):
143
+ """Test loading a pile from a CSV file."""
144
+ self.p1.to_csv("test_pile.csv")
145
+ loaded_pile = Pile.from_csv("test_pile.csv")
146
+ self.assertEqual(len(loaded_pile), 3)
147
+ self.assertEqual(loaded_pile[0].content, "A")
148
+
149
+ def test_from_dataframe(self):
150
+ """Test loading a pile from a DataFrame."""
151
+ df = self.p1.to_df()
152
+ loaded_pile = Pile.from_df(df)
153
+ self.assertEqual(len(loaded_pile), 3)
154
+ self.assertEqual(loaded_pile[0].content, "A")
155
+
156
+ def test_as_query_tool(self):
157
+ """Test creating a query tool for the pile."""
158
+ with self.assertRaises(ValueError):
159
+ tool = self.p1.as_query_tool(index_type="llama_index")
160
+
161
+ def test_str_representation(self):
162
+ """Test the string representation of the pile."""
163
+ self.assertIsInstance(str(self.p1), str)
164
+
165
+ def test_repr_representation(self):
166
+ """Test the representation of the pile."""
167
+ self.assertIsInstance(repr(self.p1), str)
168
+
169
+
170
+ if __name__ == "__main__":
171
+ unittest.main()