lionagi 0.5.5__py3-none-any.whl → 0.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +16 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +16 -13
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +1 -1
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +10 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/{core/models/__init__.py → operations/types.py} +3 -1
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +239 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{integrations/anthropic_/version.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_adapter.py +224 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +172 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +109 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +10 -12
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +145 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +263 -96
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/METADATA +7 -6
- lionagi-0.6.0.dist-info/RECORD +160 -0
- lionagi/core/action/action_manager.py +0 -289
- lionagi/core/action/base.py +0 -109
- lionagi/core/action/function_calling.py +0 -153
- lionagi/core/action/tool.py +0 -202
- lionagi/core/action/types.py +0 -16
- lionagi/core/communication/action_request.py +0 -163
- lionagi/core/communication/action_response.py +0 -149
- lionagi/core/communication/base_mail.py +0 -49
- lionagi/core/communication/instruction.py +0 -376
- lionagi/core/communication/message.py +0 -286
- lionagi/core/communication/message_manager.py +0 -543
- lionagi/core/communication/system.py +0 -116
- lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
- lionagi/core/communication/types.py +0 -27
- lionagi/core/communication/utils.py +0 -256
- lionagi/core/forms/types.py +0 -13
- lionagi/core/generic/component.py +0 -422
- lionagi/core/generic/edge.py +0 -163
- lionagi/core/generic/element.py +0 -199
- lionagi/core/generic/graph.py +0 -377
- lionagi/core/generic/log.py +0 -151
- lionagi/core/generic/log_manager.py +0 -320
- lionagi/core/generic/node.py +0 -11
- lionagi/core/generic/progression.py +0 -395
- lionagi/core/generic/types.py +0 -23
- lionagi/core/generic/utils.py +0 -53
- lionagi/core/models/base.py +0 -28
- lionagi/core/models/field_model.py +0 -145
- lionagi/core/models/model_params.py +0 -194
- lionagi/core/models/types.py +0 -19
- lionagi/core/session/branch.py +0 -130
- lionagi/core/session/branch_mixins.py +0 -581
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/__init__.py +0 -0
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
- lionagi/integrations/anthropic_/AnthropicService.py +0 -127
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -156
- lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
- lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
- lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
- lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
- lionagi/integrations/groq_/groq_price_data.yaml +0 -58
- lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
- lionagi/integrations/groq_/version.py +0 -5
- lionagi/integrations/litellm_/imodel.py +0 -76
- lionagi/integrations/ollama_/OllamaModel.py +0 -244
- lionagi/integrations/ollama_/OllamaService.py +0 -142
- lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
- lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
- lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
- lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
- lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
- lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
- lionagi/integrations/openai_/OpenAIModel.py +0 -419
- lionagi/integrations/openai_/OpenAIService.py +0 -435
- lionagi/integrations/openai_/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
- lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
- lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
- lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
- lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
- lionagi/integrations/openai_/openai_price_data.yaml +0 -26
- lionagi/integrations/openai_/version.py +0 -1
- lionagi/integrations/pandas_/__init__.py +0 -24
- lionagi/integrations/pandas_/extend_df.py +0 -61
- lionagi/integrations/pandas_/read.py +0 -103
- lionagi/integrations/pandas_/remove_rows.py +0 -61
- lionagi/integrations/pandas_/replace_keywords.py +0 -65
- lionagi/integrations/pandas_/save.py +0 -131
- lionagi/integrations/pandas_/search_keywords.py +0 -69
- lionagi/integrations/pandas_/to_df.py +0 -196
- lionagi/integrations/pandas_/update_cells.py +0 -54
- lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
- lionagi/integrations/perplexity_/PerplexityService.py +0 -118
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/__init__.py +0 -0
- lionagi/protocols/adapters/adapter.py +0 -79
- lionagi/protocols/adapters/json_adapter.py +0 -43
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.5.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/licenses/LICENSE +0 -0
lionagi/libs/parse/json/parse.py
DELETED
@@ -1,179 +0,0 @@
|
|
1
|
-
import contextlib
|
2
|
-
import json
|
3
|
-
import re
|
4
|
-
from typing import Any
|
5
|
-
|
6
|
-
|
7
|
-
def fuzzy_parse_json(
|
8
|
-
str_to_parse: str, /
|
9
|
-
) -> dict[str, Any] | list[dict[str, Any]]:
|
10
|
-
"""Parse a JSON string with automatic fixing of common formatting issues.
|
11
|
-
|
12
|
-
Args:
|
13
|
-
str_to_parse: The JSON string to parse
|
14
|
-
|
15
|
-
Returns:
|
16
|
-
The parsed JSON object as a dictionary
|
17
|
-
|
18
|
-
Raises:
|
19
|
-
ValueError: If the string cannot be parsed as valid JSON
|
20
|
-
TypeError: If the input is not a string or the result is not a dict
|
21
|
-
"""
|
22
|
-
_check_valid_str(str_to_parse)
|
23
|
-
|
24
|
-
with contextlib.suppress(Exception):
|
25
|
-
return json.loads(str_to_parse)
|
26
|
-
|
27
|
-
with contextlib.suppress(Exception):
|
28
|
-
return json.loads(_fix_braces(str_to_parse))
|
29
|
-
|
30
|
-
with contextlib.suppress(Exception):
|
31
|
-
str_ = _fix_braces(str_to_parse.replace("'", '"'))
|
32
|
-
return json.loads(str_)
|
33
|
-
|
34
|
-
with contextlib.suppress(Exception):
|
35
|
-
return json.loads(fix_json_string(str_to_parse))
|
36
|
-
|
37
|
-
with contextlib.suppress(Exception):
|
38
|
-
return json.loads(_clean_json_string(str_to_parse))
|
39
|
-
|
40
|
-
with contextlib.suppress(Exception):
|
41
|
-
return json.loads(fix_json_string(_clean_json_string(str_to_parse)))
|
42
|
-
|
43
|
-
with contextlib.suppress(Exception):
|
44
|
-
assembled = _assemble(str_to_parse)
|
45
|
-
return json.loads(assembled)
|
46
|
-
|
47
|
-
with contextlib.suppress(Exception):
|
48
|
-
assembled = _assemble(str_to_parse.replace("'", '"'))
|
49
|
-
return json.loads(str_)
|
50
|
-
|
51
|
-
raise ValueError("Invalid JSON string")
|
52
|
-
|
53
|
-
|
54
|
-
def _clean_json_string(s: str) -> str:
|
55
|
-
"""Clean and standardize a JSON string."""
|
56
|
-
s = re.sub(r"(?<!\\)'", '"', s)
|
57
|
-
s = re.sub(r"\s+", " ", s)
|
58
|
-
s = re.sub(r'([{,])\s*([^"\s]+):', r'\1"\2":', s)
|
59
|
-
return s.strip()
|
60
|
-
|
61
|
-
|
62
|
-
def fix_json_string(str_to_parse: str, /) -> str:
|
63
|
-
"""Fix a JSON string by ensuring all brackets are properly closed.
|
64
|
-
|
65
|
-
Args:
|
66
|
-
str_to_parse: JSON string to fix
|
67
|
-
|
68
|
-
Returns:
|
69
|
-
Fixed JSON string with proper bracket closure
|
70
|
-
|
71
|
-
Raises:
|
72
|
-
ValueError: If mismatched or extra closing brackets are found
|
73
|
-
"""
|
74
|
-
if not str_to_parse:
|
75
|
-
raise ValueError("Input string is empty")
|
76
|
-
|
77
|
-
brackets = {"{": "}", "[": "]"}
|
78
|
-
open_brackets = []
|
79
|
-
pos = 0
|
80
|
-
length = len(str_to_parse)
|
81
|
-
|
82
|
-
while pos < length:
|
83
|
-
char = str_to_parse[pos]
|
84
|
-
|
85
|
-
# Handle escape sequences
|
86
|
-
if char == "\\":
|
87
|
-
pos += 2 # Skip escape sequence
|
88
|
-
continue
|
89
|
-
|
90
|
-
# Handle string content
|
91
|
-
if char == '"':
|
92
|
-
pos += 1
|
93
|
-
# Skip until closing quote, accounting for escapes
|
94
|
-
while pos < length:
|
95
|
-
if str_to_parse[pos] == "\\":
|
96
|
-
pos += 2 # Skip escape sequence
|
97
|
-
continue
|
98
|
-
if str_to_parse[pos] == '"':
|
99
|
-
break
|
100
|
-
pos += 1
|
101
|
-
pos += 1
|
102
|
-
continue
|
103
|
-
|
104
|
-
# Handle brackets
|
105
|
-
if char in brackets:
|
106
|
-
open_brackets.append(brackets[char])
|
107
|
-
elif char in brackets.values():
|
108
|
-
if not open_brackets:
|
109
|
-
raise ValueError(
|
110
|
-
f"Extra closing bracket '{char}' at position {pos}"
|
111
|
-
)
|
112
|
-
if open_brackets[-1] != char:
|
113
|
-
raise ValueError(
|
114
|
-
f"Mismatched bracket '{char}' at position {pos}"
|
115
|
-
)
|
116
|
-
open_brackets.pop()
|
117
|
-
|
118
|
-
pos += 1
|
119
|
-
|
120
|
-
# Add missing closing brackets
|
121
|
-
closing_brackets = "".join(reversed(open_brackets))
|
122
|
-
return str_to_parse + closing_brackets
|
123
|
-
|
124
|
-
|
125
|
-
def _check_valid_str(str_to_parse, /):
|
126
|
-
if not isinstance(str_to_parse, str):
|
127
|
-
raise TypeError("Input must be a string")
|
128
|
-
|
129
|
-
if not str_to_parse.strip():
|
130
|
-
raise ValueError("Input string is empty")
|
131
|
-
|
132
|
-
|
133
|
-
def _fix_braces(str_to_parse):
|
134
|
-
fixed = fix_json_string(str_to_parse)
|
135
|
-
str_ = fixed.strip()
|
136
|
-
if not str_.endswith("}"):
|
137
|
-
str_ += "}"
|
138
|
-
if not str_.startswith("{"):
|
139
|
-
str_ = "{" + str_
|
140
|
-
if str_.endswith(",}"):
|
141
|
-
str_ = str_[:-2] + "}"
|
142
|
-
return str_
|
143
|
-
|
144
|
-
|
145
|
-
def _assemble(str_to_parse):
|
146
|
-
fixed = fix_json_string(str_to_parse)
|
147
|
-
if fixed.startswith("{"):
|
148
|
-
fixed = fixed[1:]
|
149
|
-
if fixed.endswith("}"):
|
150
|
-
fixed = fixed[:-1]
|
151
|
-
parts = []
|
152
|
-
for i in fixed.split(":"):
|
153
|
-
str_ = i.strip().replace("'", '"')
|
154
|
-
if str_.count('"') == 2 and ' "' in str_:
|
155
|
-
parts.append(str_.split(' "')[0])
|
156
|
-
parts.append('"' + str_.split(' "')[1])
|
157
|
-
|
158
|
-
elif str_.count('"') == 4 and ' "' in str_:
|
159
|
-
parts.append(str_.split(' "')[0])
|
160
|
-
parts.append('"' + str_.split(' "')[1])
|
161
|
-
|
162
|
-
else:
|
163
|
-
parts.append(i.strip())
|
164
|
-
|
165
|
-
assembled = ""
|
166
|
-
for i in range(len(parts)):
|
167
|
-
if i % 2 == 0:
|
168
|
-
assembled += parts[i] + ":"
|
169
|
-
else:
|
170
|
-
assembled += parts[i] + ","
|
171
|
-
|
172
|
-
if assembled.endswith(","):
|
173
|
-
assembled = assembled[:-1]
|
174
|
-
if not assembled.startswith("{"):
|
175
|
-
assembled = "{" + assembled
|
176
|
-
if not assembled.endswith("}"):
|
177
|
-
assembled += "}"
|
178
|
-
|
179
|
-
return assembled
|
@@ -1,71 +0,0 @@
|
|
1
|
-
import json
|
2
|
-
import re
|
3
|
-
from typing import Any
|
4
|
-
|
5
|
-
from .parse import fuzzy_parse_json
|
6
|
-
|
7
|
-
|
8
|
-
def to_json(
|
9
|
-
string: str | list[str], /, fuzzy_parse: bool = False
|
10
|
-
) -> list[dict[str, Any]] | dict:
|
11
|
-
"""Extract and parse JSON content from a string or markdown code blocks.
|
12
|
-
|
13
|
-
This function attempts to parse JSON directly from the input string first.
|
14
|
-
If that fails, it looks for JSON content within markdown code blocks
|
15
|
-
(denoted by ```json).
|
16
|
-
|
17
|
-
Args:
|
18
|
-
string: Input string or list of strings to parse. If a list is provided,
|
19
|
-
it will be joined with newlines.
|
20
|
-
|
21
|
-
Returns:
|
22
|
-
- A dictionary if a single JSON object is found
|
23
|
-
- A list of dictionaries if multiple JSON objects are found
|
24
|
-
- An empty list if no valid JSON is found
|
25
|
-
|
26
|
-
Examples:
|
27
|
-
>>> to_json('{"key": "value"}')
|
28
|
-
{'key': 'value'}
|
29
|
-
|
30
|
-
>>> to_json('''
|
31
|
-
... ```json
|
32
|
-
... {"key": "value"}
|
33
|
-
... ```
|
34
|
-
... ''')
|
35
|
-
{'key': 'value'}
|
36
|
-
|
37
|
-
>>> to_json('''
|
38
|
-
... ```json
|
39
|
-
... {"key1": "value1"}
|
40
|
-
... ```
|
41
|
-
... ```json
|
42
|
-
... {"key2": "value2"}
|
43
|
-
... ```
|
44
|
-
... ''')
|
45
|
-
[{'key1': 'value1'}, {'key2': 'value2'}]
|
46
|
-
"""
|
47
|
-
|
48
|
-
if isinstance(string, list):
|
49
|
-
string = "\n".join(string)
|
50
|
-
|
51
|
-
# Try direct JSON parsing first
|
52
|
-
try:
|
53
|
-
if fuzzy_parse:
|
54
|
-
return fuzzy_parse_json(string)
|
55
|
-
return json.loads(string)
|
56
|
-
except Exception:
|
57
|
-
pass
|
58
|
-
|
59
|
-
# Look for JSON in markdown code blocks
|
60
|
-
pattern = r"```json\s*(.*?)\s*```"
|
61
|
-
matches = re.findall(pattern, string, re.DOTALL)
|
62
|
-
|
63
|
-
if not matches:
|
64
|
-
return []
|
65
|
-
|
66
|
-
if len(matches) == 1:
|
67
|
-
return json.loads(matches[0])
|
68
|
-
|
69
|
-
if fuzzy_parse:
|
70
|
-
return [fuzzy_parse_json(match) for match in matches]
|
71
|
-
return [json.loads(match) for match in matches]
|
@@ -1,33 +0,0 @@
|
|
1
|
-
"""Nested data structure manipulation utilities."""
|
2
|
-
|
3
|
-
from .nfilter import nfilter
|
4
|
-
from .nget import nget
|
5
|
-
from .ninsert import ninsert
|
6
|
-
from .nmerge import nmerge
|
7
|
-
from .npop import npop
|
8
|
-
from .nset import nset
|
9
|
-
from .to_flat_list import to_flat_list
|
10
|
-
from .utils import (
|
11
|
-
deep_update,
|
12
|
-
ensure_list_index,
|
13
|
-
get_target_container,
|
14
|
-
is_homogeneous,
|
15
|
-
is_same_dtype,
|
16
|
-
is_structure_homogeneous,
|
17
|
-
)
|
18
|
-
|
19
|
-
__all__ = [
|
20
|
-
"nfilter",
|
21
|
-
"nget",
|
22
|
-
"ninsert",
|
23
|
-
"nmerge",
|
24
|
-
"npop",
|
25
|
-
"nset",
|
26
|
-
"to_flat_list",
|
27
|
-
"deep_update",
|
28
|
-
"ensure_list_index",
|
29
|
-
"get_target_container",
|
30
|
-
"is_homogeneous",
|
31
|
-
"is_same_dtype",
|
32
|
-
"is_structure_homogeneous",
|
33
|
-
]
|
@@ -1,64 +0,0 @@
|
|
1
|
-
from collections.abc import Generator, Iterable
|
2
|
-
from typing import Any
|
3
|
-
|
4
|
-
from pydantic_core import PydanticUndefinedType
|
5
|
-
|
6
|
-
from lionagi.libs.constants import UndefinedType
|
7
|
-
|
8
|
-
|
9
|
-
def _flatten_list_generator(
|
10
|
-
lst_: list[Any], dropna: bool
|
11
|
-
) -> Generator[Any, None, None]:
|
12
|
-
for i in lst_:
|
13
|
-
if isinstance(i, list):
|
14
|
-
yield from _flatten_list_generator(i, dropna)
|
15
|
-
else:
|
16
|
-
yield i
|
17
|
-
|
18
|
-
|
19
|
-
def to_flat_list(
|
20
|
-
input_: Any, /, *, dropna: bool = False, unique: bool = True
|
21
|
-
) -> list[Any]:
|
22
|
-
if isinstance(input_, type(None) | UndefinedType | PydanticUndefinedType):
|
23
|
-
return []
|
24
|
-
|
25
|
-
if not isinstance(input_, Iterable) or isinstance(
|
26
|
-
input_, (str, bytes, bytearray, dict)
|
27
|
-
):
|
28
|
-
return [input_]
|
29
|
-
|
30
|
-
if isinstance(input_, list):
|
31
|
-
return _flatten_list(input_, dropna, unique=unique)
|
32
|
-
|
33
|
-
if isinstance(input_, tuple):
|
34
|
-
return _flatten_list(list(input_), dropna, unique=unique)
|
35
|
-
|
36
|
-
if isinstance(input_, set):
|
37
|
-
return list(_dropna_iterator(list(input_))) if dropna else list(input_)
|
38
|
-
|
39
|
-
try:
|
40
|
-
iterable_list = list(input_)
|
41
|
-
return _flatten_list(iterable_list, dropna, unique=unique)
|
42
|
-
|
43
|
-
except Exception as e:
|
44
|
-
raise ValueError(
|
45
|
-
f"Could not convert {type(input_)} object to list: {e}"
|
46
|
-
) from e
|
47
|
-
|
48
|
-
|
49
|
-
def _dropna_iterator(lst_: list[Any]) -> iter:
|
50
|
-
return (item for item in lst_ if item is not None)
|
51
|
-
|
52
|
-
|
53
|
-
def _flatten_list(
|
54
|
-
lst_: list[Any], dropna: bool = False, unique: bool = False
|
55
|
-
) -> list[Any]:
|
56
|
-
flattened_list = list(_flatten_list_generator(lst_, dropna))
|
57
|
-
if dropna:
|
58
|
-
flattened_list = list(_dropna_iterator(flattened_list))
|
59
|
-
if unique:
|
60
|
-
try:
|
61
|
-
flattened_list = list(set(flattened_list))
|
62
|
-
except Exception:
|
63
|
-
pass
|
64
|
-
return flattened_list
|
lionagi/libs/parse/params.py
DELETED
File without changes
|
@@ -1,11 +0,0 @@
|
|
1
|
-
"""String parsing utilities for code blocks and docstrings."""
|
2
|
-
|
3
|
-
from .code_block import extract_code_block
|
4
|
-
from .docstring import extract_docstring
|
5
|
-
from .function_ import function_to_schema
|
6
|
-
|
7
|
-
__all__ = [
|
8
|
-
"extract_code_block",
|
9
|
-
"extract_docstring",
|
10
|
-
"function_to_schema",
|
11
|
-
]
|
@@ -1,19 +0,0 @@
|
|
1
|
-
"""Type conversion utilities for various data formats."""
|
2
|
-
|
3
|
-
from .params import ToDictParams, ToListParams, ToNumParams, ToStrParams
|
4
|
-
from .to_dict import to_dict
|
5
|
-
from .to_list import to_list
|
6
|
-
from .to_num import to_num
|
7
|
-
from .to_str import strip_lower, to_str
|
8
|
-
|
9
|
-
__all__ = [
|
10
|
-
"to_dict",
|
11
|
-
"to_str",
|
12
|
-
"strip_lower",
|
13
|
-
"to_list",
|
14
|
-
"to_num",
|
15
|
-
"ToDictParams",
|
16
|
-
"ToListParams",
|
17
|
-
"ToNumParams",
|
18
|
-
"ToStrParams",
|
19
|
-
]
|
@@ -1,145 +0,0 @@
|
|
1
|
-
from collections.abc import Callable
|
2
|
-
from typing import Any, Literal, TypeVar
|
3
|
-
|
4
|
-
from pydantic import BaseModel, Field, field_validator
|
5
|
-
|
6
|
-
from lionagi.libs.constants import NUM_TYPES
|
7
|
-
|
8
|
-
T = TypeVar("T")
|
9
|
-
|
10
|
-
|
11
|
-
class ToDictParams(BaseModel):
|
12
|
-
"""Parameters for to_dict conversion function."""
|
13
|
-
|
14
|
-
str_type: Literal["json", "xml"] | None = Field(
|
15
|
-
default="json",
|
16
|
-
description="Type of string to parse",
|
17
|
-
)
|
18
|
-
fuzzy_parse: bool = Field(
|
19
|
-
default=False,
|
20
|
-
description="Whether to use fuzzy parsing for JSON-like strings",
|
21
|
-
)
|
22
|
-
suppress: bool = Field(
|
23
|
-
default=False,
|
24
|
-
description="Whether to suppress errors and return empty dict",
|
25
|
-
)
|
26
|
-
parser: Callable[[str], Any] | None = Field(
|
27
|
-
default=None,
|
28
|
-
description="Custom parser function for string inputs",
|
29
|
-
)
|
30
|
-
recursive: bool = Field(
|
31
|
-
default=False,
|
32
|
-
description="Enable recursive conversion of nested structures",
|
33
|
-
)
|
34
|
-
max_recursive_depth: int | None = Field(
|
35
|
-
default=None,
|
36
|
-
description="Maximum recursion depth (default 5, max 10)",
|
37
|
-
ge=0,
|
38
|
-
le=10,
|
39
|
-
)
|
40
|
-
recursive_python_only: bool = Field(
|
41
|
-
default=True,
|
42
|
-
description="If False, attempts to convert custom types recursively",
|
43
|
-
)
|
44
|
-
use_model_dump: bool = Field(
|
45
|
-
default=True,
|
46
|
-
description="Whether to use model_dump for pydantic models",
|
47
|
-
)
|
48
|
-
|
49
|
-
|
50
|
-
class ToNumParams(BaseModel):
|
51
|
-
"""Parameters for to_num conversion function."""
|
52
|
-
|
53
|
-
upper_bound: int | float | None = Field(
|
54
|
-
default=None,
|
55
|
-
description="Maximum allowed value (inclusive)",
|
56
|
-
)
|
57
|
-
lower_bound: int | float | None = Field(
|
58
|
-
default=None,
|
59
|
-
description="Minimum allowed value (inclusive)",
|
60
|
-
)
|
61
|
-
num_type: NUM_TYPES = Field(
|
62
|
-
default=float,
|
63
|
-
description="Target numeric type (int, float, complex)",
|
64
|
-
)
|
65
|
-
precision: int | None = Field(
|
66
|
-
default=None,
|
67
|
-
description="Number of decimal places for rounding (float only)",
|
68
|
-
ge=0,
|
69
|
-
)
|
70
|
-
num_count: int = Field(
|
71
|
-
default=1,
|
72
|
-
description="Number of numeric values to extract",
|
73
|
-
gt=0,
|
74
|
-
)
|
75
|
-
|
76
|
-
@field_validator("upper_bound")
|
77
|
-
def validate_bounds(
|
78
|
-
cls, v: float | None, values: dict[str, Any]
|
79
|
-
) -> float | None:
|
80
|
-
if v is not None and values.get("lower_bound") is not None:
|
81
|
-
if v < values["lower_bound"]:
|
82
|
-
raise ValueError(
|
83
|
-
"upper_bound must be greater than lower_bound"
|
84
|
-
)
|
85
|
-
return v
|
86
|
-
|
87
|
-
|
88
|
-
class ToStrParams(BaseModel):
|
89
|
-
"""Parameters for to_str conversion function."""
|
90
|
-
|
91
|
-
strip_lower: bool = Field(
|
92
|
-
default=False,
|
93
|
-
description="Whether to strip and convert to lowercase",
|
94
|
-
)
|
95
|
-
chars: str | None = Field(
|
96
|
-
default=None,
|
97
|
-
description="Characters to strip from the result",
|
98
|
-
)
|
99
|
-
str_type: Literal["json", "xml"] | None = Field(
|
100
|
-
default=None,
|
101
|
-
description="Type of string input if applicable",
|
102
|
-
)
|
103
|
-
serialize_as: Literal["json", "xml"] | None = Field(
|
104
|
-
default=None,
|
105
|
-
description="Output serialization format",
|
106
|
-
)
|
107
|
-
use_model_dump: bool = Field(
|
108
|
-
default=False,
|
109
|
-
description="Whether to use model_dump for pydantic models",
|
110
|
-
)
|
111
|
-
str_parser: Callable[[str], Any] | None = Field(
|
112
|
-
default=None,
|
113
|
-
description="Custom parser function for string inputs",
|
114
|
-
)
|
115
|
-
parser_kwargs: dict[str, Any] = Field(
|
116
|
-
default_factory=dict,
|
117
|
-
description="Additional keyword arguments for the parser",
|
118
|
-
)
|
119
|
-
|
120
|
-
|
121
|
-
class ToListParams(BaseModel):
|
122
|
-
"""Parameters for to_list conversion function."""
|
123
|
-
|
124
|
-
flatten: bool = Field(
|
125
|
-
default=False,
|
126
|
-
description="Whether to flatten nested structures",
|
127
|
-
)
|
128
|
-
dropna: bool = Field(
|
129
|
-
default=False,
|
130
|
-
description="Whether to drop None values",
|
131
|
-
)
|
132
|
-
unique: bool = Field(
|
133
|
-
default=False,
|
134
|
-
description="Whether to return only unique values (requires flatten=True)",
|
135
|
-
)
|
136
|
-
use_values: bool = Field(
|
137
|
-
default=False,
|
138
|
-
description="Whether to use .values() for dict-like inputs",
|
139
|
-
)
|
140
|
-
|
141
|
-
@field_validator("unique")
|
142
|
-
def validate_unique(cls, v: bool, values: dict[str, Any]) -> bool:
|
143
|
-
if v and not values.get("flatten", False):
|
144
|
-
raise ValueError("unique=True requires flatten=True")
|
145
|
-
return v
|