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
lionagi/libs/parse/xml/parser.py
DELETED
@@ -1,93 +0,0 @@
|
|
1
|
-
import re
|
2
|
-
from typing import Any
|
3
|
-
|
4
|
-
|
5
|
-
class XMLParser:
|
6
|
-
def __init__(self, xml_string: str):
|
7
|
-
self.xml_string = xml_string.strip()
|
8
|
-
self.index = 0
|
9
|
-
|
10
|
-
def parse(self) -> dict[str, Any]:
|
11
|
-
"""Parse the XML string and return the root element as a dictionary."""
|
12
|
-
return self._parse_element()
|
13
|
-
|
14
|
-
def _parse_element(self) -> dict[str, Any]:
|
15
|
-
"""Parse a single XML element and its children."""
|
16
|
-
self._skip_whitespace()
|
17
|
-
if self.xml_string[self.index] != "<":
|
18
|
-
raise ValueError(
|
19
|
-
f"Expected '<', found '{self.xml_string[self.index]}'"
|
20
|
-
)
|
21
|
-
|
22
|
-
tag, attributes = self._parse_opening_tag()
|
23
|
-
children: dict[str, str | list | dict] = {}
|
24
|
-
text = ""
|
25
|
-
|
26
|
-
while self.index < len(self.xml_string):
|
27
|
-
self._skip_whitespace()
|
28
|
-
if self.xml_string.startswith("</", self.index):
|
29
|
-
closing_tag = self._parse_closing_tag()
|
30
|
-
if closing_tag != tag:
|
31
|
-
raise ValueError(
|
32
|
-
f"Mismatched tags: '{tag}' and '{closing_tag}'"
|
33
|
-
)
|
34
|
-
break
|
35
|
-
elif self.xml_string.startswith("<", self.index):
|
36
|
-
child = self._parse_element()
|
37
|
-
child_tag, child_data = next(iter(child.items()))
|
38
|
-
if child_tag in children:
|
39
|
-
if not isinstance(children[child_tag], list):
|
40
|
-
children[child_tag] = [children[child_tag]]
|
41
|
-
children[child_tag].append(child_data)
|
42
|
-
else:
|
43
|
-
children[child_tag] = child_data
|
44
|
-
else:
|
45
|
-
text += self._parse_text()
|
46
|
-
|
47
|
-
result: dict[str, Any] = {}
|
48
|
-
if attributes:
|
49
|
-
result["@attributes"] = attributes
|
50
|
-
if children:
|
51
|
-
result.update(children)
|
52
|
-
elif text.strip():
|
53
|
-
result = text.strip()
|
54
|
-
|
55
|
-
return {tag: result}
|
56
|
-
|
57
|
-
def _parse_opening_tag(self) -> tuple[str, dict[str, str]]:
|
58
|
-
"""Parse an opening XML tag and its attributes."""
|
59
|
-
match = re.match(
|
60
|
-
r'<(\w+)((?:\s+\w+="[^"]*")*)\s*/?>',
|
61
|
-
self.xml_string[self.index :], # noqa
|
62
|
-
)
|
63
|
-
if not match:
|
64
|
-
raise ValueError("Invalid opening tag")
|
65
|
-
self.index += match.end()
|
66
|
-
tag = match.group(1)
|
67
|
-
attributes = dict(re.findall(r'(\w+)="([^"]*)"', match.group(2)))
|
68
|
-
return tag, attributes
|
69
|
-
|
70
|
-
def _parse_closing_tag(self) -> str:
|
71
|
-
"""Parse a closing XML tag."""
|
72
|
-
match = re.match(r"</(\w+)>", self.xml_string[self.index :]) # noqa
|
73
|
-
if not match:
|
74
|
-
raise ValueError("Invalid closing tag")
|
75
|
-
self.index += match.end()
|
76
|
-
return match.group(1)
|
77
|
-
|
78
|
-
def _parse_text(self) -> str:
|
79
|
-
"""Parse text content between XML tags."""
|
80
|
-
start = self.index
|
81
|
-
while (
|
82
|
-
self.index < len(self.xml_string)
|
83
|
-
and self.xml_string[self.index] != "<"
|
84
|
-
):
|
85
|
-
self.index += 1
|
86
|
-
return self.xml_string[start : self.index] # noqa
|
87
|
-
|
88
|
-
def _skip_whitespace(self) -> None:
|
89
|
-
"""Skip any whitespace characters at the current parsing position."""
|
90
|
-
p_ = len(self.xml_string[self.index :]) # noqa
|
91
|
-
m_ = len(self.xml_string[self.index :].lstrip()) # noqa
|
92
|
-
|
93
|
-
self.index += p_ - m_
|
@@ -1,32 +0,0 @@
|
|
1
|
-
"""String similarity calculation and matching functionality."""
|
2
|
-
|
3
|
-
from .algorithms import (
|
4
|
-
SIMILARITY_ALGO_MAP,
|
5
|
-
cosine_similarity,
|
6
|
-
hamming_similarity,
|
7
|
-
jaro_distance,
|
8
|
-
jaro_winkler_similarity,
|
9
|
-
levenshtein_distance,
|
10
|
-
levenshtein_similarity,
|
11
|
-
sequence_matcher_similarity,
|
12
|
-
)
|
13
|
-
from .matcher import MatchResult, string_similarity
|
14
|
-
from .utils import SIMILARITY_TYPE, SimilarityFunc
|
15
|
-
|
16
|
-
__all__ = [
|
17
|
-
# Main functionality
|
18
|
-
"string_similarity",
|
19
|
-
"MatchResult",
|
20
|
-
# Algorithms
|
21
|
-
"cosine_similarity",
|
22
|
-
"hamming_similarity",
|
23
|
-
"jaro_distance",
|
24
|
-
"jaro_winkler_similarity",
|
25
|
-
"levenshtein_distance",
|
26
|
-
"levenshtein_similarity",
|
27
|
-
"sequence_matcher_similarity",
|
28
|
-
# Types and constants
|
29
|
-
"SIMILARITY_TYPE",
|
30
|
-
"SimilarityFunc",
|
31
|
-
"SIMILARITY_ALGO_MAP",
|
32
|
-
]
|
@@ -1,102 +0,0 @@
|
|
1
|
-
"""String matching functionality using similarity algorithms."""
|
2
|
-
|
3
|
-
from collections.abc import Callable, Sequence
|
4
|
-
from dataclasses import dataclass
|
5
|
-
|
6
|
-
from .algorithms import SIMILARITY_ALGO_MAP
|
7
|
-
from .utils import SIMILARITY_TYPE
|
8
|
-
|
9
|
-
|
10
|
-
@dataclass(frozen=True)
|
11
|
-
class MatchResult:
|
12
|
-
"""Represents a string matching result."""
|
13
|
-
|
14
|
-
word: str
|
15
|
-
score: float
|
16
|
-
index: int
|
17
|
-
|
18
|
-
|
19
|
-
def string_similarity(
|
20
|
-
word: str,
|
21
|
-
correct_words: Sequence[str],
|
22
|
-
algorithm: SIMILARITY_TYPE | Callable[[str, str], float] = "jaro_winkler",
|
23
|
-
threshold: float = 0.0,
|
24
|
-
case_sensitive: bool = False,
|
25
|
-
return_most_similar: bool = False,
|
26
|
-
) -> str | list[str] | None:
|
27
|
-
"""Find similar strings using specified similarity algorithm.
|
28
|
-
|
29
|
-
Args:
|
30
|
-
word: The input string to find matches for
|
31
|
-
correct_words: List of strings to compare against
|
32
|
-
algorithm: Similarity algorithm to use
|
33
|
-
threshold: Minimum similarity score (0.0 to 1.0)
|
34
|
-
case_sensitive: Whether to consider case when matching
|
35
|
-
return_most_similar: Return only the most similar match
|
36
|
-
|
37
|
-
Returns:
|
38
|
-
Matching string(s) or None if no matches found
|
39
|
-
|
40
|
-
Raises:
|
41
|
-
ValueError: If correct_words is empty or threshold is invalid
|
42
|
-
"""
|
43
|
-
if not correct_words:
|
44
|
-
raise ValueError("correct_words must not be empty")
|
45
|
-
|
46
|
-
if not 0.0 <= threshold <= 1.0:
|
47
|
-
raise ValueError("threshold must be between 0.0 and 1.0")
|
48
|
-
|
49
|
-
# Convert inputs to strings
|
50
|
-
compare_word = str(word)
|
51
|
-
original_words = [str(w) for w in correct_words]
|
52
|
-
|
53
|
-
# Handle case sensitivity
|
54
|
-
if not case_sensitive:
|
55
|
-
compare_word = compare_word.lower()
|
56
|
-
compare_words = [w.lower() for w in original_words]
|
57
|
-
else:
|
58
|
-
compare_words = original_words.copy()
|
59
|
-
|
60
|
-
# Get scoring function
|
61
|
-
if isinstance(algorithm, str):
|
62
|
-
score_func = SIMILARITY_ALGO_MAP.get(algorithm)
|
63
|
-
if score_func is None:
|
64
|
-
raise ValueError(f"Unsupported algorithm: {algorithm}")
|
65
|
-
elif callable(algorithm):
|
66
|
-
score_func = algorithm
|
67
|
-
else:
|
68
|
-
raise ValueError(
|
69
|
-
"algorithm must be a string specifying a built-in algorithm or "
|
70
|
-
"a callable"
|
71
|
-
)
|
72
|
-
|
73
|
-
# Calculate similarities
|
74
|
-
results = []
|
75
|
-
for idx, (orig_word, comp_word) in enumerate(
|
76
|
-
zip(original_words, compare_words)
|
77
|
-
):
|
78
|
-
# Skip different length strings for hamming similarity
|
79
|
-
if algorithm == "hamming" and len(comp_word) != len(compare_word):
|
80
|
-
continue
|
81
|
-
|
82
|
-
score = score_func(compare_word, comp_word)
|
83
|
-
if score >= threshold:
|
84
|
-
results.append(MatchResult(orig_word, score, idx))
|
85
|
-
|
86
|
-
# Return None if no matches
|
87
|
-
if not results:
|
88
|
-
return None
|
89
|
-
|
90
|
-
# Sort by score (descending) and index (ascending) for stable ordering
|
91
|
-
results.sort(key=lambda x: (-x.score, x.index))
|
92
|
-
|
93
|
-
# Return results
|
94
|
-
if return_most_similar:
|
95
|
-
return results[0].word
|
96
|
-
|
97
|
-
# Filter exact matches for case sensitive comparisons
|
98
|
-
if case_sensitive:
|
99
|
-
max_score = results[0].score
|
100
|
-
results = [r for r in results if r.score == max_score]
|
101
|
-
|
102
|
-
return [r.word for r in results]
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"""Type definitions for string similarity calculations."""
|
2
|
-
|
3
|
-
from collections.abc import Callable
|
4
|
-
from typing import Literal
|
5
|
-
|
6
|
-
SIMILARITY_TYPE = Literal[
|
7
|
-
"jaro_winkler",
|
8
|
-
"levenshtein",
|
9
|
-
"sequence_matcher",
|
10
|
-
"hamming",
|
11
|
-
"cosine",
|
12
|
-
]
|
13
|
-
|
14
|
-
# Type alias for similarity functions
|
15
|
-
SimilarityFunc = Callable[[str, str], float]
|
lionagi/libs/utils.py
DELETED
@@ -1,266 +0,0 @@
|
|
1
|
-
import ast
|
2
|
-
import copy as _copy
|
3
|
-
import importlib
|
4
|
-
import importlib.metadata
|
5
|
-
import importlib.util
|
6
|
-
import os
|
7
|
-
import random
|
8
|
-
import subprocess
|
9
|
-
import sys
|
10
|
-
from collections.abc import Mapping, Sequence
|
11
|
-
from dataclasses import asdict
|
12
|
-
from datetime import datetime, timezone
|
13
|
-
from hashlib import sha256
|
14
|
-
from typing import Literal, Self, TypeVar
|
15
|
-
|
16
|
-
T = TypeVar("T")
|
17
|
-
|
18
|
-
|
19
|
-
class DataClass:
|
20
|
-
|
21
|
-
def to_dict(self) -> dict:
|
22
|
-
return asdict(self)
|
23
|
-
|
24
|
-
@classmethod
|
25
|
-
def from_dict(cls, data: dict) -> Self:
|
26
|
-
return cls(**data)
|
27
|
-
|
28
|
-
|
29
|
-
def unique_hash(n: int = 32) -> str:
|
30
|
-
"""unique random hash"""
|
31
|
-
current_time = datetime.now().isoformat().encode("utf-8")
|
32
|
-
random_bytes = os.urandom(42)
|
33
|
-
return sha256(current_time + random_bytes).hexdigest()[:n]
|
34
|
-
|
35
|
-
|
36
|
-
def is_same_dtype(
|
37
|
-
input_: list | dict, dtype: type | None = None, return_dtype: bool = False
|
38
|
-
) -> bool | tuple[bool, type]:
|
39
|
-
"""Check if all elements in input have the same data type."""
|
40
|
-
if not input_:
|
41
|
-
return True if not return_dtype else (True, None)
|
42
|
-
|
43
|
-
iterable = input_.values() if isinstance(input_, Mapping) else input_
|
44
|
-
first_element_type = type(next(iter(iterable), None))
|
45
|
-
|
46
|
-
dtype = dtype or first_element_type
|
47
|
-
result = all(isinstance(element, dtype) for element in iterable)
|
48
|
-
return (result, dtype) if return_dtype else result
|
49
|
-
|
50
|
-
|
51
|
-
def insert_random_hyphens(
|
52
|
-
s: str,
|
53
|
-
num_hyphens: int = 1,
|
54
|
-
start_index: int | None = None,
|
55
|
-
end_index: int | None = None,
|
56
|
-
) -> str:
|
57
|
-
"""Insert random hyphens into a string."""
|
58
|
-
if len(s) < 2:
|
59
|
-
return s
|
60
|
-
|
61
|
-
prefix = s[:start_index] if start_index else ""
|
62
|
-
postfix = s[end_index:] if end_index else ""
|
63
|
-
modifiable_part = s[start_index:end_index] if start_index else s
|
64
|
-
|
65
|
-
positions = random.sample(range(len(modifiable_part)), num_hyphens)
|
66
|
-
positions.sort()
|
67
|
-
|
68
|
-
for pos in reversed(positions):
|
69
|
-
modifiable_part = modifiable_part[:pos] + "-" + modifiable_part[pos:]
|
70
|
-
|
71
|
-
return prefix + modifiable_part + postfix
|
72
|
-
|
73
|
-
|
74
|
-
def get_file_classes(file_path):
|
75
|
-
with open(file_path) as file:
|
76
|
-
file_content = file.read()
|
77
|
-
|
78
|
-
tree = ast.parse(file_content)
|
79
|
-
|
80
|
-
class_file_dict = {}
|
81
|
-
for node in tree.body:
|
82
|
-
if isinstance(node, ast.ClassDef):
|
83
|
-
class_file_dict[node.name] = file_path
|
84
|
-
|
85
|
-
return class_file_dict
|
86
|
-
|
87
|
-
|
88
|
-
def get_class_file_registry(folder_path, pattern_list):
|
89
|
-
class_file_registry = {}
|
90
|
-
for root, _, files in os.walk(folder_path):
|
91
|
-
for file in files:
|
92
|
-
if file.endswith(".py"):
|
93
|
-
if any(pattern in root for pattern in pattern_list):
|
94
|
-
class_file_dict = get_file_classes(
|
95
|
-
os.path.join(root, file)
|
96
|
-
)
|
97
|
-
class_file_registry.update(class_file_dict)
|
98
|
-
return class_file_registry
|
99
|
-
|
100
|
-
|
101
|
-
def get_class_objects(file_path):
|
102
|
-
class_objects = {}
|
103
|
-
spec = importlib.util.spec_from_file_location("module.name", file_path)
|
104
|
-
module = importlib.util.module_from_spec(spec)
|
105
|
-
spec.loader.exec_module(module)
|
106
|
-
|
107
|
-
for class_name in dir(module):
|
108
|
-
obj = getattr(module, class_name)
|
109
|
-
if isinstance(obj, type):
|
110
|
-
class_objects[class_name] = obj
|
111
|
-
|
112
|
-
return class_objects
|
113
|
-
|
114
|
-
|
115
|
-
def time(
|
116
|
-
*,
|
117
|
-
tz: timezone = timezone.utc,
|
118
|
-
type_: Literal["timestamp", "datetime", "iso", "custom"] = "timestamp",
|
119
|
-
sep: str | None = "T",
|
120
|
-
timespec: str | None = "auto",
|
121
|
-
custom_format: str | None = None,
|
122
|
-
custom_sep: str | None = None,
|
123
|
-
) -> float | str | datetime:
|
124
|
-
"""
|
125
|
-
Get current time in various formats.
|
126
|
-
|
127
|
-
Args:
|
128
|
-
tz: Timezone for the time (default: utc).
|
129
|
-
type_: Type of time to return (default: "timestamp").
|
130
|
-
Options: "timestamp", "datetime", "iso", "custom".
|
131
|
-
sep: Separator for ISO format (default: "T").
|
132
|
-
timespec: Timespec for ISO format (default: "auto").
|
133
|
-
custom_format: Custom strftime format string for
|
134
|
-
type_="custom".
|
135
|
-
custom_sep: Custom separator for type_="custom",
|
136
|
-
replaces "-", ":", ".".
|
137
|
-
|
138
|
-
Returns:
|
139
|
-
Current time in the specified format.
|
140
|
-
|
141
|
-
Raises:
|
142
|
-
ValueError: If an invalid type_ is provided or if custom_format
|
143
|
-
is not provided when type_="custom".
|
144
|
-
"""
|
145
|
-
now = datetime.now(tz=tz)
|
146
|
-
|
147
|
-
if type_ == "iso":
|
148
|
-
return now.isoformat(sep=sep, timespec=timespec)
|
149
|
-
elif type_ == "timestamp":
|
150
|
-
return now.timestamp()
|
151
|
-
elif type_ == "datetime":
|
152
|
-
return now
|
153
|
-
elif type_ == "custom":
|
154
|
-
if not custom_format:
|
155
|
-
raise ValueError(
|
156
|
-
"custom_format must be provided when type_='custom'"
|
157
|
-
)
|
158
|
-
formatted_time = now.strftime(custom_format)
|
159
|
-
if custom_sep is not None:
|
160
|
-
for old_sep in ("-", ":", "."):
|
161
|
-
formatted_time = formatted_time.replace(old_sep, custom_sep)
|
162
|
-
return formatted_time
|
163
|
-
|
164
|
-
raise ValueError(
|
165
|
-
f"Invalid value <{type_}> for `type_`, must be"
|
166
|
-
" one of 'timestamp', 'datetime', 'iso', or 'custom'."
|
167
|
-
)
|
168
|
-
|
169
|
-
|
170
|
-
def copy(obj: T, /, *, deep: bool = True, num: int = 1) -> T | list[T]:
|
171
|
-
"""
|
172
|
-
Create one or more copies of an object.
|
173
|
-
|
174
|
-
Args:
|
175
|
-
obj: The object to be copied.
|
176
|
-
deep: If True, create a deep copy. Otherwise, create a shallow
|
177
|
-
copy.
|
178
|
-
num: The number of copies to create.
|
179
|
-
|
180
|
-
Returns:
|
181
|
-
A single copy if num is 1, otherwise a list of copies.
|
182
|
-
|
183
|
-
Raises:
|
184
|
-
ValueError: If num is less than 1.
|
185
|
-
"""
|
186
|
-
if num < 1:
|
187
|
-
raise ValueError("Number of copies must be at least 1")
|
188
|
-
|
189
|
-
copy_func = _copy.deepcopy if deep else _copy.copy
|
190
|
-
return [copy_func(obj) for _ in range(num)] if num > 1 else copy_func(obj)
|
191
|
-
|
192
|
-
|
193
|
-
def run_pip_command(
|
194
|
-
args: Sequence[str],
|
195
|
-
) -> subprocess.CompletedProcess[bytes]:
|
196
|
-
"""Run a pip command."""
|
197
|
-
return subprocess.run(
|
198
|
-
[sys.executable, "-m", "pip"] + list(args),
|
199
|
-
check=True,
|
200
|
-
capture_output=True,
|
201
|
-
)
|
202
|
-
|
203
|
-
|
204
|
-
def format_deprecation_msg(
|
205
|
-
deprecated_name: str,
|
206
|
-
type_: str,
|
207
|
-
deprecated_version: str,
|
208
|
-
removal_version: str,
|
209
|
-
replacement: str | Literal["python"] | None = None,
|
210
|
-
additional_msg: str | None = None,
|
211
|
-
) -> None:
|
212
|
-
|
213
|
-
msg = (
|
214
|
-
f"{type_}: <{deprecated_name}> is deprecated since "
|
215
|
-
f"<{deprecated_version}> and will be removed in {removal_version}."
|
216
|
-
)
|
217
|
-
if replacement is None:
|
218
|
-
msg += " No replacement is available."
|
219
|
-
elif replacement == "python":
|
220
|
-
msg += " Use the Python standard library instead."
|
221
|
-
elif replacement:
|
222
|
-
msg += f" Use <{replacement}> instead."
|
223
|
-
if additional_msg:
|
224
|
-
msg += f" {additional_msg}"
|
225
|
-
return msg
|
226
|
-
|
227
|
-
|
228
|
-
def get_bins(input_: list[str], upper: int) -> list[list[int]]:
|
229
|
-
"""Organizes indices of strings into bins based on a cumulative upper limit.
|
230
|
-
|
231
|
-
Args:
|
232
|
-
input_ (List[str]): The list of strings to be binned.
|
233
|
-
upper (int): The cumulative length upper limit for each bin.
|
234
|
-
|
235
|
-
Returns:
|
236
|
-
List[List[int]]: A list of bins, each bin is a list of indices from the input list.
|
237
|
-
"""
|
238
|
-
current = 0
|
239
|
-
bins = []
|
240
|
-
current_bin = []
|
241
|
-
for idx, item in enumerate(input_):
|
242
|
-
if current + len(item) < upper:
|
243
|
-
current_bin.append(idx)
|
244
|
-
current += len(item)
|
245
|
-
else:
|
246
|
-
bins.append(current_bin)
|
247
|
-
current_bin = [idx]
|
248
|
-
current = len(item)
|
249
|
-
if current_bin:
|
250
|
-
bins.append(current_bin)
|
251
|
-
return bins
|
252
|
-
|
253
|
-
|
254
|
-
__all__ = [
|
255
|
-
"unique_hash",
|
256
|
-
"is_same_dtype",
|
257
|
-
"insert_random_hyphens",
|
258
|
-
"get_file_classes",
|
259
|
-
"get_class_file_registry",
|
260
|
-
"get_class_objects",
|
261
|
-
"time",
|
262
|
-
"copy",
|
263
|
-
"run_pip_command",
|
264
|
-
"format_deprecation_msg",
|
265
|
-
"get_bins",
|
266
|
-
]
|
@@ -1,96 +0,0 @@
|
|
1
|
-
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
-
#
|
3
|
-
# SPDX-License-Identifier: Apache-2.0
|
4
|
-
|
5
|
-
import logging
|
6
|
-
from pathlib import Path
|
7
|
-
|
8
|
-
import pandas as pd
|
9
|
-
|
10
|
-
from lionagi.integrations.pandas_ import to_df
|
11
|
-
from lionagi.protocols.adapters.adapter import Adapter, T
|
12
|
-
|
13
|
-
|
14
|
-
class PandasSeriesAdapter(Adapter):
|
15
|
-
|
16
|
-
obj_key = "pd_series"
|
17
|
-
alias = ("pandas_series", "pd.series", "pd_series")
|
18
|
-
|
19
|
-
@classmethod
|
20
|
-
def from_obj(cls, subj_cls: type[T], obj: pd.Series, /, **kwargs) -> dict:
|
21
|
-
return obj.to_dict(**kwargs)
|
22
|
-
|
23
|
-
@classmethod
|
24
|
-
def to_obj(cls, subj: T, /, **kwargs) -> pd.Series:
|
25
|
-
return pd.Series(subj.to_dict(), **kwargs)
|
26
|
-
|
27
|
-
|
28
|
-
class PandasDataFrameAdapter(Adapter):
|
29
|
-
|
30
|
-
obj_key = "pd_dataframe"
|
31
|
-
alias = ("pandas_dataframe", "pd.DataFrame", "pd_dataframe")
|
32
|
-
|
33
|
-
@classmethod
|
34
|
-
def from_obj(
|
35
|
-
cls, subj_cls: type[T], obj: pd.DataFrame, /, **kwargs
|
36
|
-
) -> list[dict]:
|
37
|
-
"""kwargs for pd.DataFrame.to_dict"""
|
38
|
-
return obj.to_dict(orient="records", **kwargs)
|
39
|
-
|
40
|
-
@classmethod
|
41
|
-
def to_obj(cls, subj: list[T], /, **kwargs) -> pd.DataFrame:
|
42
|
-
"""kwargs for pd.DataFrame"""
|
43
|
-
out_ = []
|
44
|
-
for i in subj:
|
45
|
-
_dict = i.to_dict()
|
46
|
-
_dict["timestamp"] = i.created_datetime
|
47
|
-
out_.append(_dict)
|
48
|
-
df = to_df(out_, **kwargs)
|
49
|
-
if "timestamp" in df.columns:
|
50
|
-
df["timestamp"] = pd.to_datetime(df["timestamp"])
|
51
|
-
return df
|
52
|
-
|
53
|
-
|
54
|
-
class CSVFileAdapter(Adapter):
|
55
|
-
|
56
|
-
obj_key = ".csv"
|
57
|
-
alias = (".csv", "csv_file", "csv")
|
58
|
-
|
59
|
-
@classmethod
|
60
|
-
def from_obj(
|
61
|
-
cls, subj_cls: type[T], obj: str | Path, /, **kwargs
|
62
|
-
) -> list[dict]:
|
63
|
-
"""kwargs for pd.read_csv"""
|
64
|
-
df = pd.read_csv(obj, **kwargs)
|
65
|
-
return df.to_dict(orient="records")
|
66
|
-
|
67
|
-
@classmethod
|
68
|
-
def to_obj(
|
69
|
-
cls,
|
70
|
-
subj: list[T],
|
71
|
-
/,
|
72
|
-
fp: str | Path,
|
73
|
-
**kwargs,
|
74
|
-
) -> None:
|
75
|
-
"""kwargs for pd.DataFrame.to_csv"""
|
76
|
-
kwargs["index"] = False
|
77
|
-
to_df([i.to_dict() for i in subj]).to_csv(fp, **kwargs)
|
78
|
-
logging.info(f"Successfully saved data to {fp}")
|
79
|
-
|
80
|
-
|
81
|
-
class ExcelFileAdapter(Adapter):
|
82
|
-
|
83
|
-
obj_key = ".xlsx"
|
84
|
-
alias = (".xlsx", "excel_file", "excel", "xlsx", "xls", ".xls")
|
85
|
-
|
86
|
-
@classmethod
|
87
|
-
def from_obj(
|
88
|
-
cls, subj_cls: type[T], obj: str | Path, /, **kwargs
|
89
|
-
) -> list[dict]:
|
90
|
-
return pd.read_excel(obj, **kwargs).to_dict(orient="records")
|
91
|
-
|
92
|
-
@classmethod
|
93
|
-
def to_obj(cls, subj: list[T], /, fp: str | Path, **kwargs) -> None:
|
94
|
-
kwargs["index"] = False
|
95
|
-
to_df([i.to_dict() for i in subj]).to_excel(fp, **kwargs)
|
96
|
-
logging.info(f"Saved {subj.class_name()} to {fp}")
|
File without changes
|
@@ -1,86 +0,0 @@
|
|
1
|
-
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
-
#
|
3
|
-
# SPDX-License-Identifier: Apache-2.0
|
4
|
-
|
5
|
-
from typing import Any, Literal
|
6
|
-
|
7
|
-
from lionagi.core.models.schema_model import SchemaModel
|
8
|
-
from lionagi.core.typing._pydantic import Field
|
9
|
-
|
10
|
-
from .imodel_config import iModelConfig
|
11
|
-
from .log_config import LogConfig
|
12
|
-
from .retry_config import TimedFuncCallConfig
|
13
|
-
|
14
|
-
|
15
|
-
class MessageConfig(SchemaModel):
|
16
|
-
"""Configuration for message handling in Branch"""
|
17
|
-
|
18
|
-
validation_mode: Literal["raise", "return_value", "return_none"] = Field(
|
19
|
-
default="return_value",
|
20
|
-
description="How to handle message validation failures",
|
21
|
-
)
|
22
|
-
auto_retries: bool = Field(
|
23
|
-
False, description="Whether to automatically retry message parsing"
|
24
|
-
)
|
25
|
-
|
26
|
-
max_retries: int = Field(
|
27
|
-
default=0, description="Maximum retries for message parsing"
|
28
|
-
)
|
29
|
-
allow_actions: bool = Field(
|
30
|
-
default=True,
|
31
|
-
description="Whether to allow action requests in messages",
|
32
|
-
)
|
33
|
-
auto_invoke_action: bool = Field(
|
34
|
-
default=True, description="Whether to automatically invoke actions"
|
35
|
-
)
|
36
|
-
|
37
|
-
|
38
|
-
class BranchConfig(SchemaModel):
|
39
|
-
"""Main configuration for Branch class.
|
40
|
-
|
41
|
-
Combines all aspects of Branch configuration including logging,
|
42
|
-
message handling, tool management, and iModel integration.
|
43
|
-
"""
|
44
|
-
|
45
|
-
name: str | None = Field(
|
46
|
-
default=None, description="Branch name for identification"
|
47
|
-
)
|
48
|
-
user: str | None = Field(
|
49
|
-
default=None, description="User ID/name for the branch"
|
50
|
-
)
|
51
|
-
message_log_config: LogConfig = Field(
|
52
|
-
default_factory=LogConfig,
|
53
|
-
description="Configuration for log management",
|
54
|
-
)
|
55
|
-
action_log_config: LogConfig = Field(
|
56
|
-
default_factory=LogConfig,
|
57
|
-
description="Configuration for action log management",
|
58
|
-
)
|
59
|
-
message_config: MessageConfig = Field(
|
60
|
-
default_factory=MessageConfig,
|
61
|
-
description="Configuration for message handling",
|
62
|
-
)
|
63
|
-
auto_register_tools: bool = Field(
|
64
|
-
default=True,
|
65
|
-
description="Whether to automatically register tools when needed",
|
66
|
-
)
|
67
|
-
action_call_config: TimedFuncCallConfig = Field(
|
68
|
-
default_factory=TimedFuncCallConfig,
|
69
|
-
description="Configuration for action execution",
|
70
|
-
)
|
71
|
-
imodel_config: iModelConfig | None = Field(
|
72
|
-
default=None, description="Configuration for iModel integration"
|
73
|
-
)
|
74
|
-
retry_imodel_config: iModelConfig | None = Field(
|
75
|
-
default=None, description="Configuration for iModel integration"
|
76
|
-
)
|
77
|
-
kwargs: dict[str, Any] = Field(
|
78
|
-
default_factory=dict,
|
79
|
-
description="Additional branch-specific configurations",
|
80
|
-
)
|
81
|
-
|
82
|
-
|
83
|
-
__all__ = [
|
84
|
-
"MessageConfig",
|
85
|
-
"BranchConfig",
|
86
|
-
]
|