lionagi 0.5.5__py3-none-any.whl → 0.6.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +18 -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 +19 -16
- 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 +2 -2
- 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 +26 -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/operations/types.py +13 -0
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +236 -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/{core/models/__init__.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/_concepts.py +94 -0
- lionagi/protocols/adapters/adapter.py +23 -7
- lionagi/protocols/adapters/json_adapter.py +72 -14
- lionagi/protocols/adapters/pandas_/csv_adapter.py +50 -0
- lionagi/protocols/adapters/pandas_/excel_adapter.py +52 -0
- lionagi/protocols/adapters/pandas_/pd_dataframe_adapter.py +31 -0
- lionagi/protocols/adapters/pandas_/pd_series_adapter.py +17 -0
- lionagi/protocols/adapters/types.py +18 -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 +193 -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 +125 -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 +1 -16
- 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 +146 -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/service/types.py +18 -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.1.dist-info}/METADATA +10 -9
- lionagi-0.6.1.dist-info/RECORD +169 -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/_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/anthropic_/version.py +0 -5
- 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/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 → protocols/adapters/pandas_}/__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.1.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,460 @@
|
|
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 collections.abc import Mapping, Sequence
|
8
|
+
from datetime import datetime
|
9
|
+
from typing import Any, Generic, TypeAlias, TypeVar
|
10
|
+
from uuid import UUID, uuid4
|
11
|
+
|
12
|
+
from pydantic import (
|
13
|
+
BaseModel,
|
14
|
+
ConfigDict,
|
15
|
+
Field,
|
16
|
+
field_serializer,
|
17
|
+
field_validator,
|
18
|
+
)
|
19
|
+
|
20
|
+
from lionagi._class_registry import get_class
|
21
|
+
from lionagi._errors import IDError
|
22
|
+
from lionagi.settings import Settings
|
23
|
+
from lionagi.utils import UNDEFINED, time, to_dict
|
24
|
+
|
25
|
+
from .._concepts import Collective, Observable, Ordering
|
26
|
+
|
27
|
+
__all__ = (
|
28
|
+
"IDType",
|
29
|
+
"Element",
|
30
|
+
"ID",
|
31
|
+
"validate_order",
|
32
|
+
)
|
33
|
+
|
34
|
+
|
35
|
+
class IDType:
|
36
|
+
"""Represents a UUIDv4-based identifier.
|
37
|
+
|
38
|
+
This class wraps a UUID object and provides helper methods for
|
39
|
+
validating and creating UUID version 4. It also implements equality
|
40
|
+
and hashing so that it can be used as dictionary keys or in sets.
|
41
|
+
|
42
|
+
Attributes:
|
43
|
+
_id (UUID): The wrapped UUID object.
|
44
|
+
"""
|
45
|
+
|
46
|
+
__slots__ = ("_id",)
|
47
|
+
|
48
|
+
def __init__(self, id: UUID) -> None:
|
49
|
+
"""Initializes an IDType instance.
|
50
|
+
|
51
|
+
Args:
|
52
|
+
id (UUID): A UUID object (version 4 preferred).
|
53
|
+
"""
|
54
|
+
self._id = id
|
55
|
+
|
56
|
+
@classmethod
|
57
|
+
def validate(cls, value: str | UUID | IDType) -> IDType:
|
58
|
+
"""Validates and converts a value into an IDType.
|
59
|
+
|
60
|
+
Args:
|
61
|
+
value (str | UUID | IDType):
|
62
|
+
A string representing a UUID, a UUID instance, or another
|
63
|
+
IDType instance.
|
64
|
+
|
65
|
+
Returns:
|
66
|
+
IDType: The validated IDType object.
|
67
|
+
|
68
|
+
Raises:
|
69
|
+
IDError: If the provided value is not a valid UUIDv4.
|
70
|
+
"""
|
71
|
+
if isinstance(value, IDType):
|
72
|
+
return value
|
73
|
+
try:
|
74
|
+
return cls(UUID(str(value), version=4))
|
75
|
+
except ValueError:
|
76
|
+
raise IDError(f"Invalid ID: {value}") from None
|
77
|
+
|
78
|
+
@classmethod
|
79
|
+
def create(cls) -> IDType:
|
80
|
+
"""Creates a new IDType with a randomly generated UUIDv4.
|
81
|
+
|
82
|
+
Returns:
|
83
|
+
IDType: A new IDType instance with a random UUIDv4.
|
84
|
+
"""
|
85
|
+
return cls(uuid4())
|
86
|
+
|
87
|
+
def __str__(self) -> str:
|
88
|
+
"""Returns the string representation of the underlying UUID.
|
89
|
+
|
90
|
+
Returns:
|
91
|
+
str: The string form of this IDType's UUID.
|
92
|
+
"""
|
93
|
+
return str(self._id)
|
94
|
+
|
95
|
+
def __repr__(self) -> str:
|
96
|
+
"""Returns the unambiguous string representation of this IDType.
|
97
|
+
|
98
|
+
Returns:
|
99
|
+
str: A developer-friendly string for debugging.
|
100
|
+
"""
|
101
|
+
return f"IDType({self._id})"
|
102
|
+
|
103
|
+
def __eq__(self, other: Any) -> bool:
|
104
|
+
"""Checks equality with another IDType based on UUID value.
|
105
|
+
|
106
|
+
Args:
|
107
|
+
other (Any): Another object for equality comparison.
|
108
|
+
|
109
|
+
Returns:
|
110
|
+
bool: True if both have the same underlying UUID; False otherwise.
|
111
|
+
"""
|
112
|
+
if not isinstance(other, IDType):
|
113
|
+
return NotImplemented
|
114
|
+
return self._id == other._id
|
115
|
+
|
116
|
+
def __hash__(self) -> int:
|
117
|
+
"""Returns a hash based on the underlying UUID.
|
118
|
+
|
119
|
+
Returns:
|
120
|
+
int: The hash of this object, allowing IDType to be dictionary keys.
|
121
|
+
"""
|
122
|
+
return hash(self._id)
|
123
|
+
|
124
|
+
|
125
|
+
class Element(BaseModel, Observable):
|
126
|
+
"""Basic identifiable, timestamped element.
|
127
|
+
|
128
|
+
This Pydantic model provides a unique identifier (`id`), an automatically
|
129
|
+
generated creation timestamp (`created_at`), and an optional metadata
|
130
|
+
dictionary.
|
131
|
+
|
132
|
+
Attributes:
|
133
|
+
id (IDType):
|
134
|
+
A unique ID based on UUIDv4 (defaults to a newly generated one).
|
135
|
+
created_at (float):
|
136
|
+
The creation timestamp as a float (Unix epoch). Defaults to
|
137
|
+
the current time.
|
138
|
+
metadata (dict):
|
139
|
+
A dictionary for storing additional information about this Element.
|
140
|
+
"""
|
141
|
+
|
142
|
+
model_config = ConfigDict(
|
143
|
+
arbitrary_types_allowed=True,
|
144
|
+
use_enum_values=True,
|
145
|
+
populate_by_name=True,
|
146
|
+
extra="forbid",
|
147
|
+
)
|
148
|
+
|
149
|
+
id: IDType = Field(
|
150
|
+
default_factory=IDType.create,
|
151
|
+
title="ID",
|
152
|
+
description="Unique identifier for this element.",
|
153
|
+
frozen=True,
|
154
|
+
)
|
155
|
+
created_at: float = Field(
|
156
|
+
default_factory=lambda: time(
|
157
|
+
tz=Settings.Config.TIMEZONE, type_="timestamp"
|
158
|
+
),
|
159
|
+
title="Creation Timestamp",
|
160
|
+
description="Timestamp of element creation.",
|
161
|
+
frozen=True,
|
162
|
+
)
|
163
|
+
metadata: dict = Field(
|
164
|
+
default_factory=dict,
|
165
|
+
title="Metadata",
|
166
|
+
description="Additional data for this element.",
|
167
|
+
)
|
168
|
+
|
169
|
+
@field_validator("metadata", mode="before")
|
170
|
+
def _validate_meta_integrity(cls, val: dict) -> dict:
|
171
|
+
"""Validates that `metadata` is a dictionary and checks class naming.
|
172
|
+
|
173
|
+
If a `lion_class` field is present in `metadata`, it must match the
|
174
|
+
fully qualified name of this class. Converts `metadata` to a dict
|
175
|
+
if needed.
|
176
|
+
|
177
|
+
Args:
|
178
|
+
val (dict): The initial metadata value.
|
179
|
+
|
180
|
+
Returns:
|
181
|
+
dict: A valid dictionary of metadata.
|
182
|
+
|
183
|
+
Raises:
|
184
|
+
ValueError: If the metadata is invalid or has a class mismatch.
|
185
|
+
"""
|
186
|
+
if not val:
|
187
|
+
return {}
|
188
|
+
if not isinstance(val, dict):
|
189
|
+
val = to_dict(val, recursive=True, suppress=True)
|
190
|
+
if "lion_class" in val and val["lion_class"] != cls.class_name(
|
191
|
+
full=True
|
192
|
+
):
|
193
|
+
raise ValueError("Metadata class mismatch.")
|
194
|
+
if not isinstance(val, dict):
|
195
|
+
raise ValueError("Invalid metadata.")
|
196
|
+
return val
|
197
|
+
|
198
|
+
@field_validator("created_at", mode="before")
|
199
|
+
def _coerce_created_at(cls, val: float | datetime | None) -> float:
|
200
|
+
"""Coerces `created_at` to a float-based timestamp.
|
201
|
+
|
202
|
+
Args:
|
203
|
+
val (float | datetime | None): The initial creation time value.
|
204
|
+
|
205
|
+
Returns:
|
206
|
+
float: A float representing Unix epoch time in seconds.
|
207
|
+
|
208
|
+
Raises:
|
209
|
+
ValueError: If `val` cannot be converted to a float timestamp.
|
210
|
+
"""
|
211
|
+
if val is None:
|
212
|
+
return time(tz=Settings.Config.TIMEZONE, type_="timestamp")
|
213
|
+
if isinstance(val, float):
|
214
|
+
return val
|
215
|
+
if isinstance(val, datetime):
|
216
|
+
return val.timestamp()
|
217
|
+
try:
|
218
|
+
return float(val) # type: ignore
|
219
|
+
except Exception:
|
220
|
+
raise ValueError(f"Invalid created_at: {val}") from None
|
221
|
+
|
222
|
+
@field_validator("id", mode="before")
|
223
|
+
def _ensure_idtype(cls, val: IDType | UUID | str) -> IDType:
|
224
|
+
"""Ensures `id` is validated as an IDType.
|
225
|
+
|
226
|
+
Args:
|
227
|
+
val (IDType | UUID | str):
|
228
|
+
The incoming value for the `id` field.
|
229
|
+
|
230
|
+
Returns:
|
231
|
+
IDType: A validated IDType object.
|
232
|
+
"""
|
233
|
+
return IDType.validate(val)
|
234
|
+
|
235
|
+
@field_serializer("id")
|
236
|
+
def _serialize_id_type(self, val: IDType) -> str:
|
237
|
+
"""Serializes the `id` field to a string.
|
238
|
+
|
239
|
+
Args:
|
240
|
+
val (IDType): The IDType object to be serialized.
|
241
|
+
|
242
|
+
Returns:
|
243
|
+
str: The string representation of the UUID.
|
244
|
+
"""
|
245
|
+
return str(val)
|
246
|
+
|
247
|
+
def __eq__(self, other: Any) -> bool:
|
248
|
+
"""Compares two Element instances by their ID.
|
249
|
+
|
250
|
+
Args:
|
251
|
+
other (Any): Another object for comparison.
|
252
|
+
|
253
|
+
Returns:
|
254
|
+
bool: True if both share the same ID, False otherwise.
|
255
|
+
"""
|
256
|
+
if not isinstance(other, Element):
|
257
|
+
return NotImplemented
|
258
|
+
return self.id == other.id
|
259
|
+
|
260
|
+
def __hash__(self) -> int:
|
261
|
+
"""Returns a hash of this element's ID.
|
262
|
+
|
263
|
+
Returns:
|
264
|
+
int: The hash of the ID, making elements usable as dictionary keys.
|
265
|
+
"""
|
266
|
+
return hash(self.id)
|
267
|
+
|
268
|
+
def __bool__(self) -> bool:
|
269
|
+
"""Elements are always considered truthy."""
|
270
|
+
return True
|
271
|
+
|
272
|
+
@classmethod
|
273
|
+
def class_name(cls, full: bool = False) -> str:
|
274
|
+
"""Returns this class's name.
|
275
|
+
|
276
|
+
Args:
|
277
|
+
full (bool):
|
278
|
+
If True, returns the fully qualified class name; otherwise,
|
279
|
+
returns only the class name.
|
280
|
+
|
281
|
+
Returns:
|
282
|
+
str: The class name or fully qualified name.
|
283
|
+
"""
|
284
|
+
if full:
|
285
|
+
return str(cls).split("'")[1]
|
286
|
+
return cls.__name__
|
287
|
+
|
288
|
+
def to_dict(self) -> dict:
|
289
|
+
"""Converts this Element to a dictionary.
|
290
|
+
|
291
|
+
All fields are included except those set to `UNDEFINED`.
|
292
|
+
|
293
|
+
Returns:
|
294
|
+
dict: The dictionary representation of this Element.
|
295
|
+
"""
|
296
|
+
dict_ = self.model_dump()
|
297
|
+
dict_["metadata"].update({"lion_class": self.class_name(full=True)})
|
298
|
+
return {k: v for k, v in dict_.items() if v is not UNDEFINED}
|
299
|
+
|
300
|
+
@classmethod
|
301
|
+
def from_dict(cls, data: dict, /) -> Element:
|
302
|
+
"""Deserializes a dictionary into an Element or subclass of Element.
|
303
|
+
|
304
|
+
If `lion_class` in `metadata` refers to a subclass, this method
|
305
|
+
attempts to create an instance of that subclass.
|
306
|
+
|
307
|
+
Args:
|
308
|
+
data (dict): A dictionary of field data.
|
309
|
+
|
310
|
+
Returns:
|
311
|
+
Element: An Element or a subclass instance loaded from `data`.
|
312
|
+
"""
|
313
|
+
metadata = data.pop("metadata", {})
|
314
|
+
if "lion_class" in metadata:
|
315
|
+
subcls: str = metadata.pop("lion_class")
|
316
|
+
if subcls != Element.class_name(full=True):
|
317
|
+
try:
|
318
|
+
# Attempt dynamic lookup by registry
|
319
|
+
subcls_type: type[Element] = get_class(
|
320
|
+
subcls.split(".")[-1]
|
321
|
+
)
|
322
|
+
# If there's a custom from_dict, delegate to it
|
323
|
+
if (
|
324
|
+
hasattr(subcls_type, "from_dict")
|
325
|
+
and subcls_type.from_dict.__func__
|
326
|
+
!= cls.from_dict.__func__
|
327
|
+
):
|
328
|
+
return subcls_type.from_dict(data)
|
329
|
+
|
330
|
+
except Exception:
|
331
|
+
# Fallback attempt: direct import if not in registry
|
332
|
+
from lionagi.libs.package.imports import import_module
|
333
|
+
|
334
|
+
mod, imp = subcls.rsplit(".", 1)
|
335
|
+
subcls_type = import_module(mod, import_name=imp)
|
336
|
+
data["metadata"] = metadata
|
337
|
+
if hasattr(subcls_type, "from_dict") and (
|
338
|
+
subcls_type is not cls
|
339
|
+
):
|
340
|
+
return subcls_type.from_dict(data)
|
341
|
+
data["metadata"] = metadata
|
342
|
+
return cls.model_validate(data)
|
343
|
+
|
344
|
+
|
345
|
+
def validate_order(order: Any) -> list[IDType]:
|
346
|
+
"""Validates and flattens an ordering into a list of IDType objects.
|
347
|
+
|
348
|
+
This function accepts a variety of possible representations for ordering
|
349
|
+
(e.g., a single Element, a list of Elements, a dictionary with ID keys,
|
350
|
+
or a nested structure) and returns a flat list of IDType objects.
|
351
|
+
|
352
|
+
Args:
|
353
|
+
order (Any): A potentially nested structure of items to be ordered.
|
354
|
+
|
355
|
+
Returns:
|
356
|
+
list[IDType]: A flat list of validated IDType objects.
|
357
|
+
|
358
|
+
Raises:
|
359
|
+
ValueError: If an invalid item is encountered or if there's a mixture
|
360
|
+
of types not all convertible to IDType.
|
361
|
+
"""
|
362
|
+
if isinstance(order, Element):
|
363
|
+
return [order.id]
|
364
|
+
if isinstance(order, Mapping):
|
365
|
+
order = list(order.keys())
|
366
|
+
|
367
|
+
stack = [order]
|
368
|
+
out: list[IDType] = []
|
369
|
+
while stack:
|
370
|
+
cur = stack.pop()
|
371
|
+
if cur is None:
|
372
|
+
continue
|
373
|
+
if isinstance(cur, Element):
|
374
|
+
out.append(cur.id)
|
375
|
+
elif isinstance(cur, IDType):
|
376
|
+
out.append(cur)
|
377
|
+
elif isinstance(cur, UUID):
|
378
|
+
out.append(IDType.validate(cur))
|
379
|
+
elif isinstance(cur, str):
|
380
|
+
out.append(IDType.validate(cur))
|
381
|
+
elif isinstance(cur, (list, tuple, set)):
|
382
|
+
stack.extend(reversed(cur))
|
383
|
+
else:
|
384
|
+
raise ValueError("Invalid item in order.")
|
385
|
+
|
386
|
+
if not out:
|
387
|
+
return []
|
388
|
+
|
389
|
+
# Check for consistent IDType usage
|
390
|
+
first_type = type(out[0])
|
391
|
+
if first_type is IDType:
|
392
|
+
for item in out:
|
393
|
+
if not isinstance(item, IDType):
|
394
|
+
raise ValueError("Mixed types in order.")
|
395
|
+
return out
|
396
|
+
raise ValueError("Unrecognized type(s) in order.")
|
397
|
+
|
398
|
+
|
399
|
+
E = TypeVar("E", bound=Element)
|
400
|
+
|
401
|
+
|
402
|
+
class ID(Generic[E]):
|
403
|
+
"""Utility class for working with IDType objects and Elements.
|
404
|
+
|
405
|
+
This class provides helper methods to extract IDs from Elements, strings,
|
406
|
+
or UUIDs, and to test whether a given object can be interpreted as
|
407
|
+
an ID.
|
408
|
+
"""
|
409
|
+
|
410
|
+
ID: TypeAlias = IDType
|
411
|
+
Item: TypeAlias = E | Element # type: ignore
|
412
|
+
Ref: TypeAlias = IDType | E | str # type: ignore
|
413
|
+
IDSeq: TypeAlias = Sequence[IDType] | Ordering[E] # type: ignore
|
414
|
+
ItemSeq: TypeAlias = Sequence[E] | Collective[E] # type: ignore
|
415
|
+
RefSeq: TypeAlias = ItemSeq | Sequence[Ref] | Ordering[E] # type: ignore
|
416
|
+
|
417
|
+
@staticmethod
|
418
|
+
def get_id(item: E) -> IDType:
|
419
|
+
"""Retrieves an IDType from multiple possible item forms.
|
420
|
+
|
421
|
+
Acceptable item types include:
|
422
|
+
- Element: Uses its `id` attribute.
|
423
|
+
- IDType: Returns it directly.
|
424
|
+
- UUID: Validates and wraps it.
|
425
|
+
- str: Interpreted as a UUID if possible.
|
426
|
+
|
427
|
+
Args:
|
428
|
+
item (E): The item to convert to an ID.
|
429
|
+
|
430
|
+
Returns:
|
431
|
+
IDType: The validated ID.
|
432
|
+
|
433
|
+
Raises:
|
434
|
+
ValueError: If the item cannot be converted to an IDType.
|
435
|
+
"""
|
436
|
+
if isinstance(item, Element):
|
437
|
+
return item.id
|
438
|
+
if isinstance(item, (IDType, UUID, str)):
|
439
|
+
return IDType.validate(item)
|
440
|
+
raise ValueError("Cannot get ID from item.")
|
441
|
+
|
442
|
+
@staticmethod
|
443
|
+
def is_id(item: Any) -> bool:
|
444
|
+
"""Checks if an item can be validated as an IDType.
|
445
|
+
|
446
|
+
Args:
|
447
|
+
item (Any): The object to check.
|
448
|
+
|
449
|
+
Returns:
|
450
|
+
bool: True if `item` is or can be validated as an IDType;
|
451
|
+
otherwise, False.
|
452
|
+
"""
|
453
|
+
try:
|
454
|
+
IDType.validate(item)
|
455
|
+
return True
|
456
|
+
except IDError:
|
457
|
+
return False
|
458
|
+
|
459
|
+
|
460
|
+
# File: protocols/generic/element.py
|
@@ -0,0 +1,177 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from enum import Enum
|
6
|
+
from typing import Any
|
7
|
+
|
8
|
+
from pydantic import Field, field_serializer
|
9
|
+
|
10
|
+
from .element import Element
|
11
|
+
|
12
|
+
__all__ = (
|
13
|
+
"EventStatus",
|
14
|
+
"Execution",
|
15
|
+
"Event",
|
16
|
+
)
|
17
|
+
|
18
|
+
|
19
|
+
class EventStatus(str, Enum):
|
20
|
+
"""Status states for tracking action execution progress.
|
21
|
+
|
22
|
+
Attributes:
|
23
|
+
PENDING: Initial state before execution starts.
|
24
|
+
PROCESSING: Action is currently being executed.
|
25
|
+
COMPLETED: Action completed successfully.
|
26
|
+
FAILED: Action failed during execution.
|
27
|
+
"""
|
28
|
+
|
29
|
+
PENDING = "pending"
|
30
|
+
PROCESSING = "processing"
|
31
|
+
COMPLETED = "completed"
|
32
|
+
FAILED = "failed"
|
33
|
+
|
34
|
+
|
35
|
+
class Execution:
|
36
|
+
"""Represents the execution state of an event.
|
37
|
+
|
38
|
+
Attributes:
|
39
|
+
status (`EventStatus`): The current status of the event execution.
|
40
|
+
duration (float | None): Time (in seconds) the execution took,
|
41
|
+
if known.
|
42
|
+
response (Any): The result or output of the execution, if any.
|
43
|
+
error (str | None): An error message if the execution failed.
|
44
|
+
"""
|
45
|
+
|
46
|
+
__slots__ = ("status", "duration", "response", "error")
|
47
|
+
|
48
|
+
def __init__(
|
49
|
+
self,
|
50
|
+
duration: float | None = None,
|
51
|
+
response: Any = None,
|
52
|
+
status: EventStatus = EventStatus.PENDING,
|
53
|
+
error: str | None = None,
|
54
|
+
) -> None:
|
55
|
+
"""Initializes an execution instance.
|
56
|
+
|
57
|
+
Args:
|
58
|
+
duration (float | None): The duration of the execution.
|
59
|
+
response (Any): The result or output of the execution.
|
60
|
+
status (EventStatus): The current status (default is PENDING).
|
61
|
+
error (str | None): An optional error message.
|
62
|
+
"""
|
63
|
+
self.status = status
|
64
|
+
self.duration = duration
|
65
|
+
self.response = response
|
66
|
+
self.error = error
|
67
|
+
|
68
|
+
def __str__(self) -> str:
|
69
|
+
"""Returns a string representation of the execution state.
|
70
|
+
|
71
|
+
Returns:
|
72
|
+
str: A descriptive string indicating status, duration, response,
|
73
|
+
and error.
|
74
|
+
"""
|
75
|
+
return (
|
76
|
+
f"Execution(status={self.status.value}, duration={self.duration}, "
|
77
|
+
f"response={self.response}, error={self.error})"
|
78
|
+
)
|
79
|
+
|
80
|
+
|
81
|
+
class Event(Element):
|
82
|
+
"""Extends Element with an execution state.
|
83
|
+
|
84
|
+
Attributes:
|
85
|
+
execution (Execution): The execution state of this event.
|
86
|
+
"""
|
87
|
+
|
88
|
+
execution: Execution = Field(default_factory=Execution)
|
89
|
+
|
90
|
+
@field_serializer("execution")
|
91
|
+
def _serialize_execution(self, val: Execution) -> dict:
|
92
|
+
"""Serializes the Execution object into a dictionary.
|
93
|
+
|
94
|
+
Args:
|
95
|
+
val (Execution): The Execution object to serialize.
|
96
|
+
|
97
|
+
Returns:
|
98
|
+
dict: The serialized data containing status, duration, response,
|
99
|
+
and error fields.
|
100
|
+
"""
|
101
|
+
return {
|
102
|
+
"status": val.status.value,
|
103
|
+
"duration": val.duration,
|
104
|
+
"response": val.response,
|
105
|
+
"error": val.error,
|
106
|
+
}
|
107
|
+
|
108
|
+
@property
|
109
|
+
def response(self) -> Any:
|
110
|
+
"""Gets or sets the execution response.
|
111
|
+
|
112
|
+
Returns:
|
113
|
+
Any: The current response for this event.
|
114
|
+
"""
|
115
|
+
return self.execution.response
|
116
|
+
|
117
|
+
@response.setter
|
118
|
+
def response(self, val: Any) -> None:
|
119
|
+
"""Sets the execution response.
|
120
|
+
|
121
|
+
Args:
|
122
|
+
val (Any): The new response value for this event.
|
123
|
+
"""
|
124
|
+
self.execution.response = val
|
125
|
+
|
126
|
+
@property
|
127
|
+
def status(self) -> EventStatus:
|
128
|
+
"""Gets or sets the event status.
|
129
|
+
|
130
|
+
Returns:
|
131
|
+
EventStatus: The current status of this event.
|
132
|
+
"""
|
133
|
+
return self.execution.status
|
134
|
+
|
135
|
+
@status.setter
|
136
|
+
def status(self, val: EventStatus) -> None:
|
137
|
+
"""Sets the event status.
|
138
|
+
|
139
|
+
Args:
|
140
|
+
val (EventStatus): The new status for the event.
|
141
|
+
"""
|
142
|
+
self.execution.status = val
|
143
|
+
|
144
|
+
@property
|
145
|
+
def request(self) -> dict:
|
146
|
+
"""Gets the request for this event.
|
147
|
+
|
148
|
+
Returns:
|
149
|
+
dict: An empty dictionary by default. Override in subclasses
|
150
|
+
if needed.
|
151
|
+
"""
|
152
|
+
return {}
|
153
|
+
|
154
|
+
async def invoke(self) -> None:
|
155
|
+
"""Performs the event action asynchronously.
|
156
|
+
|
157
|
+
Raises:
|
158
|
+
NotImplementedError: This base method must be overridden by
|
159
|
+
subclasses.
|
160
|
+
"""
|
161
|
+
raise NotImplementedError("Override in subclass.")
|
162
|
+
|
163
|
+
@classmethod
|
164
|
+
def from_dict(cls, data: dict) -> "Event":
|
165
|
+
"""Not implemented. Events cannot be fully recreated once done.
|
166
|
+
|
167
|
+
Args:
|
168
|
+
data (dict): Event data (unused).
|
169
|
+
|
170
|
+
Raises:
|
171
|
+
NotImplementedError: Always, because recreating an event is
|
172
|
+
disallowed.
|
173
|
+
"""
|
174
|
+
raise NotImplementedError("Cannot recreate an event once it's done.")
|
175
|
+
|
176
|
+
|
177
|
+
# File: lionagi/protocols/generic/event.py
|