lionagi 0.5.5__py3-none-any.whl → 0.6.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +18 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +19 -16
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +2 -2
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +26 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/operations/types.py +13 -0
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +236 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{core/models/__init__.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/adapters/adapter.py +23 -7
- lionagi/protocols/adapters/json_adapter.py +72 -14
- lionagi/protocols/adapters/pandas_/csv_adapter.py +50 -0
- lionagi/protocols/adapters/pandas_/excel_adapter.py +52 -0
- lionagi/protocols/adapters/pandas_/pd_dataframe_adapter.py +31 -0
- lionagi/protocols/adapters/pandas_/pd_series_adapter.py +17 -0
- lionagi/protocols/adapters/types.py +18 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +193 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +125 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +1 -16
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +146 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +263 -96
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/service/types.py +18 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/METADATA +10 -9
- lionagi-0.6.1.dist-info/RECORD +169 -0
- lionagi/core/action/action_manager.py +0 -289
- lionagi/core/action/base.py +0 -109
- lionagi/core/action/function_calling.py +0 -153
- lionagi/core/action/tool.py +0 -202
- lionagi/core/action/types.py +0 -16
- lionagi/core/communication/action_request.py +0 -163
- lionagi/core/communication/action_response.py +0 -149
- lionagi/core/communication/base_mail.py +0 -49
- lionagi/core/communication/instruction.py +0 -376
- lionagi/core/communication/message.py +0 -286
- lionagi/core/communication/message_manager.py +0 -543
- lionagi/core/communication/system.py +0 -116
- lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
- lionagi/core/communication/types.py +0 -27
- lionagi/core/communication/utils.py +0 -256
- lionagi/core/forms/types.py +0 -13
- lionagi/core/generic/component.py +0 -422
- lionagi/core/generic/edge.py +0 -163
- lionagi/core/generic/element.py +0 -199
- lionagi/core/generic/graph.py +0 -377
- lionagi/core/generic/log.py +0 -151
- lionagi/core/generic/log_manager.py +0 -320
- lionagi/core/generic/node.py +0 -11
- lionagi/core/generic/progression.py +0 -395
- lionagi/core/generic/types.py +0 -23
- lionagi/core/generic/utils.py +0 -53
- lionagi/core/models/base.py +0 -28
- lionagi/core/models/field_model.py +0 -145
- lionagi/core/models/model_params.py +0 -194
- lionagi/core/models/types.py +0 -19
- lionagi/core/session/branch.py +0 -130
- lionagi/core/session/branch_mixins.py +0 -581
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
- lionagi/integrations/anthropic_/AnthropicService.py +0 -127
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/anthropic_/version.py +0 -5
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -156
- lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
- lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
- lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
- lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
- lionagi/integrations/groq_/groq_price_data.yaml +0 -58
- lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
- lionagi/integrations/groq_/version.py +0 -5
- lionagi/integrations/litellm_/imodel.py +0 -76
- lionagi/integrations/ollama_/OllamaModel.py +0 -244
- lionagi/integrations/ollama_/OllamaService.py +0 -142
- lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
- lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
- lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
- lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
- lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
- lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
- lionagi/integrations/openai_/OpenAIModel.py +0 -419
- lionagi/integrations/openai_/OpenAIService.py +0 -435
- lionagi/integrations/openai_/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
- lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
- lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
- lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
- lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
- lionagi/integrations/openai_/openai_price_data.yaml +0 -26
- lionagi/integrations/openai_/version.py +0 -1
- lionagi/integrations/pandas_/__init__.py +0 -24
- lionagi/integrations/pandas_/extend_df.py +0 -61
- lionagi/integrations/pandas_/read.py +0 -103
- lionagi/integrations/pandas_/remove_rows.py +0 -61
- lionagi/integrations/pandas_/replace_keywords.py +0 -65
- lionagi/integrations/pandas_/save.py +0 -131
- lionagi/integrations/pandas_/search_keywords.py +0 -69
- lionagi/integrations/pandas_/to_df.py +0 -196
- lionagi/integrations/pandas_/update_cells.py +0 -54
- lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
- lionagi/integrations/perplexity_/PerplexityService.py +0 -118
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.5.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations → protocols/adapters/pandas_}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,17 +1,29 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
1
5
|
import inspect
|
2
6
|
from typing import Any, Literal
|
3
7
|
|
4
|
-
from
|
8
|
+
from .extract_docstring import extract_docstring
|
5
9
|
|
6
|
-
|
10
|
+
py_json_msp = {
|
11
|
+
"str": "string",
|
12
|
+
"int": "number",
|
13
|
+
"float": "number",
|
14
|
+
"list": "array",
|
15
|
+
"tuple": "array",
|
16
|
+
"bool": "boolean",
|
17
|
+
"dict": "object",
|
18
|
+
}
|
7
19
|
|
8
20
|
|
9
21
|
def function_to_schema(
|
10
22
|
f_,
|
11
23
|
style: Literal["google", "rest"] = "google",
|
12
24
|
*,
|
13
|
-
|
14
|
-
|
25
|
+
func_description: str = None,
|
26
|
+
parametert_description: dict[str, str] = None,
|
15
27
|
) -> dict:
|
16
28
|
"""
|
17
29
|
Generate a schema description for a given function. in openai format
|
@@ -53,10 +65,10 @@ def function_to_schema(
|
|
53
65
|
func_name = f_.__name__
|
54
66
|
|
55
67
|
# Extract function description and parameter descriptions
|
56
|
-
if not
|
68
|
+
if not func_description or not parametert_description:
|
57
69
|
func_desc, params_desc = extract_docstring(f_, style)
|
58
|
-
|
59
|
-
|
70
|
+
func_description = func_description or func_desc
|
71
|
+
parametert_description = parametert_description or params_desc
|
60
72
|
|
61
73
|
# Extract parameter details using typing hints
|
62
74
|
sig = inspect.signature(f_)
|
@@ -73,7 +85,7 @@ def function_to_schema(
|
|
73
85
|
param_type = py_json_msp[param.annotation.__name__]
|
74
86
|
|
75
87
|
# Extract parameter description from docstring, if available
|
76
|
-
param_description =
|
88
|
+
param_description = parametert_description.get(name)
|
77
89
|
|
78
90
|
# Assuming all parameters are required for simplicity
|
79
91
|
parameters["required"].append(name)
|
@@ -86,7 +98,7 @@ def function_to_schema(
|
|
86
98
|
"type": "function",
|
87
99
|
"function": {
|
88
100
|
"name": func_name,
|
89
|
-
"description":
|
101
|
+
"description": func_description,
|
90
102
|
"parameters": parameters,
|
91
103
|
},
|
92
104
|
}
|
@@ -1,6 +1,10 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
1
5
|
from typing import Any, Literal
|
2
6
|
|
3
|
-
from ..
|
7
|
+
from ..nested.flatten import flatten
|
4
8
|
|
5
9
|
|
6
10
|
def extract_json_schema(
|
@@ -0,0 +1,170 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from pydantic import BaseModel, JsonValue
|
6
|
+
|
7
|
+
from lionagi.utils import UNDEFINED, copy, to_list
|
8
|
+
|
9
|
+
from .validate_boolean import validate_boolean
|
10
|
+
|
11
|
+
|
12
|
+
def validate_boolean_field(cls, value, default=None) -> bool | None:
|
13
|
+
"""Validate boolean field value.
|
14
|
+
|
15
|
+
Args:
|
16
|
+
cls: The validator class method.
|
17
|
+
value: The value to validate as boolean.
|
18
|
+
|
19
|
+
Returns:
|
20
|
+
bool | None: The validated boolean value or None if invalid.
|
21
|
+
"""
|
22
|
+
try:
|
23
|
+
return validate_boolean(value)
|
24
|
+
except Exception:
|
25
|
+
return default
|
26
|
+
|
27
|
+
|
28
|
+
def validate_same_dtype_flat_list(
|
29
|
+
cls,
|
30
|
+
value,
|
31
|
+
dtype: type,
|
32
|
+
default=[],
|
33
|
+
dropna: bool = True,
|
34
|
+
) -> list:
|
35
|
+
"""Validate list of same data type.
|
36
|
+
|
37
|
+
Args:
|
38
|
+
cls: The validator class method.
|
39
|
+
value: The value to validate as a list.
|
40
|
+
dtype: The data type to validate.
|
41
|
+
|
42
|
+
Returns:
|
43
|
+
list: The validated list of same data type.
|
44
|
+
|
45
|
+
Raises:
|
46
|
+
ValueError: If value is not a list or contains different data types.
|
47
|
+
"""
|
48
|
+
if value in [None, UNDEFINED, {}]:
|
49
|
+
return default
|
50
|
+
|
51
|
+
to_list_kwargs = {}
|
52
|
+
to_list_kwargs["flatten"] = True
|
53
|
+
to_list_kwargs["use_values"] = True
|
54
|
+
if dropna:
|
55
|
+
to_list_kwargs["dropna"] = True
|
56
|
+
value = to_list(value, **to_list_kwargs)
|
57
|
+
|
58
|
+
if not all(isinstance(i, dtype) for i in value):
|
59
|
+
raise ValueError(f"List must contain only {dtype.__name__} values.")
|
60
|
+
|
61
|
+
return value
|
62
|
+
|
63
|
+
|
64
|
+
def validate_nullable_string_field(
|
65
|
+
cls, value, field_name: str = None, strict=True
|
66
|
+
) -> str | None:
|
67
|
+
"""Validate nullable string field.
|
68
|
+
|
69
|
+
Args:
|
70
|
+
cls: The validator class method.
|
71
|
+
value: The value to validate as a string.
|
72
|
+
|
73
|
+
Returns:
|
74
|
+
str | None: The validated string value or None if invalid.
|
75
|
+
"""
|
76
|
+
if value is None or (isinstance(value, str) and not value.strip()):
|
77
|
+
return None
|
78
|
+
|
79
|
+
if not isinstance(value, str):
|
80
|
+
if strict:
|
81
|
+
raise ValueError(f"{field_name or 'Field'} must be a string.")
|
82
|
+
return None
|
83
|
+
|
84
|
+
return value
|
85
|
+
|
86
|
+
|
87
|
+
def validate_nullable_jsonvalue_field(cls, value) -> JsonValue | None:
|
88
|
+
"""Validates that the instruction is not empty or None and is in the correct format.
|
89
|
+
|
90
|
+
Args:
|
91
|
+
cls: The validator class method.
|
92
|
+
value (JsonValue | None): The instruction value to validate.
|
93
|
+
|
94
|
+
Returns:
|
95
|
+
JsonValue | None: The validated instruction or None if invalid.
|
96
|
+
"""
|
97
|
+
if value is None or (isinstance(value, str) and not value.strip()):
|
98
|
+
return None
|
99
|
+
return value
|
100
|
+
|
101
|
+
|
102
|
+
def validate_dict_kwargs_params(cls, value) -> dict:
|
103
|
+
"""Validate validator kwargs."""
|
104
|
+
if value in [None, UNDEFINED, []]:
|
105
|
+
return {}
|
106
|
+
if not isinstance(value, dict):
|
107
|
+
raise ValueError("Validator kwargs must be a dictionary")
|
108
|
+
return value
|
109
|
+
|
110
|
+
|
111
|
+
def validate_callable(
|
112
|
+
cls, value, undefind_able: bool = True, check_name: bool = False
|
113
|
+
) -> callable:
|
114
|
+
"""Validate strict callable function.
|
115
|
+
|
116
|
+
Args:
|
117
|
+
cls: The validator class method.
|
118
|
+
value: The value to validate as a callable function.
|
119
|
+
|
120
|
+
Returns:
|
121
|
+
callable: The validated callable function.
|
122
|
+
|
123
|
+
Raises:
|
124
|
+
ValueError: If value is not callable.
|
125
|
+
"""
|
126
|
+
if not callable(value):
|
127
|
+
if undefind_able and value in [None, UNDEFINED]:
|
128
|
+
pass
|
129
|
+
else:
|
130
|
+
raise ValueError("Value must be a callable function")
|
131
|
+
if check_name and not hasattr(value, "__name__"):
|
132
|
+
raise ValueError("Function must have a name.")
|
133
|
+
return value
|
134
|
+
|
135
|
+
|
136
|
+
def validate_model_to_type(cls, value):
|
137
|
+
if value is None:
|
138
|
+
return BaseModel
|
139
|
+
if isinstance(value, type) and issubclass(value, BaseModel):
|
140
|
+
return value
|
141
|
+
if isinstance(value, BaseModel):
|
142
|
+
return value.__class__
|
143
|
+
raise ValueError("Base must be a BaseModel subclass or instance.")
|
144
|
+
|
145
|
+
|
146
|
+
def validate_list_dict_str_keys(cls, value):
|
147
|
+
if value is None:
|
148
|
+
return []
|
149
|
+
if isinstance(value, dict):
|
150
|
+
value = list(value.keys())
|
151
|
+
if isinstance(value, set | tuple):
|
152
|
+
value = list(value)
|
153
|
+
if isinstance(value, list):
|
154
|
+
if not all(isinstance(i, str) for i in value):
|
155
|
+
raise ValueError("Field names must be strings.")
|
156
|
+
return copy(value)
|
157
|
+
raise ValueError("Fields must be a list, set, or dictionary.")
|
158
|
+
|
159
|
+
|
160
|
+
def validate_str_str_dict(cls, value):
|
161
|
+
if value is None:
|
162
|
+
return {}
|
163
|
+
if not isinstance(value, dict):
|
164
|
+
raise ValueError("Field must be a dictionary.")
|
165
|
+
for k, v in value.items():
|
166
|
+
if not isinstance(k, str):
|
167
|
+
raise ValueError("Field names must be strings.")
|
168
|
+
if not isinstance(v, str):
|
169
|
+
raise ValueError("Field value must be strings.")
|
170
|
+
return value
|
@@ -1,20 +1,54 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
1
5
|
from collections.abc import Callable, Sequence
|
2
|
-
from typing import Any, Literal
|
6
|
+
from typing import Any, Literal
|
7
|
+
|
8
|
+
from lionagi.utils import KeysDict, Params
|
3
9
|
|
4
|
-
from
|
10
|
+
from .string_similarity import (
|
5
11
|
SIMILARITY_ALGO_MAP,
|
6
12
|
SIMILARITY_TYPE,
|
7
13
|
string_similarity,
|
8
14
|
)
|
9
15
|
|
10
|
-
|
11
|
-
|
12
|
-
""
|
13
|
-
|
14
|
-
pass
|
16
|
+
__all__ = (
|
17
|
+
"fuzzy_match_keys",
|
18
|
+
"FuzzyMatchKeysParams",
|
19
|
+
)
|
15
20
|
|
16
21
|
|
17
|
-
|
22
|
+
class FuzzyMatchKeysParams(Params):
|
23
|
+
similarity_algo: SIMILARITY_TYPE | Callable[[str, str], float] = (
|
24
|
+
"jaro_winkler"
|
25
|
+
)
|
26
|
+
similarity_threshold: float = 0.85
|
27
|
+
fuzzy_match: bool = True
|
28
|
+
handle_unmatched: Literal["ignore", "raise", "remove", "fill", "force"] = (
|
29
|
+
"ignore"
|
30
|
+
)
|
31
|
+
fill_value: Any = None
|
32
|
+
fill_mapping: dict[str, Any] | None = None
|
33
|
+
strict: bool = False
|
34
|
+
|
35
|
+
def __call__(
|
36
|
+
self, d_: dict[str, Any], keys: Sequence[str] | KeysDict
|
37
|
+
) -> dict[str, Any]:
|
38
|
+
return fuzzy_match_keys(
|
39
|
+
d_,
|
40
|
+
keys,
|
41
|
+
similarity_algo=self.similarity_algo,
|
42
|
+
similarity_threshold=self.similarity_threshold,
|
43
|
+
fuzzy_match=self.fuzzy_match,
|
44
|
+
handle_unmatched=self.handle_unmatched,
|
45
|
+
fill_value=self.fill_value,
|
46
|
+
fill_mapping=self.fill_mapping,
|
47
|
+
strict=self.strict,
|
48
|
+
)
|
49
|
+
|
50
|
+
|
51
|
+
def fuzzy_match_keys(
|
18
52
|
d_: dict[str, Any],
|
19
53
|
keys: Sequence[str] | KeysDict,
|
20
54
|
/,
|
@@ -1,13 +1,48 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
1
5
|
from collections.abc import Callable, Sequence
|
2
6
|
from typing import Any, Literal
|
3
7
|
|
4
|
-
from
|
5
|
-
|
6
|
-
from
|
7
|
-
from .
|
8
|
+
from lionagi.utils import KeysDict, Params, to_dict, to_json
|
9
|
+
|
10
|
+
from .fuzzy_match_keys import fuzzy_match_keys
|
11
|
+
from .string_similarity import SIMILARITY_TYPE
|
12
|
+
|
13
|
+
|
14
|
+
class FuzzyValidateMappingParams(Params):
|
15
|
+
similarity_algo: SIMILARITY_TYPE | Callable[[str, str], float] = (
|
16
|
+
"jaro_winkler"
|
17
|
+
)
|
18
|
+
similarity_threshold: float = 0.85
|
19
|
+
fuzzy_match: bool = True
|
20
|
+
handle_unmatched: Literal["ignore", "raise", "remove", "fill", "force"] = (
|
21
|
+
"ignore"
|
22
|
+
)
|
23
|
+
fill_value: Any = None
|
24
|
+
fill_mapping: dict[str, Any] | None = None
|
25
|
+
strict: bool = False
|
26
|
+
suppress_conversion_errors: bool = False
|
27
|
+
|
28
|
+
def __call__(
|
29
|
+
self, d_: dict[str, Any], keys: Sequence[str] | KeysDict
|
30
|
+
) -> dict[str, Any]:
|
31
|
+
return fuzzy_validate_mapping(
|
32
|
+
d_,
|
33
|
+
keys,
|
34
|
+
similarity_algo=self.similarity_algo,
|
35
|
+
similarity_threshold=self.similarity_threshold,
|
36
|
+
fuzzy_match=self.fuzzy_match,
|
37
|
+
handle_unmatched=self.handle_unmatched,
|
38
|
+
fill_value=self.fill_value,
|
39
|
+
fill_mapping=self.fill_mapping,
|
40
|
+
strict=self.strict,
|
41
|
+
suppress_conversion_errors=self.suppress_conversion_errors,
|
42
|
+
)
|
8
43
|
|
9
44
|
|
10
|
-
def
|
45
|
+
def fuzzy_validate_mapping(
|
11
46
|
d: Any,
|
12
47
|
keys: Sequence[str] | KeysDict,
|
13
48
|
/,
|
@@ -96,7 +131,7 @@ def validate_mapping(
|
|
96
131
|
raise ValueError(f"Failed to convert input to dictionary: {e}")
|
97
132
|
|
98
133
|
# Validate the dictionary
|
99
|
-
return
|
134
|
+
return fuzzy_match_keys(
|
100
135
|
dict_input,
|
101
136
|
keys,
|
102
137
|
similarity_algo=similarity_algo,
|
@@ -1,7 +1,14 @@
|
|
1
|
-
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
2
4
|
|
5
|
+
from collections.abc import Callable, Sequence
|
6
|
+
from dataclasses import dataclass
|
3
7
|
from difflib import SequenceMatcher
|
4
8
|
from itertools import product
|
9
|
+
from typing import Literal
|
10
|
+
|
11
|
+
__all__ = ("string_similarity",)
|
5
12
|
|
6
13
|
|
7
14
|
def cosine_similarity(s1: str, s2: str) -> float:
|
@@ -217,3 +224,110 @@ SIMILARITY_ALGO_MAP = {
|
|
217
224
|
"hamming": hamming_similarity,
|
218
225
|
"cosine": cosine_similarity,
|
219
226
|
}
|
227
|
+
|
228
|
+
|
229
|
+
SIMILARITY_TYPE = Literal[
|
230
|
+
"jaro_winkler",
|
231
|
+
"levenshtein",
|
232
|
+
"sequence_matcher",
|
233
|
+
"hamming",
|
234
|
+
"cosine",
|
235
|
+
]
|
236
|
+
|
237
|
+
# Type alias for similarity functions
|
238
|
+
SimilarityFunc = Callable[[str, str], float]
|
239
|
+
|
240
|
+
|
241
|
+
@dataclass(frozen=True)
|
242
|
+
class MatchResult:
|
243
|
+
"""Represents a string matching result."""
|
244
|
+
|
245
|
+
word: str
|
246
|
+
score: float
|
247
|
+
index: int
|
248
|
+
|
249
|
+
|
250
|
+
def string_similarity(
|
251
|
+
word: str,
|
252
|
+
correct_words: Sequence[str],
|
253
|
+
algorithm: SIMILARITY_TYPE | Callable[[str, str], float] = "jaro_winkler",
|
254
|
+
threshold: float = 0.0,
|
255
|
+
case_sensitive: bool = False,
|
256
|
+
return_most_similar: bool = False,
|
257
|
+
) -> str | list[str] | None:
|
258
|
+
"""Find similar strings using specified similarity algorithm.
|
259
|
+
|
260
|
+
Args:
|
261
|
+
word: The input string to find matches for
|
262
|
+
correct_words: List of strings to compare against
|
263
|
+
algorithm: Similarity algorithm to use
|
264
|
+
threshold: Minimum similarity score (0.0 to 1.0)
|
265
|
+
case_sensitive: Whether to consider case when matching
|
266
|
+
return_most_similar: Return only the most similar match
|
267
|
+
|
268
|
+
Returns:
|
269
|
+
Matching string(s) or None if no matches found
|
270
|
+
|
271
|
+
Raises:
|
272
|
+
ValueError: If correct_words is empty or threshold is invalid
|
273
|
+
"""
|
274
|
+
if not correct_words:
|
275
|
+
raise ValueError("correct_words must not be empty")
|
276
|
+
|
277
|
+
if not 0.0 <= threshold <= 1.0:
|
278
|
+
raise ValueError("threshold must be between 0.0 and 1.0")
|
279
|
+
|
280
|
+
# Convert inputs to strings
|
281
|
+
compare_word = str(word)
|
282
|
+
original_words = [str(w) for w in correct_words]
|
283
|
+
|
284
|
+
# Handle case sensitivity
|
285
|
+
if not case_sensitive:
|
286
|
+
compare_word = compare_word.lower()
|
287
|
+
compare_words = [w.lower() for w in original_words]
|
288
|
+
else:
|
289
|
+
compare_words = original_words.copy()
|
290
|
+
|
291
|
+
# Get scoring function
|
292
|
+
if isinstance(algorithm, str):
|
293
|
+
score_func = SIMILARITY_ALGO_MAP.get(algorithm)
|
294
|
+
if score_func is None:
|
295
|
+
raise ValueError(f"Unsupported algorithm: {algorithm}")
|
296
|
+
elif callable(algorithm):
|
297
|
+
score_func = algorithm
|
298
|
+
else:
|
299
|
+
raise ValueError(
|
300
|
+
"algorithm must be a string specifying a built-in algorithm or "
|
301
|
+
"a callable"
|
302
|
+
)
|
303
|
+
|
304
|
+
# Calculate similarities
|
305
|
+
results = []
|
306
|
+
for idx, (orig_word, comp_word) in enumerate(
|
307
|
+
zip(original_words, compare_words)
|
308
|
+
):
|
309
|
+
# Skip different length strings for hamming similarity
|
310
|
+
if algorithm == "hamming" and len(comp_word) != len(compare_word):
|
311
|
+
continue
|
312
|
+
|
313
|
+
score = score_func(compare_word, comp_word)
|
314
|
+
if score >= threshold:
|
315
|
+
results.append(MatchResult(orig_word, score, idx))
|
316
|
+
|
317
|
+
# Return None if no matches
|
318
|
+
if not results:
|
319
|
+
return None
|
320
|
+
|
321
|
+
# Sort by score (descending) and index (ascending) for stable ordering
|
322
|
+
results.sort(key=lambda x: (-x.score, x.index))
|
323
|
+
|
324
|
+
# Return results
|
325
|
+
if return_most_similar:
|
326
|
+
return results[0].word
|
327
|
+
|
328
|
+
# Filter exact matches for case sensitive comparisons
|
329
|
+
if case_sensitive:
|
330
|
+
max_score = results[0].score
|
331
|
+
results = [r for r in results if r.score == max_score]
|
332
|
+
|
333
|
+
return [r.word for r in results]
|
@@ -1,7 +1,46 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
3
4
|
|
4
|
-
from
|
5
|
+
from numbers import Complex
|
6
|
+
from typing import Any, Final
|
7
|
+
|
8
|
+
# Define constants for valid boolean string representations
|
9
|
+
TRUE_VALUES: Final[frozenset[str]] = frozenset(
|
10
|
+
[
|
11
|
+
"true",
|
12
|
+
"1",
|
13
|
+
"yes",
|
14
|
+
"y",
|
15
|
+
"on",
|
16
|
+
"correct",
|
17
|
+
"t",
|
18
|
+
"enabled",
|
19
|
+
"enable",
|
20
|
+
"active",
|
21
|
+
"activated",
|
22
|
+
]
|
23
|
+
)
|
24
|
+
|
25
|
+
FALSE_VALUES: Final[frozenset[str]] = frozenset(
|
26
|
+
[
|
27
|
+
"false",
|
28
|
+
"0",
|
29
|
+
"no",
|
30
|
+
"n",
|
31
|
+
"off",
|
32
|
+
"incorrect",
|
33
|
+
"f",
|
34
|
+
"disabled",
|
35
|
+
"disable",
|
36
|
+
"inactive",
|
37
|
+
"deactivated",
|
38
|
+
"none",
|
39
|
+
"null",
|
40
|
+
"n/a",
|
41
|
+
"na",
|
42
|
+
]
|
43
|
+
)
|
5
44
|
|
6
45
|
|
7
46
|
def validate_boolean(x: Any, /) -> bool:
|
lionagi/operations/__init__.py
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from .brainstorm.brainstorm import brainstorm
|
6
|
+
from .plan.plan import plan
|
7
|
+
from .select.select import select
|
8
|
+
|
9
|
+
__all__ = (
|
10
|
+
"brainstorm",
|
11
|
+
"plan",
|
12
|
+
"select",
|
13
|
+
)
|
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|