lionagi 0.4.0__py3-none-any.whl → 0.5.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 +14 -46
- lionagi/core/__init__.py +3 -1
- lionagi/core/_class_registry.py +69 -0
- lionagi/core/action/__init__.py +3 -13
- lionagi/core/action/action_manager.py +287 -0
- lionagi/core/action/base.py +109 -0
- lionagi/core/action/function_calling.py +127 -92
- lionagi/core/action/tool.py +172 -70
- lionagi/core/action/types.py +16 -0
- lionagi/core/communication/__init__.py +3 -0
- lionagi/core/communication/action_request.py +163 -0
- lionagi/core/communication/action_response.py +149 -0
- lionagi/core/communication/assistant_response.py +161 -0
- lionagi/core/communication/base_mail.py +49 -0
- lionagi/core/communication/instruction.py +376 -0
- lionagi/core/communication/message.py +286 -0
- lionagi/core/communication/message_manager.py +530 -0
- lionagi/core/communication/system.py +116 -0
- lionagi/core/communication/templates/README.md +28 -0
- lionagi/core/communication/templates/action_request.jinja2 +5 -0
- lionagi/core/communication/templates/action_response.jinja2 +9 -0
- lionagi/core/communication/templates/assistant_response.jinja2 +2 -0
- lionagi/core/communication/templates/instruction_message.jinja2 +61 -0
- lionagi/core/communication/templates/system_message.jinja2 +11 -0
- lionagi/core/communication/templates/tool_schemas.jinja2 +7 -0
- lionagi/core/communication/types.py +27 -0
- lionagi/core/communication/utils.py +254 -0
- lionagi/core/forms/__init__.py +3 -0
- lionagi/core/forms/base.py +232 -0
- lionagi/core/forms/form.py +791 -0
- lionagi/core/forms/report.py +321 -0
- lionagi/core/forms/types.py +13 -0
- lionagi/core/forms/utils.py +26 -0
- lionagi/core/generic/__init__.py +3 -6
- lionagi/core/generic/component.py +422 -0
- lionagi/core/generic/edge.py +143 -101
- lionagi/core/generic/element.py +195 -0
- lionagi/core/generic/graph.py +297 -180
- lionagi/core/generic/log.py +151 -0
- lionagi/core/generic/log_manager.py +320 -0
- lionagi/core/generic/node.py +7 -229
- lionagi/core/generic/pile.py +1017 -0
- lionagi/core/generic/progression.py +388 -0
- lionagi/core/generic/types.py +23 -0
- lionagi/core/generic/utils.py +50 -0
- lionagi/core/models/__init__.py +5 -0
- lionagi/core/models/base.py +85 -0
- lionagi/core/models/field_model.py +122 -0
- lionagi/core/models/new_model_params.py +195 -0
- lionagi/core/models/note.py +351 -0
- lionagi/core/models/operable_model.py +392 -0
- lionagi/core/models/schema_model.py +50 -0
- lionagi/core/models/types.py +10 -0
- lionagi/core/session/__init__.py +3 -0
- lionagi/core/session/branch.py +115 -415
- lionagi/core/session/branch_mixins.py +507 -0
- lionagi/core/session/session.py +122 -257
- lionagi/core/session/types.py +8 -0
- lionagi/core/typing/__init__.py +9 -0
- lionagi/core/typing/concepts.py +132 -0
- lionagi/core/typing/config.py +15 -0
- lionagi/core/typing/id.py +221 -0
- lionagi/core/typing/pydantic_.py +33 -0
- lionagi/core/typing/typing_.py +54 -0
- lionagi/integrations/__init__.py +0 -1
- lionagi/integrations/anthropic_/AnthropicModel.py +268 -0
- lionagi/integrations/anthropic_/AnthropicService.py +113 -0
- lionagi/integrations/anthropic_/__init__.py +3 -0
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +7 -0
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +14 -0
- lionagi/integrations/anthropic_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +277 -0
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +40 -0
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +119 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +14 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +74 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +32 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +101 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +25 -0
- lionagi/integrations/anthropic_/version.py +5 -0
- lionagi/integrations/groq_/GroqModel.py +318 -0
- lionagi/integrations/groq_/GroqService.py +147 -0
- lionagi/integrations/groq_/__init__.py +3 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +187 -0
- lionagi/integrations/groq_/api_endpoints/groq_request.py +288 -0
- lionagi/integrations/groq_/api_endpoints/match_response.py +106 -0
- lionagi/integrations/groq_/api_endpoints/response_utils.py +105 -0
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +21 -0
- lionagi/integrations/groq_/groq_price_data.yaml +58 -0
- lionagi/integrations/groq_/groq_rate_limits.yaml +105 -0
- lionagi/integrations/groq_/version.py +5 -0
- lionagi/integrations/litellm_/__init__.py +3 -0
- lionagi/integrations/litellm_/imodel.py +69 -0
- lionagi/integrations/ollama_/OllamaModel.py +244 -0
- lionagi/integrations/ollama_/OllamaService.py +138 -0
- lionagi/integrations/ollama_/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/api_request.py +179 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +31 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +46 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +67 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +49 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +72 -0
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +59 -0
- lionagi/integrations/ollama_/api_endpoints/data_models.py +15 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +33 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +29 -0
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +62 -0
- lionagi/integrations/ollama_/api_endpoints/match_response.py +190 -0
- lionagi/integrations/ollama_/api_endpoints/model/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +13 -0
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +28 -0
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +11 -0
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +60 -0
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +34 -0
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +35 -0
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +36 -0
- lionagi/integrations/ollama_/api_endpoints/option_models.py +68 -0
- lionagi/integrations/openai_/OpenAIModel.py +414 -0
- lionagi/integrations/openai_/OpenAIService.py +426 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/api_request.py +277 -0
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +9 -0
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +34 -0
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +136 -0
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +41 -0
- lionagi/integrations/openai_/api_endpoints/audio/types.py +41 -0
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +17 -0
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +146 -0
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +7 -0
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +26 -0
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +37 -0
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +65 -0
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +7 -0
- lionagi/integrations/openai_/api_endpoints/batch/types.py +4 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +1 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +39 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +121 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +221 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +71 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +14 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +17 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +54 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +18 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +62 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +16 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +47 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +25 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +99 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +8 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +24 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +46 -0
- lionagi/integrations/openai_/api_endpoints/data_models.py +23 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +79 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +67 -0
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +11 -0
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +20 -0
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +27 -0
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +9 -0
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +38 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +37 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +9 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +133 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +58 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +31 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +140 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +51 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +42 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +31 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +9 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +30 -0
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +9 -0
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +69 -0
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +30 -0
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +197 -0
- lionagi/integrations/openai_/api_endpoints/match_response.py +336 -0
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +7 -0
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +17 -0
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +31 -0
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +9 -0
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +20 -0
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +139 -0
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +19 -0
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +11 -0
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +7 -0
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +18 -0
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +17 -0
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +52 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +92 -0
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +15 -0
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +12 -0
- lionagi/integrations/openai_/openai_price_data.yaml +26 -0
- lionagi/integrations/openai_/version.py +1 -0
- lionagi/integrations/pandas_/__init__.py +24 -0
- lionagi/integrations/pandas_/extend_df.py +61 -0
- lionagi/integrations/pandas_/read.py +103 -0
- lionagi/integrations/pandas_/remove_rows.py +61 -0
- lionagi/integrations/pandas_/replace_keywords.py +65 -0
- lionagi/integrations/pandas_/save.py +131 -0
- lionagi/integrations/pandas_/search_keywords.py +69 -0
- lionagi/integrations/pandas_/to_df.py +196 -0
- lionagi/integrations/pandas_/update_cells.py +54 -0
- lionagi/integrations/perplexity_/PerplexityModel.py +269 -0
- lionagi/integrations/perplexity_/PerplexityService.py +109 -0
- lionagi/integrations/perplexity_/__init__.py +3 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +171 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +121 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +146 -0
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +63 -0
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +26 -0
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +3 -0
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +10 -0
- lionagi/integrations/perplexity_/version.py +1 -0
- lionagi/integrations/pydantic_/__init__.py +8 -0
- lionagi/integrations/pydantic_/break_down_annotation.py +81 -0
- lionagi/integrations/pydantic_/new_model.py +208 -0
- lionagi/integrations/services.py +17 -0
- lionagi/libs/__init__.py +0 -55
- lionagi/libs/compress/models.py +62 -0
- lionagi/libs/compress/utils.py +81 -0
- lionagi/libs/constants.py +98 -0
- lionagi/libs/file/chunk.py +265 -0
- lionagi/libs/file/file_ops.py +114 -0
- lionagi/libs/file/params.py +212 -0
- lionagi/libs/file/path.py +301 -0
- lionagi/libs/file/process.py +139 -0
- lionagi/libs/file/save.py +90 -0
- lionagi/libs/file/types.py +22 -0
- lionagi/libs/func/async_calls/__init__.py +21 -0
- lionagi/libs/func/async_calls/alcall.py +157 -0
- lionagi/libs/func/async_calls/bcall.py +82 -0
- lionagi/libs/func/async_calls/mcall.py +134 -0
- lionagi/libs/func/async_calls/pcall.py +149 -0
- lionagi/libs/func/async_calls/rcall.py +185 -0
- lionagi/libs/func/async_calls/tcall.py +114 -0
- lionagi/libs/func/async_calls/ucall.py +85 -0
- lionagi/libs/func/decorators.py +277 -0
- lionagi/libs/func/lcall.py +57 -0
- lionagi/libs/func/params.py +64 -0
- lionagi/libs/func/throttle.py +119 -0
- lionagi/libs/func/types.py +39 -0
- lionagi/libs/func/utils.py +96 -0
- lionagi/libs/package/imports.py +162 -0
- lionagi/libs/package/management.py +58 -0
- lionagi/libs/package/params.py +26 -0
- lionagi/libs/package/system.py +18 -0
- lionagi/libs/package/types.py +26 -0
- lionagi/libs/parse/__init__.py +1 -0
- lionagi/libs/parse/flatten/__init__.py +9 -0
- lionagi/libs/parse/flatten/flatten.py +168 -0
- lionagi/libs/parse/flatten/params.py +52 -0
- lionagi/libs/parse/flatten/unflatten.py +79 -0
- lionagi/libs/parse/json/__init__.py +27 -0
- lionagi/libs/parse/json/as_readable.py +104 -0
- lionagi/libs/parse/json/extract.py +102 -0
- lionagi/libs/parse/json/parse.py +179 -0
- lionagi/libs/parse/json/schema.py +227 -0
- lionagi/libs/parse/json/to_json.py +71 -0
- lionagi/libs/parse/nested/__init__.py +33 -0
- lionagi/libs/parse/nested/nfilter.py +55 -0
- lionagi/libs/parse/nested/nget.py +40 -0
- lionagi/libs/parse/nested/ninsert.py +103 -0
- lionagi/libs/parse/nested/nmerge.py +155 -0
- lionagi/libs/parse/nested/npop.py +66 -0
- lionagi/libs/parse/nested/nset.py +89 -0
- lionagi/libs/parse/nested/to_flat_list.py +64 -0
- lionagi/libs/parse/nested/utils.py +185 -0
- lionagi/libs/parse/string_parse/__init__.py +11 -0
- lionagi/libs/parse/string_parse/code_block.py +73 -0
- lionagi/libs/parse/string_parse/docstring.py +179 -0
- lionagi/libs/parse/string_parse/function_.py +92 -0
- lionagi/libs/parse/type_convert/__init__.py +19 -0
- lionagi/libs/parse/type_convert/params.py +145 -0
- lionagi/libs/parse/type_convert/to_dict.py +333 -0
- lionagi/libs/parse/type_convert/to_list.py +186 -0
- lionagi/libs/parse/type_convert/to_num.py +358 -0
- lionagi/libs/parse/type_convert/to_str.py +195 -0
- lionagi/libs/parse/types.py +9 -0
- lionagi/libs/parse/validate/__init__.py +14 -0
- lionagi/libs/parse/validate/boolean.py +96 -0
- lionagi/libs/parse/validate/keys.py +150 -0
- lionagi/libs/parse/validate/mapping.py +109 -0
- lionagi/libs/parse/validate/params.py +62 -0
- lionagi/libs/parse/xml/__init__.py +10 -0
- lionagi/libs/parse/xml/convert.py +56 -0
- lionagi/libs/parse/xml/parser.py +93 -0
- lionagi/libs/string_similarity/__init__.py +32 -0
- lionagi/libs/string_similarity/algorithms.py +219 -0
- lionagi/libs/string_similarity/matcher.py +102 -0
- lionagi/libs/string_similarity/utils.py +15 -0
- lionagi/libs/utils.py +255 -0
- lionagi/operations/__init__.py +3 -6
- lionagi/operations/brainstorm/__init__.py +3 -0
- lionagi/operations/brainstorm/brainstorm.py +204 -0
- lionagi/operations/brainstorm/prompt.py +1 -0
- lionagi/operations/plan/__init__.py +3 -0
- lionagi/operations/plan/plan.py +172 -0
- lionagi/operations/plan/prompt.py +21 -0
- lionagi/operations/select/__init__.py +3 -0
- lionagi/operations/select/prompt.py +1 -0
- lionagi/operations/select/select.py +100 -0
- lionagi/operations/select/utils.py +107 -0
- lionagi/operations/utils.py +35 -0
- lionagi/protocols/adapters/adapter.py +79 -0
- lionagi/protocols/adapters/json_adapter.py +43 -0
- lionagi/protocols/adapters/pandas_adapter.py +96 -0
- lionagi/protocols/configs/__init__.py +15 -0
- lionagi/protocols/configs/branch_config.py +86 -0
- lionagi/protocols/configs/id_config.py +15 -0
- lionagi/protocols/configs/imodel_config.py +73 -0
- lionagi/protocols/configs/log_config.py +93 -0
- lionagi/protocols/configs/retry_config.py +29 -0
- lionagi/protocols/operatives/__init__.py +15 -0
- lionagi/protocols/operatives/action.py +181 -0
- lionagi/protocols/operatives/instruct.py +196 -0
- lionagi/protocols/operatives/operative.py +182 -0
- lionagi/protocols/operatives/prompts.py +232 -0
- lionagi/protocols/operatives/reason.py +56 -0
- lionagi/protocols/operatives/step.py +217 -0
- lionagi/protocols/registries/_component_registry.py +19 -0
- lionagi/protocols/registries/_pile_registry.py +26 -0
- lionagi/service/__init__.py +13 -0
- lionagi/service/complete_request_info.py +11 -0
- lionagi/service/imodel.py +110 -0
- lionagi/service/rate_limiter.py +108 -0
- lionagi/service/service.py +37 -0
- lionagi/service/service_match_util.py +131 -0
- lionagi/service/service_util.py +72 -0
- lionagi/service/token_calculator.py +51 -0
- lionagi/settings.py +136 -0
- lionagi/strategies/base.py +53 -0
- lionagi/strategies/concurrent.py +71 -0
- lionagi/strategies/concurrent_chunk.py +43 -0
- lionagi/strategies/concurrent_sequential_chunk.py +104 -0
- lionagi/strategies/params.py +128 -0
- lionagi/strategies/sequential.py +23 -0
- lionagi/strategies/sequential_chunk.py +89 -0
- lionagi/strategies/sequential_concurrent_chunk.py +100 -0
- lionagi/strategies/types.py +21 -0
- lionagi/strategies/utils.py +49 -0
- lionagi/version.py +1 -1
- lionagi-0.5.0.dist-info/METADATA +348 -0
- lionagi-0.5.0.dist-info/RECORD +373 -0
- {lionagi-0.4.0.dist-info → lionagi-0.5.0.dist-info}/WHEEL +1 -1
- lionagi/core/_setting/_setting.py +0 -59
- lionagi/core/action/README.md +0 -20
- lionagi/core/action/manual.py +0 -1
- lionagi/core/action/node.py +0 -94
- lionagi/core/action/tool_manager.py +0 -342
- lionagi/core/agent/README.md +0 -1
- lionagi/core/agent/base_agent.py +0 -82
- lionagi/core/agent/eval/README.md +0 -1
- lionagi/core/agent/eval/evaluator.py +0 -1
- lionagi/core/agent/eval/vote.py +0 -40
- lionagi/core/agent/learn/learner.py +0 -59
- lionagi/core/agent/plan/unit_template.py +0 -1
- lionagi/core/collections/README.md +0 -23
- lionagi/core/collections/__init__.py +0 -16
- lionagi/core/collections/_logger.py +0 -312
- lionagi/core/collections/abc/README.md +0 -63
- lionagi/core/collections/abc/__init__.py +0 -53
- lionagi/core/collections/abc/component.py +0 -620
- lionagi/core/collections/abc/concepts.py +0 -277
- lionagi/core/collections/abc/exceptions.py +0 -136
- lionagi/core/collections/abc/util.py +0 -45
- lionagi/core/collections/exchange.py +0 -146
- lionagi/core/collections/flow.py +0 -416
- lionagi/core/collections/model.py +0 -465
- lionagi/core/collections/pile.py +0 -1232
- lionagi/core/collections/progression.py +0 -221
- lionagi/core/collections/util.py +0 -73
- lionagi/core/director/README.md +0 -1
- lionagi/core/director/direct.py +0 -298
- lionagi/core/director/director.py +0 -2
- lionagi/core/director/operations/select.py +0 -3
- lionagi/core/director/operations/utils.py +0 -6
- lionagi/core/engine/branch_engine.py +0 -361
- lionagi/core/engine/instruction_map_engine.py +0 -213
- lionagi/core/engine/sandbox_.py +0 -16
- lionagi/core/engine/script_engine.py +0 -89
- lionagi/core/executor/base_executor.py +0 -97
- lionagi/core/executor/graph_executor.py +0 -335
- lionagi/core/executor/neo4j_executor.py +0 -394
- lionagi/core/generic/README.md +0 -0
- lionagi/core/generic/edge_condition.py +0 -17
- lionagi/core/generic/hyperedge.py +0 -1
- lionagi/core/generic/tree.py +0 -49
- lionagi/core/generic/tree_node.py +0 -85
- lionagi/core/mail/__init__.py +0 -11
- lionagi/core/mail/mail.py +0 -26
- lionagi/core/mail/mail_manager.py +0 -185
- lionagi/core/mail/package.py +0 -49
- lionagi/core/mail/start_mail.py +0 -36
- lionagi/core/message/__init__.py +0 -18
- lionagi/core/message/action_request.py +0 -114
- lionagi/core/message/action_response.py +0 -121
- lionagi/core/message/assistant_response.py +0 -80
- lionagi/core/message/instruction.py +0 -194
- lionagi/core/message/message.py +0 -86
- lionagi/core/message/system.py +0 -71
- lionagi/core/message/util.py +0 -274
- lionagi/core/report/__init__.py +0 -4
- lionagi/core/report/base.py +0 -201
- lionagi/core/report/form.py +0 -212
- lionagi/core/report/report.py +0 -150
- lionagi/core/report/util.py +0 -15
- lionagi/core/rule/_default.py +0 -17
- lionagi/core/rule/action.py +0 -87
- lionagi/core/rule/base.py +0 -234
- lionagi/core/rule/boolean.py +0 -56
- lionagi/core/rule/choice.py +0 -48
- lionagi/core/rule/mapping.py +0 -82
- lionagi/core/rule/number.py +0 -73
- lionagi/core/rule/rulebook.py +0 -45
- lionagi/core/rule/string.py +0 -43
- lionagi/core/rule/util.py +0 -0
- lionagi/core/session/directive_mixin.py +0 -307
- lionagi/core/structure/__init__.py +0 -1
- lionagi/core/structure/chain.py +0 -1
- lionagi/core/structure/forest.py +0 -1
- lionagi/core/structure/graph.py +0 -1
- lionagi/core/structure/tree.py +0 -1
- lionagi/core/unit/__init__.py +0 -4
- lionagi/core/unit/parallel_unit.py +0 -234
- lionagi/core/unit/template/action.py +0 -65
- lionagi/core/unit/template/base.py +0 -35
- lionagi/core/unit/template/plan.py +0 -69
- lionagi/core/unit/template/predict.py +0 -95
- lionagi/core/unit/template/score.py +0 -108
- lionagi/core/unit/template/select.py +0 -91
- lionagi/core/unit/unit.py +0 -452
- lionagi/core/unit/unit_form.py +0 -290
- lionagi/core/unit/unit_mixin.py +0 -1166
- lionagi/core/unit/util.py +0 -103
- lionagi/core/validator/validator.py +0 -376
- lionagi/core/work/work.py +0 -59
- lionagi/core/work/work_edge.py +0 -102
- lionagi/core/work/work_function.py +0 -114
- lionagi/core/work/work_function_node.py +0 -50
- lionagi/core/work/work_queue.py +0 -90
- lionagi/core/work/work_task.py +0 -151
- lionagi/core/work/worker.py +0 -410
- lionagi/core/work/worker_engine.py +0 -208
- lionagi/core/work/worklog.py +0 -108
- lionagi/experimental/compressor/base.py +0 -47
- lionagi/experimental/compressor/llm_compressor.py +0 -265
- lionagi/experimental/compressor/llm_summarizer.py +0 -61
- lionagi/experimental/compressor/util.py +0 -70
- lionagi/experimental/directive/README.md +0 -1
- lionagi/experimental/directive/__init__.py +0 -19
- lionagi/experimental/directive/parser/base_parser.py +0 -294
- lionagi/experimental/directive/parser/base_syntax.txt +0 -200
- lionagi/experimental/directive/template/base_template.py +0 -71
- lionagi/experimental/directive/template/schema.py +0 -36
- lionagi/experimental/directive/tokenizer.py +0 -59
- lionagi/experimental/evaluator/README.md +0 -1
- lionagi/experimental/evaluator/ast_evaluator.py +0 -119
- lionagi/experimental/evaluator/base_evaluator.py +0 -213
- lionagi/experimental/knowledge/__init__.py +0 -0
- lionagi/experimental/knowledge/base.py +0 -10
- lionagi/experimental/knowledge/graph.py +0 -0
- lionagi/experimental/memory/__init__.py +0 -0
- lionagi/experimental/strategies/__init__.py +0 -0
- lionagi/experimental/strategies/base.py +0 -1
- lionagi/integrations/bridge/__init__.py +0 -4
- lionagi/integrations/bridge/autogen_/__init__.py +0 -0
- lionagi/integrations/bridge/autogen_/autogen_.py +0 -127
- lionagi/integrations/bridge/langchain_/__init__.py +0 -0
- lionagi/integrations/bridge/langchain_/documents.py +0 -138
- lionagi/integrations/bridge/langchain_/langchain_bridge.py +0 -68
- lionagi/integrations/bridge/llamaindex_/__init__.py +0 -0
- lionagi/integrations/bridge/llamaindex_/index.py +0 -36
- lionagi/integrations/bridge/llamaindex_/llama_index_bridge.py +0 -108
- lionagi/integrations/bridge/llamaindex_/llama_pack.py +0 -256
- lionagi/integrations/bridge/llamaindex_/node_parser.py +0 -92
- lionagi/integrations/bridge/llamaindex_/reader.py +0 -201
- lionagi/integrations/bridge/llamaindex_/textnode.py +0 -59
- lionagi/integrations/bridge/pydantic_/__init__.py +0 -0
- lionagi/integrations/bridge/pydantic_/pydantic_bridge.py +0 -7
- lionagi/integrations/bridge/transformers_/__init__.py +0 -0
- lionagi/integrations/bridge/transformers_/install_.py +0 -39
- lionagi/integrations/chunker/__init__.py +0 -0
- lionagi/integrations/chunker/chunk.py +0 -314
- lionagi/integrations/config/__init__.py +0 -4
- lionagi/integrations/config/mlx_configs.py +0 -1
- lionagi/integrations/config/oai_configs.py +0 -154
- lionagi/integrations/config/ollama_configs.py +0 -1
- lionagi/integrations/config/openrouter_configs.py +0 -74
- lionagi/integrations/langchain_/__init__.py +0 -0
- lionagi/integrations/llamaindex_/__init__.py +0 -0
- lionagi/integrations/loader/__init__.py +0 -0
- lionagi/integrations/loader/load.py +0 -257
- lionagi/integrations/loader/load_util.py +0 -214
- lionagi/integrations/provider/__init__.py +0 -11
- lionagi/integrations/provider/_mapping.py +0 -47
- lionagi/integrations/provider/litellm.py +0 -53
- lionagi/integrations/provider/mistralai.py +0 -1
- lionagi/integrations/provider/mlx_service.py +0 -55
- lionagi/integrations/provider/oai.py +0 -196
- lionagi/integrations/provider/ollama.py +0 -55
- lionagi/integrations/provider/openrouter.py +0 -170
- lionagi/integrations/provider/services.py +0 -138
- lionagi/integrations/provider/transformers.py +0 -108
- lionagi/integrations/storage/__init__.py +0 -3
- lionagi/integrations/storage/neo4j.py +0 -681
- lionagi/integrations/storage/storage_util.py +0 -302
- lionagi/integrations/storage/structure_excel.py +0 -291
- lionagi/integrations/storage/to_csv.py +0 -70
- lionagi/integrations/storage/to_excel.py +0 -91
- lionagi/libs/ln_api.py +0 -944
- lionagi/libs/ln_async.py +0 -208
- lionagi/libs/ln_context.py +0 -37
- lionagi/libs/ln_convert.py +0 -671
- lionagi/libs/ln_dataframe.py +0 -187
- lionagi/libs/ln_func_call.py +0 -1328
- lionagi/libs/ln_image.py +0 -114
- lionagi/libs/ln_knowledge_graph.py +0 -422
- lionagi/libs/ln_nested.py +0 -822
- lionagi/libs/ln_parse.py +0 -750
- lionagi/libs/ln_queue.py +0 -107
- lionagi/libs/ln_tokenize.py +0 -179
- lionagi/libs/ln_validate.py +0 -299
- lionagi/libs/special_tokens.py +0 -172
- lionagi/libs/sys_util.py +0 -710
- lionagi/lions/__init__.py +0 -0
- lionagi/lions/coder/__init__.py +0 -0
- lionagi/lions/coder/add_feature.py +0 -20
- lionagi/lions/coder/base_prompts.py +0 -22
- lionagi/lions/coder/code_form.py +0 -15
- lionagi/lions/coder/coder.py +0 -184
- lionagi/lions/coder/util.py +0 -101
- lionagi/lions/director/__init__.py +0 -0
- lionagi/lions/judge/__init__.py +0 -0
- lionagi/lions/judge/config.py +0 -8
- lionagi/lions/judge/data/__init__.py +0 -0
- lionagi/lions/judge/data/sample_codes.py +0 -526
- lionagi/lions/judge/data/sample_rurbic.py +0 -48
- lionagi/lions/judge/forms/__init__.py +0 -0
- lionagi/lions/judge/forms/code_analysis_form.py +0 -126
- lionagi/lions/judge/rubric.py +0 -34
- lionagi/lions/judge/services/__init__.py +0 -0
- lionagi/lions/judge/services/judge_code.py +0 -49
- lionagi/lions/researcher/__init__.py +0 -0
- lionagi/lions/researcher/data_source/__init__.py +0 -0
- lionagi/lions/researcher/data_source/finhub_.py +0 -192
- lionagi/lions/researcher/data_source/google_.py +0 -207
- lionagi/lions/researcher/data_source/wiki_.py +0 -98
- lionagi/lions/researcher/data_source/yfinance_.py +0 -21
- lionagi/operations/brainstorm.py +0 -87
- lionagi/operations/config.py +0 -6
- lionagi/operations/rank.py +0 -102
- lionagi/operations/score.py +0 -144
- lionagi/operations/select.py +0 -141
- lionagi-0.4.0.dist-info/METADATA +0 -241
- lionagi-0.4.0.dist-info/RECORD +0 -249
- /lionagi/{core/_setting → integrations/anthropic_/api_endpoints/messages/response}/__init__.py +0 -0
- /lionagi/{core/agent → integrations/groq_/api_endpoints}/__init__.py +0 -0
- /lionagi/{core/agent/eval → integrations/ollama_/api_endpoints/completion}/__init__.py +0 -0
- /lionagi/{core/agent/learn → integrations/ollama_/api_endpoints/embedding}/__init__.py +0 -0
- /lionagi/{core/agent/plan → integrations/openai_}/__init__.py +0 -0
- /lionagi/{core/director → integrations/openai_/api_endpoints/chat_completions/response}/__init__.py +0 -0
- /lionagi/{core/director/operations → integrations/openai_/image_token_calculator}/__init__.py +0 -0
- /lionagi/{core/engine → integrations/perplexity_/api_endpoints}/__init__.py +0 -0
- /lionagi/{core/executor → integrations/perplexity_/api_endpoints/chat_completions}/__init__.py +0 -0
- /lionagi/{core/generic/registry/component_registry → integrations/perplexity_/api_endpoints/chat_completions/request}/__init__.py +0 -0
- /lionagi/{core/rule → integrations/perplexity_/api_endpoints/chat_completions/response}/__init__.py +0 -0
- /lionagi/{core/unit/template → libs/compress}/__init__.py +0 -0
- /lionagi/{core/validator → libs/file}/__init__.py +0 -0
- /lionagi/{core/work → libs/func}/__init__.py +0 -0
- /lionagi/{experimental → libs/package}/__init__.py +0 -0
- /lionagi/{core/agent/plan/plan.py → libs/parse/params.py} +0 -0
- /lionagi/{experimental/compressor → protocols}/__init__.py +0 -0
- /lionagi/{experimental/directive/parser → protocols/adapters}/__init__.py +0 -0
- /lionagi/{experimental/directive/template → protocols/registries}/__init__.py +0 -0
- /lionagi/{experimental/evaluator → strategies}/__init__.py +0 -0
- {lionagi-0.4.0.dist-info → lionagi-0.5.0.dist-info/licenses}/LICENSE +0 -0
lionagi/core/unit/util.py
DELETED
@@ -1,103 +0,0 @@
|
|
1
|
-
import inspect
|
2
|
-
from typing import get_args
|
3
|
-
|
4
|
-
from pydantic import BaseModel
|
5
|
-
|
6
|
-
retry_kwargs = {
|
7
|
-
"retries": 0, # kwargs for rcall, number of retries if failed
|
8
|
-
"delay": 0, # number of seconds to delay before retrying
|
9
|
-
"backoff_factor": 1, # exponential backoff factor, default 1 (no backoff)
|
10
|
-
"default": None, # default value to return if all retries failed
|
11
|
-
"timeout": None, # timeout for the rcall, default None (no timeout)
|
12
|
-
"timing": False, # if timing will return a tuple (output, duration)
|
13
|
-
}
|
14
|
-
|
15
|
-
oai_fields = [
|
16
|
-
"id",
|
17
|
-
"object",
|
18
|
-
"created",
|
19
|
-
"model",
|
20
|
-
"choices",
|
21
|
-
"usage",
|
22
|
-
"system_fingerprint",
|
23
|
-
]
|
24
|
-
|
25
|
-
choices_fields = ["index", "message", "logprobs", "finish_reason"]
|
26
|
-
|
27
|
-
usage_fields = ["prompt_tokens", "completion_tokens", "total_tokens"]
|
28
|
-
|
29
|
-
from collections.abc import Callable
|
30
|
-
|
31
|
-
from lionagi.core.action.tool import Tool
|
32
|
-
from lionagi.core.action.tool_manager import func_to_tool
|
33
|
-
|
34
|
-
|
35
|
-
def process_tools(tool_obj, branch):
|
36
|
-
if isinstance(tool_obj, Callable):
|
37
|
-
_process_tool(tool_obj, branch)
|
38
|
-
else:
|
39
|
-
if isinstance(tool_obj, bool):
|
40
|
-
return
|
41
|
-
for i in tool_obj:
|
42
|
-
_process_tool(i, branch)
|
43
|
-
|
44
|
-
|
45
|
-
def _process_tool(tool_obj, branch):
|
46
|
-
if (
|
47
|
-
isinstance(tool_obj, Tool)
|
48
|
-
and tool_obj.schema_["function"]["name"]
|
49
|
-
not in branch.tool_manager.registry
|
50
|
-
):
|
51
|
-
branch.register_tools(tool_obj)
|
52
|
-
if isinstance(tool_obj, Callable):
|
53
|
-
tool = func_to_tool(tool_obj)[0]
|
54
|
-
if (
|
55
|
-
tool.schema_["function"]["name"]
|
56
|
-
not in branch.tool_manager.registry
|
57
|
-
):
|
58
|
-
branch.register_tools(tool)
|
59
|
-
|
60
|
-
|
61
|
-
async def _direct(
|
62
|
-
directive,
|
63
|
-
form=None,
|
64
|
-
template=None,
|
65
|
-
reason=False,
|
66
|
-
confidence_score=None,
|
67
|
-
instruction=None,
|
68
|
-
context=None,
|
69
|
-
template_kwargs={},
|
70
|
-
**kwargs,
|
71
|
-
):
|
72
|
-
if not form:
|
73
|
-
form = template(
|
74
|
-
instruction=instruction,
|
75
|
-
context=context,
|
76
|
-
confidence_score=confidence_score,
|
77
|
-
reason=reason,
|
78
|
-
**template_kwargs,
|
79
|
-
)
|
80
|
-
|
81
|
-
return await directive.direct(form=form, return_form=True, **kwargs)
|
82
|
-
|
83
|
-
|
84
|
-
def break_down_annotation(model: type[BaseModel]):
|
85
|
-
|
86
|
-
def _ispydantic_model(x):
|
87
|
-
return inspect.isclass(x) and issubclass(x, BaseModel)
|
88
|
-
|
89
|
-
if not _ispydantic_model(model):
|
90
|
-
return model
|
91
|
-
|
92
|
-
out = {}
|
93
|
-
for k, v in model.__annotations__.items():
|
94
|
-
if _ispydantic_model(v):
|
95
|
-
out[k] = break_down_annotation(v)
|
96
|
-
elif "list" in str(v) and get_args(v):
|
97
|
-
v = get_args(v)[0]
|
98
|
-
if _ispydantic_model(v):
|
99
|
-
v = break_down_annotation(v)
|
100
|
-
out[k] = [v]
|
101
|
-
else:
|
102
|
-
out[k] = v
|
103
|
-
return out
|
@@ -1,376 +0,0 @@
|
|
1
|
-
import asyncio
|
2
|
-
from collections.abc import Callable
|
3
|
-
from typing import Any, Dict, List, Union
|
4
|
-
|
5
|
-
from lionfuncs import lcall
|
6
|
-
|
7
|
-
from lionagi.core.collections.abc import FieldError
|
8
|
-
from lionagi.libs import SysUtil
|
9
|
-
|
10
|
-
from ..report.form import Form
|
11
|
-
from ..report.report import Report
|
12
|
-
from ..rule._default import DEFAULT_RULES
|
13
|
-
from ..rule.base import Rule
|
14
|
-
from ..rule.rulebook import RuleBook
|
15
|
-
|
16
|
-
_DEFAULT_RULEORDER = [
|
17
|
-
"choice",
|
18
|
-
"actionrequest",
|
19
|
-
"number",
|
20
|
-
"mapping",
|
21
|
-
"str",
|
22
|
-
"bool",
|
23
|
-
]
|
24
|
-
|
25
|
-
_DEFAULT_RULES = {
|
26
|
-
"choice": DEFAULT_RULES.CHOICE.value,
|
27
|
-
"actionrequest": DEFAULT_RULES.ACTION.value,
|
28
|
-
"bool": DEFAULT_RULES.BOOL.value,
|
29
|
-
"number": DEFAULT_RULES.NUMBER.value,
|
30
|
-
"mapping": DEFAULT_RULES.MAPPING.value,
|
31
|
-
"str": DEFAULT_RULES.STR.value,
|
32
|
-
}
|
33
|
-
|
34
|
-
|
35
|
-
class Validator:
|
36
|
-
"""
|
37
|
-
Validator class to manage the validation of forms using a RuleBook.
|
38
|
-
"""
|
39
|
-
|
40
|
-
def __init__(
|
41
|
-
self,
|
42
|
-
*,
|
43
|
-
rulebook: RuleBook = None,
|
44
|
-
rules: dict[str, Rule] = None,
|
45
|
-
order: list[str] = None,
|
46
|
-
init_config: dict[str, dict] = None,
|
47
|
-
active_rules: dict[str, Rule] = None,
|
48
|
-
formatter: Callable = None,
|
49
|
-
format_kwargs: dict = {},
|
50
|
-
):
|
51
|
-
"""
|
52
|
-
Initialize the Validator.
|
53
|
-
|
54
|
-
Args:
|
55
|
-
rulebook (RuleBook, optional): The RuleBook containing validation rules.
|
56
|
-
rules (Dict[str, Rule], optional): Dictionary of validation rules.
|
57
|
-
order (List[str], optional): List defining the order of rule application.
|
58
|
-
init_config (Dict[str, Dict], optional): Configuration for initializing rules.
|
59
|
-
active_rules (Dict[str, Rule], optional): Dictionary of currently active rules.
|
60
|
-
"""
|
61
|
-
|
62
|
-
self.ln_id: str = SysUtil.create_id()
|
63
|
-
self.timestamp: str = SysUtil.get_timestamp(sep=None)[:-6]
|
64
|
-
self.rulebook = rulebook or RuleBook(
|
65
|
-
rules or _DEFAULT_RULES, order or _DEFAULT_RULEORDER, init_config
|
66
|
-
)
|
67
|
-
self.active_rules: dict[str, Rule] = (
|
68
|
-
active_rules or self._initiate_rules()
|
69
|
-
)
|
70
|
-
self.validation_log = []
|
71
|
-
self.formatter = formatter
|
72
|
-
self.format_kwargs = format_kwargs
|
73
|
-
|
74
|
-
def _initiate_rules(self) -> dict[str, Rule]:
|
75
|
-
"""
|
76
|
-
Initialize rules from the rulebook.
|
77
|
-
|
78
|
-
Returns:
|
79
|
-
dict: A dictionary of active rules.
|
80
|
-
"""
|
81
|
-
|
82
|
-
def _init_rule(rule_name: str) -> Rule:
|
83
|
-
|
84
|
-
if not issubclass(self.rulebook[rule_name], Rule):
|
85
|
-
raise FieldError(
|
86
|
-
f"Invalid rule class for {rule_name}, must be a subclass of Rule"
|
87
|
-
)
|
88
|
-
|
89
|
-
_config = self.rulebook.rule_config[rule_name] or {}
|
90
|
-
if not isinstance(_config, dict):
|
91
|
-
raise FieldError(
|
92
|
-
f"Invalid config for {rule_name}, must be a dictionary"
|
93
|
-
)
|
94
|
-
|
95
|
-
_rule = self.rulebook.rules[rule_name](**_config.get("config", {}))
|
96
|
-
_rule.fields = _config.get("fields", [])
|
97
|
-
_rule._is_init = True
|
98
|
-
return _rule
|
99
|
-
|
100
|
-
_rules = lcall(self.rulebook.ruleorder, _init_rule)
|
101
|
-
|
102
|
-
return {
|
103
|
-
rule_name: _rules[idx]
|
104
|
-
for idx, rule_name in enumerate(self.rulebook.ruleorder)
|
105
|
-
if getattr(_rules[idx], "_is_init", None)
|
106
|
-
}
|
107
|
-
|
108
|
-
async def validate_field(
|
109
|
-
self,
|
110
|
-
field: str,
|
111
|
-
value: Any,
|
112
|
-
form: Form,
|
113
|
-
*args,
|
114
|
-
annotation=None,
|
115
|
-
strict=True,
|
116
|
-
use_annotation=True,
|
117
|
-
**kwargs,
|
118
|
-
) -> Any:
|
119
|
-
"""
|
120
|
-
Validate a specific field in a form.
|
121
|
-
|
122
|
-
Args:
|
123
|
-
field (str): The field to validate.
|
124
|
-
value (Any): The value of the field.
|
125
|
-
form (Form): The form containing the field.
|
126
|
-
*args: Additional arguments.
|
127
|
-
annotation (list[str], optional): Annotations for the field.
|
128
|
-
strict (bool): Whether to enforce strict validation.
|
129
|
-
use_annotation (bool): Whether to use annotations for validation.
|
130
|
-
**kwargs: Additional keyword arguments.
|
131
|
-
|
132
|
-
Returns:
|
133
|
-
Any: The validated value.
|
134
|
-
|
135
|
-
Raises:
|
136
|
-
LionFieldError: If validation fails.
|
137
|
-
"""
|
138
|
-
for rule in self.active_rules.values():
|
139
|
-
try:
|
140
|
-
if await rule.applies(
|
141
|
-
field,
|
142
|
-
value,
|
143
|
-
form,
|
144
|
-
*args,
|
145
|
-
annotation=annotation,
|
146
|
-
use_annotation=use_annotation,
|
147
|
-
**kwargs,
|
148
|
-
):
|
149
|
-
return await rule.invoke(field, value, form)
|
150
|
-
except Exception as e:
|
151
|
-
self.log_validation_error(field, value, str(e))
|
152
|
-
raise FieldError(f"Failed to validate {field}") from e
|
153
|
-
|
154
|
-
if strict:
|
155
|
-
error_message = (
|
156
|
-
f"Failed to validate {field} because no rule applied. To return the "
|
157
|
-
f"original value directly when no rule applies, set strict=False."
|
158
|
-
)
|
159
|
-
self.log_validation_error(field, value, error_message)
|
160
|
-
raise FieldError(error_message)
|
161
|
-
|
162
|
-
async def validate_report(
|
163
|
-
self, report: Report, forms: list[Form], strict: bool = True
|
164
|
-
) -> Report:
|
165
|
-
"""
|
166
|
-
Validate a report based on active rules.
|
167
|
-
|
168
|
-
Args:
|
169
|
-
report (Report): The report to validate.
|
170
|
-
forms (list[Form]): A list of forms to include in the report.
|
171
|
-
strict (bool): Whether to enforce strict validation.
|
172
|
-
|
173
|
-
Returns:
|
174
|
-
Report: The validated report.
|
175
|
-
"""
|
176
|
-
report.fill(forms, strict=strict)
|
177
|
-
return report
|
178
|
-
|
179
|
-
async def validate_response(
|
180
|
-
self,
|
181
|
-
form: Form,
|
182
|
-
response: dict | str,
|
183
|
-
strict: bool = True,
|
184
|
-
use_annotation: bool = True,
|
185
|
-
) -> Form:
|
186
|
-
"""
|
187
|
-
Validate a response for a given form.
|
188
|
-
|
189
|
-
Args:
|
190
|
-
form (Form): The form to validate against.
|
191
|
-
response (dict | str): The response to validate.
|
192
|
-
strict (bool): Whether to enforce strict validation.
|
193
|
-
use_annotation (bool): Whether to use annotations for validation.
|
194
|
-
|
195
|
-
Returns:
|
196
|
-
Form: The validated form.
|
197
|
-
|
198
|
-
Raises:
|
199
|
-
ValueError: If the response format is invalid.
|
200
|
-
"""
|
201
|
-
if isinstance(response, str):
|
202
|
-
if len(form.requested_fields) == 1:
|
203
|
-
response = {form.requested_fields[0]: response}
|
204
|
-
else:
|
205
|
-
if self.formatter:
|
206
|
-
if asyncio.iscoroutinefunction(self.formatter):
|
207
|
-
response = await self.formatter(
|
208
|
-
response, **self.format_kwargs
|
209
|
-
)
|
210
|
-
print("formatter used")
|
211
|
-
else:
|
212
|
-
response = self.formatter(
|
213
|
-
response, **self.format_kwargs
|
214
|
-
)
|
215
|
-
print("formatter used")
|
216
|
-
|
217
|
-
if not isinstance(response, dict):
|
218
|
-
raise ValueError(
|
219
|
-
f"The form response format is invalid for filling."
|
220
|
-
)
|
221
|
-
|
222
|
-
dict_ = {}
|
223
|
-
for k, v in response.items():
|
224
|
-
if k in form.requested_fields:
|
225
|
-
kwargs = form.validation_kwargs.get(k, {})
|
226
|
-
_annotation = form._field_annotations[k]
|
227
|
-
if (
|
228
|
-
keys := form._get_field_attr(k, "choices", None)
|
229
|
-
) is not None:
|
230
|
-
v = await self.validate_field(
|
231
|
-
field=k,
|
232
|
-
value=v,
|
233
|
-
form=form,
|
234
|
-
annotation=_annotation,
|
235
|
-
strict=strict,
|
236
|
-
keys=keys,
|
237
|
-
use_annotation=use_annotation,
|
238
|
-
**kwargs,
|
239
|
-
)
|
240
|
-
|
241
|
-
elif (
|
242
|
-
_keys := form._get_field_attr(k, "keys", None)
|
243
|
-
) is not None:
|
244
|
-
|
245
|
-
v = await self.validate_field(
|
246
|
-
field=k,
|
247
|
-
value=v,
|
248
|
-
form=form,
|
249
|
-
annotation=_annotation,
|
250
|
-
strict=strict,
|
251
|
-
keys=_keys,
|
252
|
-
use_annotation=use_annotation,
|
253
|
-
**kwargs,
|
254
|
-
)
|
255
|
-
|
256
|
-
else:
|
257
|
-
v = await self.validate_field(
|
258
|
-
field=k,
|
259
|
-
value=v,
|
260
|
-
form=form,
|
261
|
-
annotation=_annotation,
|
262
|
-
strict=strict,
|
263
|
-
use_annotation=use_annotation,
|
264
|
-
**kwargs,
|
265
|
-
)
|
266
|
-
dict_[k] = v
|
267
|
-
form.fill(**dict_)
|
268
|
-
return form
|
269
|
-
|
270
|
-
def add_rule(self, rule_name: str, rule: Rule, config: dict = None):
|
271
|
-
"""
|
272
|
-
Add a new rule to the validator.
|
273
|
-
|
274
|
-
Args:
|
275
|
-
rule_name (str): The name of the rule.
|
276
|
-
rule (Rule): The rule object.
|
277
|
-
config (dict, optional): Configuration for the rule.
|
278
|
-
"""
|
279
|
-
if rule_name in self.active_rules:
|
280
|
-
raise ValueError(f"Rule '{rule_name}' already exists.")
|
281
|
-
self.active_rules[rule_name] = rule
|
282
|
-
self.rulebook.rules[rule_name] = rule
|
283
|
-
self.rulebook.ruleorder.append(rule_name)
|
284
|
-
self.rulebook.rule_config[rule_name] = config or {}
|
285
|
-
|
286
|
-
def remove_rule(self, rule_name: str):
|
287
|
-
"""
|
288
|
-
Remove an existing rule from the validator.
|
289
|
-
|
290
|
-
Args:
|
291
|
-
rule_name (str): The name of the rule to remove.
|
292
|
-
"""
|
293
|
-
if rule_name not in self.active_rules:
|
294
|
-
raise ValueError(f"Rule '{rule_name}' does not exist.")
|
295
|
-
del self.active_rules[rule_name]
|
296
|
-
del self.rulebook.rules[rule_name]
|
297
|
-
self.rulebook.ruleorder.remove(rule_name)
|
298
|
-
del self.rulebook.rule_config[rule_name]
|
299
|
-
|
300
|
-
def list_active_rules(self) -> list:
|
301
|
-
"""
|
302
|
-
List all active rules.
|
303
|
-
|
304
|
-
Returns:
|
305
|
-
list: A list of active rule names.
|
306
|
-
"""
|
307
|
-
return list(self.active_rules.keys())
|
308
|
-
|
309
|
-
def enable_rule(self, rule_name: str, enable: bool = True):
|
310
|
-
"""
|
311
|
-
Enable a specific rule.
|
312
|
-
|
313
|
-
Args:
|
314
|
-
rule_name (str): The name of the rule.
|
315
|
-
enable (bool): Whether to enable or disable the rule.
|
316
|
-
"""
|
317
|
-
if rule_name not in self.active_rules:
|
318
|
-
raise ValueError(f"Rule '{rule_name}' does not exist.")
|
319
|
-
self.active_rules[rule_name].enabled = enable
|
320
|
-
|
321
|
-
def disable_rule(self, rule_name: str):
|
322
|
-
"""
|
323
|
-
Disable a specific rule.
|
324
|
-
|
325
|
-
Args:
|
326
|
-
rule_name (str): The name of the rule to disable.
|
327
|
-
"""
|
328
|
-
self.enable_rule(rule_name, enable=False)
|
329
|
-
|
330
|
-
def log_validation_attempt(self, form: Form, result: dict):
|
331
|
-
"""
|
332
|
-
Log a validation attempt.
|
333
|
-
|
334
|
-
Args:
|
335
|
-
form (Form): The form being validated.
|
336
|
-
result (dict): The result of the validation.
|
337
|
-
"""
|
338
|
-
log_entry = {
|
339
|
-
"form_id": form.ln_id,
|
340
|
-
"timestamp": SysUtil.get_timestamp(),
|
341
|
-
"result": result,
|
342
|
-
}
|
343
|
-
self.validation_log.append(log_entry)
|
344
|
-
|
345
|
-
def log_validation_error(self, field: str, value: Any, error: str):
|
346
|
-
"""
|
347
|
-
Log a validation error.
|
348
|
-
|
349
|
-
Args:
|
350
|
-
field (str): The field that failed validation.
|
351
|
-
value (Any): The value of the field.
|
352
|
-
error (str): The error message.
|
353
|
-
"""
|
354
|
-
log_entry = {
|
355
|
-
"field": field,
|
356
|
-
"value": value,
|
357
|
-
"error": error,
|
358
|
-
"timestamp": SysUtil.get_timestamp(),
|
359
|
-
}
|
360
|
-
self.validation_log.append(log_entry)
|
361
|
-
|
362
|
-
def get_validation_summary(self) -> dict[str, Any]:
|
363
|
-
"""
|
364
|
-
Get a summary of validation results.
|
365
|
-
|
366
|
-
Returns:
|
367
|
-
dict: A summary of validation attempts, errors, and successful attempts.
|
368
|
-
"""
|
369
|
-
summary = {
|
370
|
-
"total_attempts": len(self.validation_log),
|
371
|
-
"errors": [log for log in self.validation_log if "error" in log],
|
372
|
-
"successful_attempts": [
|
373
|
-
log for log in self.validation_log if "result" in log
|
374
|
-
],
|
375
|
-
}
|
376
|
-
return summary
|
lionagi/core/work/work.py
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
from collections.abc import Coroutine
|
2
|
-
from enum import Enum
|
3
|
-
from typing import Any
|
4
|
-
|
5
|
-
from lionagi.core.collections.abc import Component
|
6
|
-
from lionagi.libs import SysUtil
|
7
|
-
|
8
|
-
|
9
|
-
class WorkStatus(str, Enum):
|
10
|
-
"""Enum to represent different statuses of work."""
|
11
|
-
|
12
|
-
PENDING = "PENDING"
|
13
|
-
IN_PROGRESS = "IN_PROGRESS"
|
14
|
-
COMPLETED = "COMPLETED"
|
15
|
-
FAILED = "FAILED"
|
16
|
-
|
17
|
-
|
18
|
-
class Work(Component):
|
19
|
-
"""
|
20
|
-
A class representing a unit of work.
|
21
|
-
|
22
|
-
Attributes:
|
23
|
-
status (WorkStatus): The current status of the work.
|
24
|
-
result (Any): The result of the work, if completed.
|
25
|
-
error (Any): Any error encountered during the work.
|
26
|
-
async_task (Coroutine | None): The asynchronous task associated with the work.
|
27
|
-
completion_timestamp (str | None): The timestamp when the work was completed.
|
28
|
-
duration (float | None): The duration of the work.
|
29
|
-
"""
|
30
|
-
|
31
|
-
status: WorkStatus = WorkStatus.PENDING
|
32
|
-
result: Any = None
|
33
|
-
error: Any = None
|
34
|
-
async_task: Coroutine | None = None
|
35
|
-
async_task_name: str | None = None
|
36
|
-
completion_timestamp: str | None = None
|
37
|
-
duration: float | None = None
|
38
|
-
|
39
|
-
async def perform(self):
|
40
|
-
"""Perform the work and update the status, result, and duration."""
|
41
|
-
try:
|
42
|
-
result, duration = await self.async_task
|
43
|
-
self.result = result
|
44
|
-
self.status = WorkStatus.COMPLETED
|
45
|
-
self.duration = duration
|
46
|
-
del self.async_task
|
47
|
-
except Exception as e:
|
48
|
-
self.error = e
|
49
|
-
self.status = WorkStatus.FAILED
|
50
|
-
finally:
|
51
|
-
self.completion_timestamp = SysUtil.get_timestamp(sep=None)[:-6]
|
52
|
-
|
53
|
-
def __str__(self):
|
54
|
-
return (
|
55
|
-
f"Work(id={self.ln_id[:8]}.., status={self.status.value}, "
|
56
|
-
f"created_at={self.timestamp[:-7]}, "
|
57
|
-
f"completed_at={self.completion_timestamp[:-7]}, "
|
58
|
-
f"duration={float(self.duration) if self.duration else 0:.04f} sec(s))"
|
59
|
-
)
|
lionagi/core/work/work_edge.py
DELETED
@@ -1,102 +0,0 @@
|
|
1
|
-
import inspect
|
2
|
-
from collections.abc import Callable
|
3
|
-
|
4
|
-
from pydantic import Field, field_validator
|
5
|
-
|
6
|
-
from lionagi.core.collections.abc.concepts import Progressable
|
7
|
-
from lionagi.core.generic.edge import Edge
|
8
|
-
from lionagi.core.work.worker import Worker
|
9
|
-
|
10
|
-
|
11
|
-
class WorkEdge(Edge, Progressable):
|
12
|
-
"""
|
13
|
-
Represents a directed edge between work tasks, responsible for transforming
|
14
|
-
the result of one task into parameters for the next task.
|
15
|
-
|
16
|
-
Attributes:
|
17
|
-
convert_function (Callable): Function to transform the result of the previous
|
18
|
-
work into parameters for the next work. This function must be decorated
|
19
|
-
with the `worklink` decorator.
|
20
|
-
convert_function_kwargs (dict): Additional parameters for the convert_function
|
21
|
-
other than "from_work" and "from_result".
|
22
|
-
associated_worker (Worker): The worker to which this WorkEdge belongs.
|
23
|
-
"""
|
24
|
-
|
25
|
-
convert_function: Callable = Field(
|
26
|
-
...,
|
27
|
-
description="Function to transform the result of the previous work into parameters for the next work.",
|
28
|
-
)
|
29
|
-
|
30
|
-
convert_function_kwargs: dict = Field(
|
31
|
-
{},
|
32
|
-
description='parameters for the worklink function other than "from_work" and "from_result"',
|
33
|
-
)
|
34
|
-
|
35
|
-
associated_worker: Worker = Field(
|
36
|
-
..., description="The worker to which this WorkEdge belongs."
|
37
|
-
)
|
38
|
-
|
39
|
-
@field_validator("convert_function", mode="before")
|
40
|
-
def _validate_convert_funuction(cls, func):
|
41
|
-
"""
|
42
|
-
Validates that the convert_function is decorated with the worklink decorator.
|
43
|
-
|
44
|
-
Args:
|
45
|
-
func (Callable): The function to validate.
|
46
|
-
|
47
|
-
Returns:
|
48
|
-
Callable: The validated function.
|
49
|
-
|
50
|
-
Raises:
|
51
|
-
ValueError: If the function is not decorated with the worklink decorator.
|
52
|
-
"""
|
53
|
-
try:
|
54
|
-
getattr(func, "_worklink_decorator_params")
|
55
|
-
return func
|
56
|
-
except:
|
57
|
-
raise ValueError(
|
58
|
-
"convert_function must be a worklink decorated function"
|
59
|
-
)
|
60
|
-
|
61
|
-
@property
|
62
|
-
def name(self):
|
63
|
-
"""
|
64
|
-
Returns the name of the convert_function.
|
65
|
-
|
66
|
-
Returns:
|
67
|
-
str: The name of the convert_function.
|
68
|
-
"""
|
69
|
-
return self.convert_function.__name__
|
70
|
-
|
71
|
-
async def forward(self, task):
|
72
|
-
"""
|
73
|
-
Transforms the result of the current work into parameters for the next work
|
74
|
-
and schedules the next work task.
|
75
|
-
|
76
|
-
Args:
|
77
|
-
task (Task): The task to process.
|
78
|
-
|
79
|
-
Returns:
|
80
|
-
Work: The next work task to be executed.
|
81
|
-
|
82
|
-
Raises:
|
83
|
-
StopIteration: If the task has no available steps left to proceed.
|
84
|
-
"""
|
85
|
-
if task.available_steps == 0:
|
86
|
-
task.status_note = (
|
87
|
-
"Task stopped proceeding further as all available steps have been used up, "
|
88
|
-
"but the task has not yet reached completion."
|
89
|
-
)
|
90
|
-
return
|
91
|
-
func_signature = inspect.signature(self.convert_function)
|
92
|
-
kwargs = self.convert_function_kwargs.copy()
|
93
|
-
if "from_work" in func_signature.parameters:
|
94
|
-
kwargs = {"from_work": task.current_work} | kwargs
|
95
|
-
if "from_result" in func_signature.parameters:
|
96
|
-
kwargs = {"from_result": task.current_work.result} | kwargs
|
97
|
-
|
98
|
-
self.convert_function.auto_schedule = True
|
99
|
-
next_work = await self.convert_function(
|
100
|
-
self=self.associated_worker, **kwargs
|
101
|
-
)
|
102
|
-
return next_work
|