lionagi 0.5.5__py3-none-any.whl → 0.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +16 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +16 -13
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +1 -1
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +10 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/{core/models/__init__.py → operations/types.py} +3 -1
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +239 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{integrations/anthropic_/version.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_adapter.py +224 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +172 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +109 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +10 -12
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +145 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +263 -96
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/METADATA +7 -6
- lionagi-0.6.0.dist-info/RECORD +160 -0
- lionagi/core/action/action_manager.py +0 -289
- lionagi/core/action/base.py +0 -109
- lionagi/core/action/function_calling.py +0 -153
- lionagi/core/action/tool.py +0 -202
- lionagi/core/action/types.py +0 -16
- lionagi/core/communication/action_request.py +0 -163
- lionagi/core/communication/action_response.py +0 -149
- lionagi/core/communication/base_mail.py +0 -49
- lionagi/core/communication/instruction.py +0 -376
- lionagi/core/communication/message.py +0 -286
- lionagi/core/communication/message_manager.py +0 -543
- lionagi/core/communication/system.py +0 -116
- lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
- lionagi/core/communication/types.py +0 -27
- lionagi/core/communication/utils.py +0 -256
- lionagi/core/forms/types.py +0 -13
- lionagi/core/generic/component.py +0 -422
- lionagi/core/generic/edge.py +0 -163
- lionagi/core/generic/element.py +0 -199
- lionagi/core/generic/graph.py +0 -377
- lionagi/core/generic/log.py +0 -151
- lionagi/core/generic/log_manager.py +0 -320
- lionagi/core/generic/node.py +0 -11
- lionagi/core/generic/progression.py +0 -395
- lionagi/core/generic/types.py +0 -23
- lionagi/core/generic/utils.py +0 -53
- lionagi/core/models/base.py +0 -28
- lionagi/core/models/field_model.py +0 -145
- lionagi/core/models/model_params.py +0 -194
- lionagi/core/models/types.py +0 -19
- lionagi/core/session/branch.py +0 -130
- lionagi/core/session/branch_mixins.py +0 -581
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/__init__.py +0 -0
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
- lionagi/integrations/anthropic_/AnthropicService.py +0 -127
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -156
- lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
- lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
- lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
- lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
- lionagi/integrations/groq_/groq_price_data.yaml +0 -58
- lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
- lionagi/integrations/groq_/version.py +0 -5
- lionagi/integrations/litellm_/imodel.py +0 -76
- lionagi/integrations/ollama_/OllamaModel.py +0 -244
- lionagi/integrations/ollama_/OllamaService.py +0 -142
- lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
- lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
- lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
- lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
- lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
- lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
- lionagi/integrations/openai_/OpenAIModel.py +0 -419
- lionagi/integrations/openai_/OpenAIService.py +0 -435
- lionagi/integrations/openai_/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
- lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
- lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
- lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
- lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
- lionagi/integrations/openai_/openai_price_data.yaml +0 -26
- lionagi/integrations/openai_/version.py +0 -1
- lionagi/integrations/pandas_/__init__.py +0 -24
- lionagi/integrations/pandas_/extend_df.py +0 -61
- lionagi/integrations/pandas_/read.py +0 -103
- lionagi/integrations/pandas_/remove_rows.py +0 -61
- lionagi/integrations/pandas_/replace_keywords.py +0 -65
- lionagi/integrations/pandas_/save.py +0 -131
- lionagi/integrations/pandas_/search_keywords.py +0 -69
- lionagi/integrations/pandas_/to_df.py +0 -196
- lionagi/integrations/pandas_/update_cells.py +0 -54
- lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
- lionagi/integrations/perplexity_/PerplexityService.py +0 -118
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/__init__.py +0 -0
- lionagi/protocols/adapters/adapter.py +0 -79
- lionagi/protocols/adapters/json_adapter.py +0 -43
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.5.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.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)
|
lionagi/core/generic/types.py
DELETED
@@ -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
|
-
]
|
lionagi/core/generic/utils.py
DELETED
@@ -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
|
lionagi/core/models/base.py
DELETED
@@ -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
|
-
}
|