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
@@ -0,0 +1,500 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from __future__ import annotations
|
6
|
+
|
7
|
+
from typing import Any, Generic, Self, TypeVar
|
8
|
+
|
9
|
+
from pydantic import Field, field_serializer, field_validator
|
10
|
+
|
11
|
+
from lionagi._errors import ItemNotFoundError
|
12
|
+
|
13
|
+
from .._concepts import Ordering
|
14
|
+
from .element import ID, Element, IDError, IDType, validate_order
|
15
|
+
|
16
|
+
E = TypeVar("E", bound=Element)
|
17
|
+
|
18
|
+
|
19
|
+
__all__ = (
|
20
|
+
"Progression",
|
21
|
+
"prog",
|
22
|
+
)
|
23
|
+
|
24
|
+
|
25
|
+
class Progression(Element, Ordering[E], Generic[E]):
|
26
|
+
"""Tracks an ordered sequence of item IDs, with optional naming.
|
27
|
+
|
28
|
+
This class extends `Element` and implements `Ordering`, providing
|
29
|
+
list-like operations for managing item IDs (based on `IDType`). It
|
30
|
+
supports insertion, removal, slicing, and more. Items are stored in
|
31
|
+
`order`, which is a simple list of IDs, and an optional `name`
|
32
|
+
attribute can be assigned for identification.
|
33
|
+
|
34
|
+
Attributes:
|
35
|
+
order (list[ID[E].ID]):
|
36
|
+
The sequence of item IDs representing the progression.
|
37
|
+
name (str | None):
|
38
|
+
An optional human-readable identifier for the progression.
|
39
|
+
"""
|
40
|
+
|
41
|
+
order: list[ID[E].ID] = Field(
|
42
|
+
default_factory=list,
|
43
|
+
title="Order",
|
44
|
+
description="A sequence of IDs representing the progression.",
|
45
|
+
)
|
46
|
+
name: str | None = Field(
|
47
|
+
None,
|
48
|
+
title="Name",
|
49
|
+
description="A human-readable identifier for the progression.",
|
50
|
+
)
|
51
|
+
|
52
|
+
@field_validator("order", mode="before")
|
53
|
+
def _validate_ordering(cls, value: Any) -> list[IDType]:
|
54
|
+
"""Ensures `order` is a valid list of IDTypes.
|
55
|
+
|
56
|
+
Args:
|
57
|
+
value (Any): Input sequence (could be elements, IDs, etc.).
|
58
|
+
|
59
|
+
Returns:
|
60
|
+
list[IDType]: The list of validated IDType objects.
|
61
|
+
"""
|
62
|
+
return validate_order(value)
|
63
|
+
|
64
|
+
@field_serializer("order")
|
65
|
+
def _serialize_order(self, value: list[IDType]) -> list[str]:
|
66
|
+
"""Serializes IDs in `order` to string form.
|
67
|
+
|
68
|
+
Args:
|
69
|
+
value (list[IDType]): The order list of ID objects.
|
70
|
+
|
71
|
+
Returns:
|
72
|
+
list[str]: A list of stringified IDs.
|
73
|
+
"""
|
74
|
+
return [str(x) for x in self.order]
|
75
|
+
|
76
|
+
def __len__(self) -> int:
|
77
|
+
"""Returns the number of items in this progression."""
|
78
|
+
return len(self.order)
|
79
|
+
|
80
|
+
def __bool__(self) -> bool:
|
81
|
+
"""Indicates if this progression has any items."""
|
82
|
+
return bool(self.order)
|
83
|
+
|
84
|
+
def __contains__(self, item: Any) -> bool:
|
85
|
+
"""Checks if one or more IDs exist in the progression.
|
86
|
+
|
87
|
+
Args:
|
88
|
+
item (Any): Could be an `Element`, `IDType`, `UUID`, string,
|
89
|
+
or a sequence of these.
|
90
|
+
|
91
|
+
Returns:
|
92
|
+
bool: True if all IDs in `item` exist in this progression;
|
93
|
+
otherwise False.
|
94
|
+
"""
|
95
|
+
try:
|
96
|
+
refs = validate_order(item)
|
97
|
+
return all(ref in self.order for ref in refs)
|
98
|
+
except Exception:
|
99
|
+
return False
|
100
|
+
|
101
|
+
def __getitem__(self, key: int | slice) -> IDType | list[IDType]:
|
102
|
+
"""Gets one or more items by index or slice.
|
103
|
+
|
104
|
+
Args:
|
105
|
+
key (int | slice): The index or slice.
|
106
|
+
|
107
|
+
Returns:
|
108
|
+
IDType | list[IDType]:
|
109
|
+
A single ID if `key` is an int; a new `Progression`
|
110
|
+
if `key` is a slice.
|
111
|
+
|
112
|
+
Raises:
|
113
|
+
ItemNotFoundError: If the index or slice is invalid.
|
114
|
+
TypeError: If `key` is neither an int nor a slice.
|
115
|
+
"""
|
116
|
+
if not isinstance(key, (int, slice)):
|
117
|
+
key_cls = key.__class__.__name__
|
118
|
+
raise TypeError(
|
119
|
+
f"indices must be integers or slices, not {key_cls}"
|
120
|
+
)
|
121
|
+
try:
|
122
|
+
a = self.order[key]
|
123
|
+
if not a:
|
124
|
+
raise ItemNotFoundError(f"index {key} item not found")
|
125
|
+
if isinstance(key, slice):
|
126
|
+
# Return a new Progression for slices
|
127
|
+
return self.__class__(order=a)
|
128
|
+
else:
|
129
|
+
return a
|
130
|
+
except IndexError:
|
131
|
+
raise ItemNotFoundError(f"index {key} item not found")
|
132
|
+
|
133
|
+
def __setitem__(self, key: int | slice, value: Any) -> None:
|
134
|
+
"""Sets items by index or slice.
|
135
|
+
|
136
|
+
Args:
|
137
|
+
key (int | slice):
|
138
|
+
The position(s) to set.
|
139
|
+
value (Any):
|
140
|
+
One or more items to validate as IDs and assign.
|
141
|
+
|
142
|
+
Raises:
|
143
|
+
ValueError: If `value` can't be validated as IDs.
|
144
|
+
"""
|
145
|
+
refs = validate_order(value)
|
146
|
+
if isinstance(key, slice):
|
147
|
+
self.order[key] = refs
|
148
|
+
else:
|
149
|
+
try:
|
150
|
+
self.order[key] = refs[0]
|
151
|
+
except IndexError:
|
152
|
+
# If key is out of range, insertion occurs
|
153
|
+
self.order.insert(key, refs[0])
|
154
|
+
|
155
|
+
def __delitem__(self, key: int | slice) -> None:
|
156
|
+
"""Deletes item(s) by index or slice.
|
157
|
+
|
158
|
+
Args:
|
159
|
+
key (int | slice): The position(s) to delete.
|
160
|
+
"""
|
161
|
+
del self.order[key]
|
162
|
+
|
163
|
+
def __iter__(self):
|
164
|
+
"""Iterates over the IDs in this progression.
|
165
|
+
|
166
|
+
Returns:
|
167
|
+
Iterator[IDType]: An iterator over the ID elements.
|
168
|
+
"""
|
169
|
+
return iter(self.order)
|
170
|
+
|
171
|
+
def __next__(self) -> IDType:
|
172
|
+
"""Returns the next item if used as an iterator.
|
173
|
+
|
174
|
+
Returns:
|
175
|
+
IDType: The next item in the iteration.
|
176
|
+
|
177
|
+
Raises:
|
178
|
+
StopIteration: If there are no more items.
|
179
|
+
"""
|
180
|
+
try:
|
181
|
+
return next(iter(self.order))
|
182
|
+
except StopIteration:
|
183
|
+
raise StopIteration("No more items in the progression")
|
184
|
+
|
185
|
+
def __list__(self) -> list[IDType]:
|
186
|
+
"""Returns a copy of all IDs in the progression.
|
187
|
+
|
188
|
+
Returns:
|
189
|
+
list[IDType]: A shallow copy of the ID list.
|
190
|
+
"""
|
191
|
+
return self.order[:]
|
192
|
+
|
193
|
+
def clear(self) -> None:
|
194
|
+
"""Removes all items from the progression."""
|
195
|
+
self.order.clear()
|
196
|
+
|
197
|
+
def include(self, item: Any, /) -> bool:
|
198
|
+
"""Adds new IDs at the end if they are not already present.
|
199
|
+
|
200
|
+
Args:
|
201
|
+
item (Any): Could be a single ID/Element or a list/tuple
|
202
|
+
of them.
|
203
|
+
|
204
|
+
Returns:
|
205
|
+
bool: True if at least one new ID was appended; otherwise
|
206
|
+
False.
|
207
|
+
"""
|
208
|
+
try:
|
209
|
+
refs = validate_order(item)
|
210
|
+
except ValueError:
|
211
|
+
return False
|
212
|
+
if not refs:
|
213
|
+
return True
|
214
|
+
|
215
|
+
existing = set(self.order)
|
216
|
+
appended = False
|
217
|
+
for ref in refs:
|
218
|
+
if ref not in existing:
|
219
|
+
self.order.append(ref)
|
220
|
+
existing.add(ref)
|
221
|
+
appended = True
|
222
|
+
return appended
|
223
|
+
|
224
|
+
def exclude(self, item: Any, /) -> bool:
|
225
|
+
"""Removes occurrences of the specified IDs.
|
226
|
+
|
227
|
+
Args:
|
228
|
+
item (Any):
|
229
|
+
Could be a single ID/Element or a list/tuple of them.
|
230
|
+
|
231
|
+
Returns:
|
232
|
+
bool: True if one or more items were removed; otherwise False.
|
233
|
+
"""
|
234
|
+
try:
|
235
|
+
refs = validate_order(item)
|
236
|
+
except ValueError:
|
237
|
+
return False
|
238
|
+
if not refs:
|
239
|
+
return True
|
240
|
+
|
241
|
+
before = len(self.order)
|
242
|
+
rset = set(refs)
|
243
|
+
self.order = [x for x in self.order if x not in rset]
|
244
|
+
return len(self.order) < before
|
245
|
+
|
246
|
+
def append(self, item: Any, /) -> None:
|
247
|
+
"""Appends one or more IDs at the end of the progression.
|
248
|
+
|
249
|
+
Args:
|
250
|
+
item (Any):
|
251
|
+
A single ID/Element or multiple items.
|
252
|
+
"""
|
253
|
+
if isinstance(item, Element):
|
254
|
+
self.order.append(item.id)
|
255
|
+
return
|
256
|
+
refs = validate_order(item)
|
257
|
+
self.order.extend(refs)
|
258
|
+
|
259
|
+
def pop(self, index: int = -1) -> IDType:
|
260
|
+
"""Removes and returns one ID by index.
|
261
|
+
|
262
|
+
Args:
|
263
|
+
index (int):
|
264
|
+
Position of the item to pop (default is the last item).
|
265
|
+
|
266
|
+
Returns:
|
267
|
+
IDType: The removed ID.
|
268
|
+
|
269
|
+
Raises:
|
270
|
+
ItemNotFoundError: If the index is invalid or out of range.
|
271
|
+
"""
|
272
|
+
try:
|
273
|
+
return self.order.pop(index)
|
274
|
+
except Exception as e:
|
275
|
+
raise ItemNotFoundError(str(e)) from e
|
276
|
+
|
277
|
+
def popleft(self) -> IDType:
|
278
|
+
"""Removes and returns the first ID.
|
279
|
+
|
280
|
+
Returns:
|
281
|
+
IDType: The ID at the front of the progression.
|
282
|
+
|
283
|
+
Raises:
|
284
|
+
ItemNotFoundError: If the progression is empty.
|
285
|
+
"""
|
286
|
+
if not self.order:
|
287
|
+
raise ItemNotFoundError("No items in progression.")
|
288
|
+
return self.order.pop(0)
|
289
|
+
|
290
|
+
def remove(self, item: Any, /) -> None:
|
291
|
+
"""Removes the first occurrence of each specified ID.
|
292
|
+
|
293
|
+
Args:
|
294
|
+
item (Any):
|
295
|
+
One or more IDs/Elements to remove.
|
296
|
+
|
297
|
+
Raises:
|
298
|
+
ItemNotFoundError:
|
299
|
+
If any ID is not present in the progression.
|
300
|
+
"""
|
301
|
+
try:
|
302
|
+
refs = validate_order(item)
|
303
|
+
except IDError:
|
304
|
+
raise ItemNotFoundError("Invalid ID(s) provided.")
|
305
|
+
|
306
|
+
if not refs:
|
307
|
+
return
|
308
|
+
missing = [r for r in refs if r not in self.order]
|
309
|
+
if missing:
|
310
|
+
raise ItemNotFoundError(str(missing))
|
311
|
+
self.order = [x for x in self.order if x not in refs]
|
312
|
+
|
313
|
+
def count(self, item: Any, /) -> int:
|
314
|
+
"""Counts the number of occurrences of an ID.
|
315
|
+
|
316
|
+
Args:
|
317
|
+
item (Any): An ID/Element to count.
|
318
|
+
|
319
|
+
Returns:
|
320
|
+
int: Number of times the ID occurs in the progression.
|
321
|
+
"""
|
322
|
+
ref = ID.get_id(item)
|
323
|
+
return self.order.count(ref)
|
324
|
+
|
325
|
+
def index(self, item: Any, start: int = 0, end: int | None = None) -> int:
|
326
|
+
"""Finds the index of the first occurrence of an ID.
|
327
|
+
|
328
|
+
Args:
|
329
|
+
item (Any):
|
330
|
+
The ID/Element whose index is sought.
|
331
|
+
start (int):
|
332
|
+
Starting index for the search.
|
333
|
+
end (int | None):
|
334
|
+
Ending index (non-inclusive) for the search.
|
335
|
+
|
336
|
+
Returns:
|
337
|
+
int: The index of the item.
|
338
|
+
|
339
|
+
Raises:
|
340
|
+
ValueError: If the item is not found in that range.
|
341
|
+
"""
|
342
|
+
ref = ID.get_id(item)
|
343
|
+
if end is not None:
|
344
|
+
return self.order.index(ref, start, end)
|
345
|
+
return self.order.index(ref, start)
|
346
|
+
|
347
|
+
def extend(self, other: Progression) -> None:
|
348
|
+
"""Appends all IDs from another Progression to this one.
|
349
|
+
|
350
|
+
Args:
|
351
|
+
other (Progression): Another progression to merge.
|
352
|
+
|
353
|
+
Raises:
|
354
|
+
ValueError: If `other` is not a Progression.
|
355
|
+
"""
|
356
|
+
if not isinstance(other, Progression):
|
357
|
+
raise ValueError("Can only extend with another Progression.")
|
358
|
+
self.order.extend(other.order)
|
359
|
+
|
360
|
+
def __add__(self, other: Any) -> Progression[E]:
|
361
|
+
"""Returns a new Progression with IDs from both this and `other`.
|
362
|
+
|
363
|
+
Args:
|
364
|
+
other (Any):
|
365
|
+
Item(s) that can be validated via `validate_order`.
|
366
|
+
|
367
|
+
Returns:
|
368
|
+
Progression[E]: A new progression with combined IDs.
|
369
|
+
"""
|
370
|
+
new_refs = validate_order(other)
|
371
|
+
return Progression(order=self.order + new_refs)
|
372
|
+
|
373
|
+
def __radd__(self, other: Any) -> Progression[E]:
|
374
|
+
"""Returns a new Progression with IDs from `other` + this.
|
375
|
+
|
376
|
+
Args:
|
377
|
+
other (Any):
|
378
|
+
Item(s) that can be validated via `validate_order`.
|
379
|
+
|
380
|
+
Returns:
|
381
|
+
Progression[E]: A new progression with combined IDs.
|
382
|
+
"""
|
383
|
+
new_refs = validate_order(other)
|
384
|
+
return Progression(order=new_refs + self.order)
|
385
|
+
|
386
|
+
def __iadd__(self, other: Any) -> Self:
|
387
|
+
"""In-place addition of IDs.
|
388
|
+
|
389
|
+
Args:
|
390
|
+
other (Any): One or more items to append.
|
391
|
+
|
392
|
+
Returns:
|
393
|
+
Self: The updated progression.
|
394
|
+
"""
|
395
|
+
self.append(other)
|
396
|
+
return self
|
397
|
+
|
398
|
+
def __sub__(self, other: Any) -> Progression[E]:
|
399
|
+
"""Returns a new Progression excluding specified IDs.
|
400
|
+
|
401
|
+
Args:
|
402
|
+
other (Any): One or more items to remove.
|
403
|
+
|
404
|
+
Returns:
|
405
|
+
Progression[E]: A new progression with the IDs removed.
|
406
|
+
"""
|
407
|
+
refs = validate_order(other)
|
408
|
+
remove_set = set(refs)
|
409
|
+
new_order = [x for x in self.order if x not in remove_set]
|
410
|
+
return Progression(order=new_order)
|
411
|
+
|
412
|
+
def __isub__(self, other: Any) -> Self:
|
413
|
+
"""In-place exclusion of specified IDs.
|
414
|
+
|
415
|
+
Args:
|
416
|
+
other (Any):
|
417
|
+
One or more items to remove.
|
418
|
+
|
419
|
+
Returns:
|
420
|
+
Self: The updated progression.
|
421
|
+
"""
|
422
|
+
self.remove(other)
|
423
|
+
return self
|
424
|
+
|
425
|
+
def insert(self, index: int, item: ID.RefSeq, /) -> None:
|
426
|
+
"""Inserts one or more IDs at a specified index.
|
427
|
+
|
428
|
+
Args:
|
429
|
+
index (int): Position to insert at.
|
430
|
+
item (ID.RefSeq):
|
431
|
+
One or more items to validate as IDs and insert.
|
432
|
+
"""
|
433
|
+
item_ = validate_order(item)
|
434
|
+
for i in reversed(item_):
|
435
|
+
self.order.insert(index, ID.get_id(i))
|
436
|
+
|
437
|
+
def __reverse__(self) -> Progression[E]:
|
438
|
+
"""Returns a new reversed Progression.
|
439
|
+
|
440
|
+
Returns:
|
441
|
+
Progression[E]: A reversed copy of the current progression.
|
442
|
+
"""
|
443
|
+
return Progression(order=list(reversed(self.order)))
|
444
|
+
|
445
|
+
def __eq__(self, other: object) -> bool:
|
446
|
+
"""Checks equality with another Progression.
|
447
|
+
|
448
|
+
Args:
|
449
|
+
other (object): Another progression to compare.
|
450
|
+
|
451
|
+
Returns:
|
452
|
+
bool: True if both `order` and `name` match; otherwise False.
|
453
|
+
"""
|
454
|
+
if not isinstance(other, Progression):
|
455
|
+
return NotImplemented
|
456
|
+
return (self.order == other.order) and (self.name == other.name)
|
457
|
+
|
458
|
+
def __gt__(self, other: Progression[E]) -> bool:
|
459
|
+
"""Compares if this progression is "greater" by ID order."""
|
460
|
+
return self.order > other.order
|
461
|
+
|
462
|
+
def __lt__(self, other: Progression[E]) -> bool:
|
463
|
+
"""Compares if this progression is "less" by ID order."""
|
464
|
+
return self.order < other.order
|
465
|
+
|
466
|
+
def __ge__(self, other: Progression[E]) -> bool:
|
467
|
+
"""Compares if this progression is >= the other by ID order."""
|
468
|
+
return self.order >= other.order
|
469
|
+
|
470
|
+
def __le__(self, other: Progression[E]) -> bool:
|
471
|
+
"""Compares if this progression is <= the other by ID order."""
|
472
|
+
return self.order <= other.order
|
473
|
+
|
474
|
+
def __repr__(self) -> str:
|
475
|
+
"""Returns a string representation of the progression.
|
476
|
+
|
477
|
+
Returns:
|
478
|
+
str: A formatted string showing name and order contents.
|
479
|
+
"""
|
480
|
+
return f"Progression(name={self.name}, order={self.order})"
|
481
|
+
|
482
|
+
|
483
|
+
def prog(order: Any, name: str = None, /) -> Progression:
|
484
|
+
"""Convenience function to quickly create a new Progression.
|
485
|
+
|
486
|
+
Args:
|
487
|
+
order (Any):
|
488
|
+
A sequence of IDs or items convertible to IDs via
|
489
|
+
`validate_order`.
|
490
|
+
name (str | None):
|
491
|
+
An optional name for this progression.
|
492
|
+
|
493
|
+
Returns:
|
494
|
+
Progression: A new Progression instance with the given order
|
495
|
+
and name.
|
496
|
+
"""
|
497
|
+
return Progression(order=order, name=name)
|
498
|
+
|
499
|
+
|
500
|
+
# File: lionagi/protocols/generic/progression.py
|
@@ -0,0 +1,166 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from typing import Any
|
6
|
+
|
7
|
+
from pydantic import (
|
8
|
+
BaseModel,
|
9
|
+
ConfigDict,
|
10
|
+
Field,
|
11
|
+
field_serializer,
|
12
|
+
field_validator,
|
13
|
+
)
|
14
|
+
|
15
|
+
from lionagi.utils import is_same_dtype
|
16
|
+
|
17
|
+
from .._concepts import Condition, Relational
|
18
|
+
from ..generic.element import ID, Element, IDType
|
19
|
+
|
20
|
+
__all__ = (
|
21
|
+
"EdgeCondition",
|
22
|
+
"Edge",
|
23
|
+
)
|
24
|
+
|
25
|
+
|
26
|
+
class EdgeCondition(BaseModel, Condition):
|
27
|
+
"""Represents a condition associated with an edge in the Lion framework.
|
28
|
+
|
29
|
+
This class combines Condition characteristics with Pydantic's
|
30
|
+
BaseModel for robust data validation and serialization.
|
31
|
+
|
32
|
+
Attributes:
|
33
|
+
source (Any): The source for condition evaluation.
|
34
|
+
"""
|
35
|
+
|
36
|
+
source: Any = Field(
|
37
|
+
default=None,
|
38
|
+
title="Source",
|
39
|
+
description="The source for condition evaluation",
|
40
|
+
)
|
41
|
+
|
42
|
+
model_config = ConfigDict(
|
43
|
+
extra="allow",
|
44
|
+
arbitrary_types_allowed=True,
|
45
|
+
)
|
46
|
+
|
47
|
+
|
48
|
+
class Edge(Element):
|
49
|
+
"""
|
50
|
+
An edge in a graph, connecting a head Node to a tail Node. Optional
|
51
|
+
EdgeCondition can control traversal. Additional properties like labels,
|
52
|
+
metadata, etc., may be stored in `properties`.
|
53
|
+
"""
|
54
|
+
|
55
|
+
head: IDType
|
56
|
+
tail: IDType
|
57
|
+
properties: dict[str, Any] = Field(
|
58
|
+
default_factory=dict,
|
59
|
+
title="Properties",
|
60
|
+
description="Custom properties associated with this edge.",
|
61
|
+
)
|
62
|
+
|
63
|
+
def __init__(
|
64
|
+
self,
|
65
|
+
head: ID[Relational].Ref,
|
66
|
+
tail: ID[Relational].Ref,
|
67
|
+
condition: EdgeCondition | None = None,
|
68
|
+
label: list[str] | None = None,
|
69
|
+
**kwargs,
|
70
|
+
):
|
71
|
+
"""
|
72
|
+
Initialize an Edge.
|
73
|
+
|
74
|
+
This constructor sets up an edge by linking a head node to a tail node,
|
75
|
+
with optional conditions and labels. Additional properties can also be
|
76
|
+
provided via keyword arguments.
|
77
|
+
|
78
|
+
Args:
|
79
|
+
head (Relational | str): The head node or its ID. This is the
|
80
|
+
starting point of the edge.
|
81
|
+
tail (Relational | str): The tail node or its ID. This is the end
|
82
|
+
point of the edge.
|
83
|
+
condition (EdgeCondition | None): An optional condition that must
|
84
|
+
be satisfied for the edge to be traversed.
|
85
|
+
label (list[str] | None): An optional list of labels that describe
|
86
|
+
the edge.
|
87
|
+
kwargs: Optional additional properties for the edge.
|
88
|
+
"""
|
89
|
+
head = ID.get_id(head)
|
90
|
+
tail = ID.get_id(tail)
|
91
|
+
if condition:
|
92
|
+
if not isinstance(condition, EdgeCondition):
|
93
|
+
raise ValueError(
|
94
|
+
"Condition must be an instance of EdgeCondition."
|
95
|
+
)
|
96
|
+
kwargs["condition"] = condition
|
97
|
+
if label:
|
98
|
+
if isinstance(label, str):
|
99
|
+
kwargs["label"] = [label]
|
100
|
+
elif isinstance(label, list) and is_same_dtype(label, str):
|
101
|
+
kwargs["label"] = label
|
102
|
+
else:
|
103
|
+
raise ValueError(
|
104
|
+
"Label must be a string or a list of strings."
|
105
|
+
)
|
106
|
+
|
107
|
+
super().__init__(head=head, tail=tail, properties=kwargs)
|
108
|
+
|
109
|
+
@field_serializer("head", "tail")
|
110
|
+
def _serialize_id(self, value: IDType) -> str:
|
111
|
+
return str(value)
|
112
|
+
|
113
|
+
@field_validator("head", "tail", mode="before")
|
114
|
+
def _validate_id(cls, value: str) -> IDType:
|
115
|
+
return ID.get_id(value)
|
116
|
+
|
117
|
+
@property
|
118
|
+
def label(self) -> list[str] | None:
|
119
|
+
return self.properties.get("label", None)
|
120
|
+
|
121
|
+
@property
|
122
|
+
def condition(self) -> EdgeCondition | None:
|
123
|
+
return self.properties.get("condition", None)
|
124
|
+
|
125
|
+
@condition.setter
|
126
|
+
def condition(self, value: EdgeCondition | None) -> None:
|
127
|
+
if not isinstance(value, EdgeCondition):
|
128
|
+
raise ValueError("Condition must be an instance of EdgeCondition.")
|
129
|
+
self.properties["condition"] = value
|
130
|
+
|
131
|
+
@label.setter
|
132
|
+
def label(self, value: list[str] | None) -> None:
|
133
|
+
if not value:
|
134
|
+
self.properties["label"] = []
|
135
|
+
return
|
136
|
+
if isinstance(value, str):
|
137
|
+
self.properties["label"] = [value]
|
138
|
+
return
|
139
|
+
if isinstance(value, list) and is_same_dtype(value, str):
|
140
|
+
self.properties["label"] = value
|
141
|
+
return
|
142
|
+
raise ValueError("Label must be a string or a list of strings.")
|
143
|
+
|
144
|
+
async def check_condition(self, *args, **kwargs) -> bool:
|
145
|
+
"""
|
146
|
+
Check if this edge can be traversed, by evaluating any assigned condition.
|
147
|
+
|
148
|
+
Returns:
|
149
|
+
bool: True if condition is met or if no condition exists.
|
150
|
+
"""
|
151
|
+
if self.condition:
|
152
|
+
return await self.condition.apply(*args, **kwargs)
|
153
|
+
return True
|
154
|
+
|
155
|
+
def update_property(self, key: str, value: Any) -> None:
|
156
|
+
"""Update or add a custom property in `self.properties`."""
|
157
|
+
self.properties[key] = value
|
158
|
+
|
159
|
+
def update_condition_source(self, source: Any) -> None:
|
160
|
+
"""Update the `.source` attribute in the assigned EdgeCondition, if any."""
|
161
|
+
cond: EdgeCondition | None = self.properties.get("condition", None)
|
162
|
+
if cond:
|
163
|
+
cond.source = source
|
164
|
+
|
165
|
+
|
166
|
+
# File: protocols/graph/edge.py
|