lionagi 0.5.5__py3-none-any.whl → 0.6.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (433) hide show
  1. lionagi/__init__.py +18 -24
  2. lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
  3. lionagi/_errors.py +35 -0
  4. lionagi/libs/__init__.py +3 -0
  5. lionagi/libs/compress/__init__.py +3 -0
  6. lionagi/libs/compress/models.py +6 -2
  7. lionagi/libs/compress/utils.py +4 -16
  8. lionagi/libs/file/__init__.py +3 -0
  9. lionagi/libs/file/chunk.py +4 -0
  10. lionagi/libs/file/file_ops.py +4 -0
  11. lionagi/libs/file/params.py +4 -41
  12. lionagi/libs/file/process.py +4 -0
  13. lionagi/libs/file/save.py +5 -1
  14. lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
  15. lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
  16. lionagi/libs/{parse/nested → nested}/nget.py +6 -1
  17. lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
  18. lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
  19. lionagi/libs/{parse/nested → nested}/npop.py +5 -2
  20. lionagi/libs/{parse/nested → nested}/nset.py +6 -1
  21. lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
  22. lionagi/libs/{parse/nested → nested}/utils.py +5 -1
  23. lionagi/libs/package/__init__.py +3 -0
  24. lionagi/libs/package/imports.py +6 -2
  25. lionagi/libs/package/management.py +7 -3
  26. lionagi/libs/package/params.py +4 -0
  27. lionagi/libs/package/system.py +4 -0
  28. lionagi/libs/parse.py +30 -0
  29. lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
  30. lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
  31. lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
  32. lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
  33. lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
  34. lionagi/libs/validate/common_field_validators.py +170 -0
  35. lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
  36. lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
  37. lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
  38. lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
  39. lionagi/operations/__init__.py +13 -3
  40. lionagi/operations/brainstorm/__init__.py +3 -3
  41. lionagi/operations/brainstorm/brainstorm.py +33 -19
  42. lionagi/operations/brainstorm/prompt.py +4 -0
  43. lionagi/operations/plan/__init__.py +4 -0
  44. lionagi/operations/plan/plan.py +19 -16
  45. lionagi/operations/plan/prompt.py +4 -0
  46. lionagi/operations/select/__init__.py +4 -0
  47. lionagi/operations/select/prompt.py +4 -0
  48. lionagi/operations/select/select.py +2 -2
  49. lionagi/operations/select/utils.py +4 -4
  50. lionagi/{strategies → operations/strategies}/base.py +6 -2
  51. lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
  52. lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
  53. lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
  54. lionagi/{strategies → operations/strategies}/params.py +26 -6
  55. lionagi/{strategies → operations/strategies}/sequential.py +6 -2
  56. lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
  57. lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
  58. lionagi/{strategies → operations/strategies}/utils.py +6 -3
  59. lionagi/operations/types.py +13 -0
  60. lionagi/operations/utils.py +6 -3
  61. lionagi/operatives/action/function_calling.py +136 -0
  62. lionagi/operatives/action/manager.py +236 -0
  63. lionagi/operatives/action/request_response_model.py +90 -0
  64. lionagi/operatives/action/tool.py +141 -0
  65. lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
  66. lionagi/{core → operatives}/forms/base.py +9 -4
  67. lionagi/{core → operatives}/forms/form.py +8 -13
  68. lionagi/{core → operatives}/forms/report.py +5 -3
  69. lionagi/operatives/instruct/base.py +79 -0
  70. lionagi/operatives/instruct/instruct.py +105 -0
  71. lionagi/operatives/instruct/instruct_collection.py +52 -0
  72. lionagi/operatives/instruct/node.py +13 -0
  73. lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
  74. lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
  75. lionagi/{core/models/__init__.py → operatives/manager.py} +5 -1
  76. lionagi/operatives/models/field_model.py +194 -0
  77. lionagi/operatives/models/model_params.py +307 -0
  78. lionagi/{core → operatives}/models/note.py +20 -28
  79. lionagi/{core → operatives}/models/operable_model.py +153 -71
  80. lionagi/{core → operatives}/models/schema_model.py +4 -3
  81. lionagi/{protocols/operatives → operatives}/operative.py +10 -7
  82. lionagi/{protocols/operatives → operatives}/step.py +67 -26
  83. lionagi/operatives/types.py +69 -0
  84. lionagi/protocols/_concepts.py +94 -0
  85. lionagi/protocols/adapters/adapter.py +23 -7
  86. lionagi/protocols/adapters/json_adapter.py +72 -14
  87. lionagi/protocols/adapters/pandas_/csv_adapter.py +50 -0
  88. lionagi/protocols/adapters/pandas_/excel_adapter.py +52 -0
  89. lionagi/protocols/adapters/pandas_/pd_dataframe_adapter.py +31 -0
  90. lionagi/protocols/adapters/pandas_/pd_series_adapter.py +17 -0
  91. lionagi/protocols/adapters/types.py +18 -0
  92. lionagi/protocols/generic/element.py +460 -0
  93. lionagi/protocols/generic/event.py +177 -0
  94. lionagi/protocols/generic/log.py +237 -0
  95. lionagi/{core → protocols}/generic/pile.py +193 -131
  96. lionagi/protocols/generic/processor.py +316 -0
  97. lionagi/protocols/generic/progression.py +500 -0
  98. lionagi/protocols/graph/edge.py +166 -0
  99. lionagi/protocols/graph/graph.py +290 -0
  100. lionagi/protocols/graph/node.py +125 -0
  101. lionagi/protocols/mail/exchange.py +116 -0
  102. lionagi/protocols/mail/mail.py +25 -0
  103. lionagi/protocols/mail/mailbox.py +47 -0
  104. lionagi/protocols/mail/manager.py +168 -0
  105. lionagi/protocols/mail/package.py +55 -0
  106. lionagi/protocols/messages/action_request.py +165 -0
  107. lionagi/protocols/messages/action_response.py +132 -0
  108. lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
  109. lionagi/protocols/messages/base.py +73 -0
  110. lionagi/protocols/messages/instruction.py +582 -0
  111. lionagi/protocols/messages/manager.py +429 -0
  112. lionagi/protocols/messages/message.py +216 -0
  113. lionagi/protocols/messages/system.py +115 -0
  114. lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
  115. lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
  116. lionagi/protocols/types.py +96 -0
  117. lionagi/service/__init__.py +1 -16
  118. lionagi/service/endpoints/base.py +517 -0
  119. lionagi/service/endpoints/chat_completion.py +102 -0
  120. lionagi/service/endpoints/match_endpoint.py +60 -0
  121. lionagi/service/endpoints/rate_limited_processor.py +146 -0
  122. lionagi/service/endpoints/token_calculator.py +209 -0
  123. lionagi/service/imodel.py +263 -96
  124. lionagi/service/manager.py +45 -0
  125. lionagi/service/providers/anthropic_/messages.py +64 -0
  126. lionagi/service/providers/groq_/chat_completions.py +56 -0
  127. lionagi/service/providers/openai_/chat_completions.py +62 -0
  128. lionagi/service/providers/openrouter_/chat_completions.py +62 -0
  129. lionagi/service/providers/perplexity_/__init__.py +3 -0
  130. lionagi/service/providers/perplexity_/chat_completions.py +40 -0
  131. lionagi/service/types.py +18 -0
  132. lionagi/session/__init__.py +3 -0
  133. lionagi/session/branch.py +1287 -0
  134. lionagi/session/session.py +296 -0
  135. lionagi/settings.py +62 -118
  136. lionagi/utils.py +2386 -0
  137. lionagi/version.py +1 -1
  138. {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/METADATA +10 -9
  139. lionagi-0.6.1.dist-info/RECORD +169 -0
  140. lionagi/core/action/action_manager.py +0 -289
  141. lionagi/core/action/base.py +0 -109
  142. lionagi/core/action/function_calling.py +0 -153
  143. lionagi/core/action/tool.py +0 -202
  144. lionagi/core/action/types.py +0 -16
  145. lionagi/core/communication/action_request.py +0 -163
  146. lionagi/core/communication/action_response.py +0 -149
  147. lionagi/core/communication/base_mail.py +0 -49
  148. lionagi/core/communication/instruction.py +0 -376
  149. lionagi/core/communication/message.py +0 -286
  150. lionagi/core/communication/message_manager.py +0 -543
  151. lionagi/core/communication/system.py +0 -116
  152. lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
  153. lionagi/core/communication/types.py +0 -27
  154. lionagi/core/communication/utils.py +0 -256
  155. lionagi/core/forms/types.py +0 -13
  156. lionagi/core/generic/component.py +0 -422
  157. lionagi/core/generic/edge.py +0 -163
  158. lionagi/core/generic/element.py +0 -199
  159. lionagi/core/generic/graph.py +0 -377
  160. lionagi/core/generic/log.py +0 -151
  161. lionagi/core/generic/log_manager.py +0 -320
  162. lionagi/core/generic/node.py +0 -11
  163. lionagi/core/generic/progression.py +0 -395
  164. lionagi/core/generic/types.py +0 -23
  165. lionagi/core/generic/utils.py +0 -53
  166. lionagi/core/models/base.py +0 -28
  167. lionagi/core/models/field_model.py +0 -145
  168. lionagi/core/models/model_params.py +0 -194
  169. lionagi/core/models/types.py +0 -19
  170. lionagi/core/session/branch.py +0 -130
  171. lionagi/core/session/branch_mixins.py +0 -581
  172. lionagi/core/session/session.py +0 -163
  173. lionagi/core/session/types.py +0 -8
  174. lionagi/core/typing/__init__.py +0 -9
  175. lionagi/core/typing/_concepts.py +0 -173
  176. lionagi/core/typing/_id.py +0 -104
  177. lionagi/core/typing/_pydantic.py +0 -33
  178. lionagi/core/typing/_typing.py +0 -54
  179. lionagi/integrations/_services.py +0 -17
  180. lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
  181. lionagi/integrations/anthropic_/AnthropicService.py +0 -127
  182. lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
  183. lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
  184. lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
  185. lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
  186. lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
  187. lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
  188. lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
  189. lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
  190. lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
  191. lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
  192. lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
  193. lionagi/integrations/anthropic_/version.py +0 -5
  194. lionagi/integrations/groq_/GroqModel.py +0 -325
  195. lionagi/integrations/groq_/GroqService.py +0 -156
  196. lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
  197. lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
  198. lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
  199. lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
  200. lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
  201. lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
  202. lionagi/integrations/groq_/groq_price_data.yaml +0 -58
  203. lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
  204. lionagi/integrations/groq_/version.py +0 -5
  205. lionagi/integrations/litellm_/imodel.py +0 -76
  206. lionagi/integrations/ollama_/OllamaModel.py +0 -244
  207. lionagi/integrations/ollama_/OllamaService.py +0 -142
  208. lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
  209. lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
  210. lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
  211. lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
  212. lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
  213. lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
  214. lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
  215. lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
  216. lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
  217. lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
  218. lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
  219. lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
  220. lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
  221. lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
  222. lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
  223. lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
  224. lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
  225. lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
  226. lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
  227. lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
  228. lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
  229. lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
  230. lionagi/integrations/openai_/OpenAIModel.py +0 -419
  231. lionagi/integrations/openai_/OpenAIService.py +0 -435
  232. lionagi/integrations/openai_/__init__.py +0 -0
  233. lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
  234. lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
  235. lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
  236. lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
  237. lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
  238. lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
  239. lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
  240. lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
  241. lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
  242. lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
  243. lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
  244. lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
  245. lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
  246. lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
  247. lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
  248. lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
  249. lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
  250. lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
  251. lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
  252. lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
  253. lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
  254. lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
  255. lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
  256. lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
  257. lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
  258. lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
  259. lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
  260. lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
  261. lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
  262. lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
  263. lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
  264. lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
  265. lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
  266. lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
  267. lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
  268. lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
  269. lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
  270. lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
  271. lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
  272. lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
  273. lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
  274. lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
  275. lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
  276. lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
  277. lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
  278. lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
  279. lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
  280. lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
  281. lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
  282. lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
  283. lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
  284. lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
  285. lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
  286. lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
  287. lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
  288. lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
  289. lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
  290. lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
  291. lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
  292. lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
  293. lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
  294. lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
  295. lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
  296. lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
  297. lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
  298. lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
  299. lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
  300. lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
  301. lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
  302. lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
  303. lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
  304. lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
  305. lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
  306. lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
  307. lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
  308. lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
  309. lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
  310. lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
  311. lionagi/integrations/openai_/openai_price_data.yaml +0 -26
  312. lionagi/integrations/openai_/version.py +0 -1
  313. lionagi/integrations/pandas_/__init__.py +0 -24
  314. lionagi/integrations/pandas_/extend_df.py +0 -61
  315. lionagi/integrations/pandas_/read.py +0 -103
  316. lionagi/integrations/pandas_/remove_rows.py +0 -61
  317. lionagi/integrations/pandas_/replace_keywords.py +0 -65
  318. lionagi/integrations/pandas_/save.py +0 -131
  319. lionagi/integrations/pandas_/search_keywords.py +0 -69
  320. lionagi/integrations/pandas_/to_df.py +0 -196
  321. lionagi/integrations/pandas_/update_cells.py +0 -54
  322. lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
  323. lionagi/integrations/perplexity_/PerplexityService.py +0 -118
  324. lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
  325. lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
  326. lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
  327. lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
  328. lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
  329. lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
  330. lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
  331. lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
  332. lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
  333. lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
  334. lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
  335. lionagi/integrations/perplexity_/version.py +0 -1
  336. lionagi/integrations/pydantic_/__init__.py +0 -8
  337. lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
  338. lionagi/integrations/pydantic_/new_model.py +0 -208
  339. lionagi/libs/constants.py +0 -98
  340. lionagi/libs/file/path.py +0 -301
  341. lionagi/libs/file/types.py +0 -22
  342. lionagi/libs/func/__init__.py +0 -0
  343. lionagi/libs/func/async_calls/__init__.py +0 -24
  344. lionagi/libs/func/async_calls/alcall.py +0 -210
  345. lionagi/libs/func/async_calls/bcall.py +0 -130
  346. lionagi/libs/func/async_calls/mcall.py +0 -134
  347. lionagi/libs/func/async_calls/pcall.py +0 -149
  348. lionagi/libs/func/async_calls/rcall.py +0 -217
  349. lionagi/libs/func/async_calls/tcall.py +0 -114
  350. lionagi/libs/func/async_calls/ucall.py +0 -85
  351. lionagi/libs/func/decorators.py +0 -277
  352. lionagi/libs/func/lcall.py +0 -57
  353. lionagi/libs/func/params.py +0 -64
  354. lionagi/libs/func/throttle.py +0 -119
  355. lionagi/libs/func/types.py +0 -39
  356. lionagi/libs/func/utils.py +0 -96
  357. lionagi/libs/package/types.py +0 -26
  358. lionagi/libs/parse/__init__.py +0 -1
  359. lionagi/libs/parse/flatten/__init__.py +0 -9
  360. lionagi/libs/parse/flatten/params.py +0 -52
  361. lionagi/libs/parse/json/__init__.py +0 -27
  362. lionagi/libs/parse/json/extract.py +0 -102
  363. lionagi/libs/parse/json/parse.py +0 -179
  364. lionagi/libs/parse/json/to_json.py +0 -71
  365. lionagi/libs/parse/nested/__init__.py +0 -33
  366. lionagi/libs/parse/nested/to_flat_list.py +0 -64
  367. lionagi/libs/parse/params.py +0 -0
  368. lionagi/libs/parse/string_parse/__init__.py +0 -11
  369. lionagi/libs/parse/type_convert/__init__.py +0 -19
  370. lionagi/libs/parse/type_convert/params.py +0 -145
  371. lionagi/libs/parse/type_convert/to_dict.py +0 -333
  372. lionagi/libs/parse/type_convert/to_list.py +0 -186
  373. lionagi/libs/parse/type_convert/to_num.py +0 -358
  374. lionagi/libs/parse/type_convert/to_str.py +0 -195
  375. lionagi/libs/parse/types.py +0 -9
  376. lionagi/libs/parse/validate/__init__.py +0 -14
  377. lionagi/libs/parse/validate/params.py +0 -62
  378. lionagi/libs/parse/xml/__init__.py +0 -10
  379. lionagi/libs/parse/xml/convert.py +0 -56
  380. lionagi/libs/parse/xml/parser.py +0 -93
  381. lionagi/libs/string_similarity/__init__.py +0 -32
  382. lionagi/libs/string_similarity/matcher.py +0 -102
  383. lionagi/libs/string_similarity/utils.py +0 -15
  384. lionagi/libs/utils.py +0 -266
  385. lionagi/protocols/adapters/pandas_adapter.py +0 -96
  386. lionagi/protocols/configs/__init__.py +0 -0
  387. lionagi/protocols/configs/branch_config.py +0 -86
  388. lionagi/protocols/configs/id_config.py +0 -15
  389. lionagi/protocols/configs/imodel_config.py +0 -73
  390. lionagi/protocols/configs/log_config.py +0 -93
  391. lionagi/protocols/configs/retry_config.py +0 -29
  392. lionagi/protocols/configs/types.py +0 -15
  393. lionagi/protocols/operatives/instruct.py +0 -194
  394. lionagi/protocols/operatives/types.py +0 -19
  395. lionagi/protocols/registries/_component_registry.py +0 -23
  396. lionagi/protocols/registries/_pile_registry.py +0 -30
  397. lionagi/service/complete_request_info.py +0 -11
  398. lionagi/service/rate_limiter.py +0 -108
  399. lionagi/service/service.py +0 -41
  400. lionagi/service/service_match_util.py +0 -131
  401. lionagi/service/service_util.py +0 -72
  402. lionagi/service/token_calculator.py +0 -51
  403. lionagi/strategies/__init__.py +0 -0
  404. lionagi/strategies/types.py +0 -21
  405. lionagi-0.5.5.dist-info/RECORD +0 -374
  406. /lionagi/{core → libs/nested}/__init__.py +0 -0
  407. /lionagi/{core/action → libs/schema}/__init__.py +0 -0
  408. /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
  409. /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
  410. /lionagi/{core/generic → operatives}/__init__.py +0 -0
  411. /lionagi/{core/session → operatives/action}/__init__.py +0 -0
  412. /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
  413. /lionagi/{core → operatives}/forms/utils.py +0 -0
  414. /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
  415. /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
  416. /lionagi/{integrations → protocols/adapters/pandas_}/__init__.py +0 -0
  417. /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
  418. /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
  419. /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
  420. /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
  421. /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
  422. /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
  423. /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
  424. /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
  425. /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
  426. /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
  427. /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
  428. /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
  429. /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
  430. /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
  431. /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
  432. {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/WHEEL +0 -0
  433. {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,395 +0,0 @@
1
- # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
- #
3
- # SPDX-License-Identifier: Apache-2.0
4
-
5
- import contextlib
6
- from collections.abc import Iterator
7
- from typing import Any, Self
8
-
9
- from pydantic import field_serializer, field_validator
10
- from typing_extensions import override
11
-
12
- from lionagi.core.typing import ID, Field, IDType, ItemNotFoundError, Ordering
13
- from lionagi.core.typing._concepts import Observable
14
- from lionagi.libs.parse import to_list
15
-
16
- from .element import Element
17
- from .utils import to_list_type, validate_order
18
-
19
- __all__ = ("Progression", "prog")
20
-
21
-
22
- class Progression(Element, Ordering):
23
- """A flexible, ordered sequence container for Lion IDs.
24
-
25
- The Progression class provides an ordered sequence of Lion IDs with support
26
- for standard sequence operations, ID validation, and element containment
27
- checks. It maintains order while ensuring ID validity and uniqueness.
28
-
29
- Key Features:
30
- - Ordered sequence operations
31
- - ID validation and uniqueness
32
- - Element containment checks
33
- - Memory efficient storage
34
- - Slice operations
35
-
36
- Attributes:
37
- name (str | None): Optional name for the progression
38
- order (list[ID.ID]): Ordered list of Lion IDs
39
- """
40
-
41
- name: str | None = Field(
42
- None,
43
- title="Name",
44
- description="The name of the progression.",
45
- )
46
-
47
- order: list[IDType] = Field(
48
- default_factory=list,
49
- title="Order",
50
- description="The order of the progression.",
51
- )
52
-
53
- @field_serializer("order")
54
- def _serialize_order(self, value: list[IDType]) -> list[str]:
55
- return [str(i) for i in self.order]
56
-
57
- @field_validator("order", mode="before")
58
- def _validate_order(cls, value: ID.RefSeq) -> list[IDType]:
59
- if not value:
60
- return []
61
- try:
62
- return validate_order(value)
63
- except Exception as e:
64
- raise ValueError(f"Invalid order: {e}")
65
-
66
- def __contains__(self, item: ID.RefSeq | ID.Ref) -> bool:
67
- """Check if item(s) are in the progression."""
68
- if item is None or not self.order:
69
- return False
70
-
71
- item = to_list_type(item) if not isinstance(item, list) else item
72
-
73
- check = False
74
- for i in item:
75
- check = False
76
- if isinstance(i, IDType):
77
- check = i in self.order
78
- elif isinstance(i, Observable):
79
- check = i.ln_id in self.order
80
- if not check:
81
- return False
82
- return check
83
-
84
- def __list__(self) -> list[IDType]:
85
- """Return a copy of the order."""
86
- return self.order[:]
87
-
88
- def __len__(self) -> int:
89
- """Get the length of the progression."""
90
- return len(self.order)
91
-
92
- def __getitem__(self, key: int | slice) -> ID.IDSeq:
93
- """Get an item or slice of items from the progression.
94
-
95
- Args:
96
- key: Integer index or slice object.
97
-
98
- Returns:
99
- Single ID for integer key, new Progression for slice.
100
-
101
- Raises:
102
- TypeError: If key is not int or slice.
103
- ItemNotFoundError: If index out of range.
104
- """
105
- if not isinstance(key, (int, slice)):
106
- key_cls = key.__class__.__name__
107
- raise TypeError(
108
- f"indices must be integers or slices, not {key_cls}"
109
- )
110
-
111
- try:
112
- a = self.order[key]
113
- if not a:
114
- raise ItemNotFoundError(f"index {key} item not found")
115
- if isinstance(key, slice):
116
- return self.__class__(order=a)
117
- else:
118
- return a
119
- except IndexError:
120
- raise ItemNotFoundError(f"index {key} item not found")
121
-
122
- def __setitem__(self, key: int | slice, value: ID.RefSeq) -> None:
123
- """Set an item or slice of items in the progression.
124
-
125
- Args:
126
- key: Integer index or slice object.
127
- value: Item(s) to set.
128
- """
129
- a = validate_order(value)
130
- self.order[key] = a if isinstance(key, int) else a
131
- self.order = to_list(self.order, flatten=True)
132
-
133
- def __delitem__(self, key: int | slice) -> None:
134
- """Delete an item or slice of items from the progression."""
135
- del self.order[key]
136
-
137
- def __iter__(self) -> Iterator[IDType]:
138
- """Iterate over the items in the progression."""
139
- return iter(self.order)
140
-
141
- def __next__(self) -> IDType:
142
- """Return the next item in the progression."""
143
- try:
144
- return next(iter(self.order))
145
- except StopIteration:
146
- raise StopIteration("No more items in the progression")
147
-
148
- def size(self) -> int:
149
- """Get the size of the progression."""
150
- return len(self)
151
-
152
- def clear(self) -> None:
153
- """Clear the progression."""
154
- self.order.clear()
155
-
156
- def append(self, item: ID.RefSeq, /) -> None:
157
- """Append an item to the end of the progression.
158
-
159
- Args:
160
- item: Item or sequence to append.
161
- """
162
- item_ = validate_order(item)
163
- self.order.extend(item_)
164
-
165
- def pop(self, index: int = None, /) -> IDType:
166
- """Remove and return an item from the progression.
167
-
168
- Args:
169
- index: Optional index to pop from. Default is last item.
170
-
171
- Returns:
172
- The removed item's ID.
173
-
174
- Raises:
175
- ItemNotFoundError: If progression is empty or index invalid.
176
- """
177
- try:
178
- if index is None:
179
- return self.order.pop()
180
- return self.order.pop(index)
181
- except IndexError as e:
182
- raise ItemNotFoundError("pop index out of range") from e
183
-
184
- def include(self, item: ID.RefSeq, /) -> None:
185
- """Include item(s) in the progression if not already present.
186
-
187
- Args:
188
- item: Item or sequence to include.
189
- """
190
- item_ = validate_order(item)
191
- for i in item_:
192
- if i not in self.order:
193
- self.order.append(i)
194
-
195
- def exclude(self, item: int | ID.RefSeq, /) -> None:
196
- """Exclude an item or items from the progression.
197
-
198
- Args:
199
- item: Item or sequence to exclude.
200
- """
201
- for i in validate_order(item):
202
- while i in self:
203
- self.remove(i)
204
-
205
- def is_empty(self) -> bool:
206
- """Check if the progression is empty."""
207
- return not self.order
208
-
209
- def reverse(self) -> "Progression":
210
- """Return a reversed progression."""
211
- return self.__class__(order=list(reversed(self.order)), name=self.name)
212
-
213
- def __reverse__(self) -> "Progression":
214
- """Return a reversed progression."""
215
- return self.reverse()
216
-
217
- @override
218
- def __eq__(self, other: "Progression", /) -> bool:
219
- """Compare two Progression instances for equality."""
220
- if not isinstance(other, Progression):
221
- return NotImplemented
222
- return self.order == other.order and self.name == other.name
223
-
224
- def index(self, item: Any, /, start: int = 0, end: int = None) -> int:
225
- """Return the index of an item in the progression.
226
-
227
- Args:
228
- item: Item to find.
229
- start: Start index for search.
230
- end: Optional end index for search.
231
-
232
- Returns:
233
- Index of the item.
234
-
235
- Raises:
236
- ValueError: If item not found.
237
- """
238
- return (
239
- self.order.index(ID.get_id(item), start, end)
240
- if end
241
- else self.order.index(ID.get_id(item), start)
242
- )
243
-
244
- def remove(self, item: ID.RefSeq, /) -> None:
245
- """Remove the next occurrence of an item from the progression.
246
-
247
- Args:
248
- item: Item or sequence to remove.
249
-
250
- Raises:
251
- ItemNotFoundError: If item not found.
252
- """
253
- if item in self:
254
- item = validate_order(item)
255
- l_ = list(self.order)
256
-
257
- with contextlib.suppress(ValueError):
258
- for i in item:
259
- l_.remove(i)
260
- self.order = l_
261
- return
262
-
263
- raise ItemNotFoundError(f"{item}")
264
-
265
- def popleft(self) -> IDType:
266
- """Remove and return the leftmost item from the progression.
267
-
268
- Returns:
269
- The first item's ID.
270
-
271
- Raises:
272
- ItemNotFoundError: If progression is empty.
273
- """
274
- try:
275
- return self.order.pop(0)
276
- except IndexError as e:
277
- raise ItemNotFoundError from e
278
-
279
- def extend(self, item: "Progression", /) -> None:
280
- """Extend the progression from the right with another progression.
281
-
282
- Args:
283
- item: Progression to extend with.
284
-
285
- Raises:
286
- TypeError: If item is not a Progression.
287
- """
288
- if not isinstance(item, Progression):
289
- raise TypeError(expected_type=Progression, actual_type=type(item))
290
- self.order.extend(item.order)
291
-
292
- def count(self, item: ID.Ref, /) -> int:
293
- """Return the number of occurrences of an item.
294
-
295
- Args:
296
- item: Item to count.
297
-
298
- Returns:
299
- Number of occurrences.
300
- """
301
- if not self.order or item not in self:
302
- return 0
303
- return self.order.count(ID.get_id(item))
304
-
305
- @override
306
- def __bool__(self) -> bool:
307
- """Check if the container is not empty."""
308
- return not self.is_empty()
309
-
310
- def __add__(self, other: ID.RefSeq) -> "Progression":
311
- """Returns a new progression with items added to the end.
312
-
313
- Args:
314
- other: Items to add.
315
-
316
- Returns:
317
- New Progression with added items.
318
- """
319
- other = validate_order(other)
320
- new_order = list(
321
- self.order
322
- ) # Create a new list to avoid modifying original
323
- new_order.extend(other)
324
- return self.__class__(order=new_order)
325
-
326
- def __radd__(self, other: ID.RefSeq) -> "Progression":
327
- """Reverse add operation."""
328
- return self + other
329
-
330
- def __iadd__(self, other: ID.RefSeq) -> Self:
331
- """Add an item to the end of the progression in-place."""
332
- self.append(other)
333
- return self
334
-
335
- def __isub__(self, other: ID.RefSeq) -> Self:
336
- """Remove an item from the progression in-place."""
337
- self.remove(other)
338
- return self
339
-
340
- def __sub__(self, other: ID.RefSeq) -> "Progression":
341
- """Remove an item or items from the progression.
342
-
343
- Args:
344
- other: Items to remove.
345
-
346
- Returns:
347
- New Progression with items removed.
348
- """
349
- other = validate_order(other)
350
- new_order = list(self)
351
- for i in other:
352
- new_order.remove(i)
353
- return self.__class__(order=new_order)
354
-
355
- @override
356
- def __repr__(self) -> str:
357
- return f"Progression({self.order})"
358
-
359
- @override
360
- def __str__(self) -> str:
361
- """Return a string representation of the progression."""
362
- if len(a := str(self.order)) > 50:
363
- a = a[:50] + "..."
364
- return f"Progression(name={self.name}, size={len(self)}, items={a})"
365
-
366
- def insert(self, index: int, item: ID.RefSeq, /) -> None:
367
- """Insert an item at the specified index.
368
-
369
- Args:
370
- index: Position to insert at.
371
- item: Item or sequence to insert.
372
- """
373
- item_ = validate_order(item)
374
- for i in reversed(item_):
375
- self.order.insert(index, ID.get_id(i))
376
-
377
- def __hash__(self) -> int:
378
- return hash(self.ln_id)
379
-
380
-
381
- def prog(
382
- order: ID.RefSeq = None,
383
- name: str = None,
384
- /,
385
- ) -> Progression:
386
- """Create a new Progression instance.
387
-
388
- Args:
389
- order: Initial order of items.
390
- name: Optional name for the progression.
391
-
392
- Returns:
393
- New Progression instance.
394
- """
395
- return Progression(order=order, name=name)
@@ -1,23 +0,0 @@
1
- # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
- #
3
- # SPDX-License-Identifier: Apache-2.0
4
-
5
- from lionagi.core.generic.component import Component
6
- from lionagi.core.generic.element import Element
7
- from lionagi.core.generic.log import Log
8
- from lionagi.core.generic.log_manager import LogManager
9
- from lionagi.core.generic.pile import Pile
10
- from lionagi.core.generic.progression import Progression
11
- from lionagi.core.generic.utils import to_list_type
12
-
13
- __all__ = [
14
- "Component",
15
- "Flow",
16
- "Log",
17
- "Pile",
18
- "Progression",
19
- "Node",
20
- "to_list_type",
21
- "Element",
22
- "LogManager",
23
- ]
@@ -1,53 +0,0 @@
1
- # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
- #
3
- # SPDX-License-Identifier: Apache-2.0
4
-
5
- from collections import deque
6
- from collections.abc import Generator
7
- from typing import Any, TypeVar
8
-
9
- from lionagi.core.typing import ID, IDError
10
- from lionagi.core.typing._concepts import IDType, Observable
11
-
12
- from .element import Element
13
-
14
- T = TypeVar("T")
15
-
16
-
17
- def to_list_type(value: Any, /) -> list[Any]:
18
- """Convert input to a list format"""
19
- if value is None:
20
- return []
21
- if isinstance(value, IDType):
22
- return [value]
23
- if isinstance(value, str):
24
- return ID.get_id(value) if ID.is_id(value) else []
25
- if isinstance(value, Element):
26
- return [value]
27
- if hasattr(value, "values") and callable(value.values):
28
- return list(value.values())
29
- if isinstance(value, list | tuple | set | deque | Generator):
30
- return list(value)
31
- return [value]
32
-
33
-
34
- def validate_order(value: Any, /) -> list[str]:
35
- """Validate and standardize order representation"""
36
-
37
- try:
38
- result = []
39
- for item in to_list_type(value):
40
- if isinstance(item, str) and ID.is_id(item):
41
- result.append(ID.get_id(item))
42
- elif isinstance(item, Observable):
43
- result.append(item.ln_id)
44
- else:
45
- id_ = ID.get_id(item)
46
- if id_:
47
- result.append(id_)
48
- return result
49
- except Exception as e:
50
- raise IDError("Must only contain valid Lion IDs.") from e
51
-
52
-
53
- # File: autoos/container/util.py
@@ -1,28 +0,0 @@
1
- # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
- #
3
- # SPDX-License-Identifier: Apache-2.0
4
-
5
- from ..typing._pydantic import BaseModel
6
- from ..typing._typing import UNDEFINED, Any, Self
7
-
8
- __all__ = ("BaseAutoModel",)
9
-
10
-
11
- class BaseAutoModel(BaseModel):
12
- """a hashable pydantic model interface with to_dict and from_dict method"""
13
-
14
- def to_dict(self, **kwargs) -> dict[str, Any]:
15
- """kwargs for pydantic model_dump()"""
16
- return {
17
- k: v
18
- for k, v in self.model_dump(**kwargs).items()
19
- if v is not UNDEFINED
20
- }
21
-
22
- @classmethod
23
- def from_dict(cls, data: dict, **kwargs) -> Self:
24
- """kwargs for model_validate"""
25
- return cls.model_validate(data, **kwargs)
26
-
27
- def __hash__(self) -> int:
28
- return hash(str(self.to_dict()))
@@ -1,145 +0,0 @@
1
- # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
- #
3
- # SPDX-License-Identifier: Apache-2.0
4
-
5
- from lionagi.libs.utils import is_same_dtype
6
-
7
- from ..typing._pydantic import ConfigDict, Field, FieldInfo, field_validator
8
- from ..typing._typing import UNDEFINED, Any, Callable, UndefinedType
9
- from .schema_model import SchemaModel
10
-
11
- __all__ = ("FieldModel",)
12
-
13
-
14
- class FieldModel(SchemaModel):
15
- """Model for defining and managing field definitions.
16
-
17
- Provides a structured way to define fields with:
18
- - Type annotations and validation
19
- - Default values and factories
20
- - Documentation and metadata
21
- - Serialization options
22
-
23
- Example:
24
- ```python
25
- field = FieldModel(
26
- name="age",
27
- annotation=int,
28
- default=0,
29
- description="User age in years",
30
- validator=lambda v: v if v >= 0 else 0
31
- )
32
- ```
33
-
34
- Attributes:
35
- default: Default field value
36
- default_factory: Function to generate default value
37
- title: Field title for documentation
38
- description: Field description
39
- examples: Example values
40
- validators: Validation functions
41
- exclude: Exclude from serialization
42
- deprecated: Mark as deprecated
43
- frozen: Mark as immutable
44
- alias: Alternative field name
45
- alias_priority: Priority for alias resolution
46
- name: Field name (required)
47
- annotation: Type annotation
48
- validator: Validation function
49
- validator_kwargs: Validator parameters
50
-
51
- Notes:
52
- - All attributes except 'name' can be UNDEFINED
53
- - validator_kwargs are passed to field_validator decorator
54
- - Cannot have both default and default_factory
55
- """
56
-
57
- model_config = ConfigDict(
58
- extra="allow",
59
- validate_default=False,
60
- populate_by_name=True,
61
- arbitrary_types_allowed=True,
62
- use_enum_values=True,
63
- )
64
-
65
- # Field configuration attributes
66
- default: Any = UNDEFINED # Default value
67
- default_factory: Callable | UndefinedType = (
68
- UNDEFINED # Factory function for default value
69
- )
70
- title: str | UndefinedType = UNDEFINED # Field title
71
- description: str | UndefinedType = UNDEFINED # Field description
72
- examples: list | UndefinedType = UNDEFINED # Example values
73
- validators: list | UndefinedType = UNDEFINED # Validation functions
74
- exclude: bool | UndefinedType = UNDEFINED # Exclude from serialization
75
- deprecated: bool | UndefinedType = UNDEFINED # Mark as deprecated
76
- frozen: bool | UndefinedType = UNDEFINED # Mark as immutable
77
- alias: str | UndefinedType = UNDEFINED # Alternative field name
78
- alias_priority: int | UndefinedType = (
79
- UNDEFINED # Priority for alias resolution
80
- )
81
-
82
- # Core field attributes
83
- name: str | UndefinedType = Field(
84
- ..., exclude=True
85
- ) # Field name (required)
86
- annotation: type | Any = Field(UNDEFINED, exclude=True) # Type annotation
87
- validator: Callable | Any = Field(
88
- UNDEFINED, exclude=True
89
- ) # Validation function
90
- validator_kwargs: dict | Any = Field(
91
- default_factory=dict, exclude=True
92
- ) # Validator parameters
93
-
94
- @field_validator("validators", mode="before")
95
- def _validate_validators(cls, v) -> list[Callable]:
96
- if v is None or v is UNDEFINED:
97
- return []
98
- if isinstance(v, Callable):
99
- return [v]
100
- if isinstance(v, list) and is_same_dtype(v, Callable):
101
- return v
102
- raise ValueError(
103
- "Validators must be a list of functions or a function"
104
- )
105
-
106
- @property
107
- def field_info(self) -> FieldInfo:
108
- """Generate Pydantic FieldInfo object from field configuration.
109
-
110
- Returns:
111
- FieldInfo object with all configured attributes
112
-
113
- Notes:
114
- - Uses clean dict to exclude UNDEFINED values
115
- - Sets annotation to Any if not specified
116
- - Preserves all metadata in field_info
117
- """
118
- annotation = (
119
- self.annotation if self.annotation is not UNDEFINED else Any
120
- )
121
- field_obj: FieldInfo = Field(**self.to_dict()) # type: ignore
122
- field_obj.annotation = annotation
123
- return field_obj
124
-
125
- @property
126
- def field_validator(self) -> dict[str, Callable] | None:
127
- """Generate field validator configuration.
128
-
129
- Returns:
130
- Dictionary mapping validator name to function,
131
- or None if no validator defined
132
-
133
- Notes:
134
- - Validator name is f"{field_name}_validator"
135
- - Uses validator_kwargs if provided
136
- - Returns None if validator is UNDEFINED
137
- """
138
- if self.validator is UNDEFINED:
139
- return None
140
- kwargs = self.validator_kwargs or {}
141
- return {
142
- f"{self.name}_validator": field_validator(self.name, **kwargs)(
143
- self.validator
144
- )
145
- }