lionagi 0.5.4__py3-none-any.whl → 0.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +16 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +16 -13
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +1 -1
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +10 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/{core/models/__init__.py → operations/types.py} +3 -1
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +239 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{integrations/anthropic_/version.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_adapter.py +224 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +172 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +109 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +65 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +10 -12
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +145 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +264 -92
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.4.dist-info → lionagi-0.6.0.dist-info}/METADATA +7 -6
- lionagi-0.6.0.dist-info/RECORD +160 -0
- lionagi/core/action/action_manager.py +0 -287
- 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 -530
- 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 -254
- 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 -544
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/__init__.py +0 -0
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -273
- lionagi/integrations/anthropic_/AnthropicService.py +0 -117
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -7
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -14
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -151
- 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 -71
- 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 -423
- lionagi/integrations/openai_/OpenAIService.py +0 -426
- 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 -113
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/__init__.py +0 -0
- lionagi/protocols/adapters/adapter.py +0 -79
- lionagi/protocols/adapters/json_adapter.py +0 -43
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.4.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.4.dist-info → lionagi-0.6.0.dist-info}/WHEEL +0 -0
- {lionagi-0.5.4.dist-info → lionagi-0.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,544 +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 abc import ABC
|
7
|
-
from collections.abc import Callable
|
8
|
-
from typing import Literal
|
9
|
-
|
10
|
-
from pydantic import JsonValue
|
11
|
-
|
12
|
-
from lionagi.core.typing import (
|
13
|
-
ID,
|
14
|
-
UNDEFINED,
|
15
|
-
BaseModel,
|
16
|
-
FieldModel,
|
17
|
-
ModelParams,
|
18
|
-
)
|
19
|
-
from lionagi.integrations.pydantic_ import break_down_pydantic_annotation
|
20
|
-
from lionagi.libs.func.types import alcall
|
21
|
-
from lionagi.libs.parse import to_json, validate_mapping
|
22
|
-
from lionagi.protocols.operatives.types import (
|
23
|
-
ActionRequestModel,
|
24
|
-
ActionResponseModel,
|
25
|
-
Operative,
|
26
|
-
Step,
|
27
|
-
)
|
28
|
-
from lionagi.service import iModel
|
29
|
-
|
30
|
-
from ..action.action_manager import FUNCTOOL, Tool
|
31
|
-
from ..communication.types import (
|
32
|
-
ActionRequest,
|
33
|
-
ActionResponse,
|
34
|
-
AssistantResponse,
|
35
|
-
Instruction,
|
36
|
-
)
|
37
|
-
|
38
|
-
|
39
|
-
class BranchActionMixin(ABC):
|
40
|
-
|
41
|
-
async def invoke_action(
|
42
|
-
self,
|
43
|
-
action_request: ActionRequest | BaseModel | dict,
|
44
|
-
suppress_errors: bool = False,
|
45
|
-
) -> ActionResponse:
|
46
|
-
try:
|
47
|
-
func, args = None, None
|
48
|
-
if isinstance(action_request, BaseModel):
|
49
|
-
if hasattr(action_request, "function") and hasattr(
|
50
|
-
action_request, "arguments"
|
51
|
-
):
|
52
|
-
func = action_request.function
|
53
|
-
args = action_request.arguments
|
54
|
-
elif isinstance(action_request, dict):
|
55
|
-
if action_request.keys() >= {"function", "arguments"}:
|
56
|
-
func = action_request["function"]
|
57
|
-
args = action_request["arguments"]
|
58
|
-
|
59
|
-
result = await self.acts.invoke(action_request)
|
60
|
-
tool = self.acts.registry[action_request.function]
|
61
|
-
|
62
|
-
if not isinstance(action_request, ActionRequest):
|
63
|
-
action_request = await self.msgs.a_add_message(
|
64
|
-
function=func,
|
65
|
-
arguments=args,
|
66
|
-
sender=self,
|
67
|
-
recipient=tool,
|
68
|
-
)
|
69
|
-
|
70
|
-
await self.msgs.a_add_message(
|
71
|
-
action_request=action_request,
|
72
|
-
action_response=result,
|
73
|
-
)
|
74
|
-
|
75
|
-
return ActionResponseModel(
|
76
|
-
function=action_request.function,
|
77
|
-
arguments=action_request.arguments,
|
78
|
-
output=result,
|
79
|
-
)
|
80
|
-
except Exception as e:
|
81
|
-
if suppress_errors:
|
82
|
-
logging.error(f"Error invoking action: {e}")
|
83
|
-
else:
|
84
|
-
raise e
|
85
|
-
|
86
|
-
def get_tool_schema(
|
87
|
-
self,
|
88
|
-
tools: str | Tool | list[Tool | str] | bool,
|
89
|
-
auto_register: bool = True,
|
90
|
-
) -> dict:
|
91
|
-
tools = tools if isinstance(tools, list) else [tools]
|
92
|
-
if auto_register:
|
93
|
-
for i in tools:
|
94
|
-
if isinstance(i, Tool | Callable) and i not in self.acts:
|
95
|
-
self.acts.register_tools(i)
|
96
|
-
return self.acts.get_tool_schema(tools)
|
97
|
-
|
98
|
-
|
99
|
-
class BranchOperationMixin(ABC):
|
100
|
-
async def operate(
|
101
|
-
self,
|
102
|
-
*,
|
103
|
-
instruction=None,
|
104
|
-
guidance=None,
|
105
|
-
context=None,
|
106
|
-
sender=None,
|
107
|
-
recipient=None,
|
108
|
-
operative_model: type[BaseModel] = None,
|
109
|
-
progress=None,
|
110
|
-
imodel: iModel = None,
|
111
|
-
reason: bool = False,
|
112
|
-
actions: bool = False,
|
113
|
-
exclude_fields: list | dict | None = None,
|
114
|
-
handle_validation: Literal[
|
115
|
-
"raise", "return_value", "return_none"
|
116
|
-
] = "return_value",
|
117
|
-
invoke_actions: bool = True,
|
118
|
-
tool_schemas=None,
|
119
|
-
images: list = None,
|
120
|
-
image_detail: Literal["low", "high", "auto"] = None,
|
121
|
-
max_retries: int = None,
|
122
|
-
retry_imodel: iModel = None,
|
123
|
-
retry_kwargs: dict = {},
|
124
|
-
auto_retry_parse: bool = True,
|
125
|
-
field_models: list[FieldModel] | None = None,
|
126
|
-
skip_validation: bool = False,
|
127
|
-
tools: str | Tool | list[Tool | str] | bool = None,
|
128
|
-
request_params: ModelParams = None,
|
129
|
-
request_param_kwargs: dict = {},
|
130
|
-
response_params: ModelParams = None,
|
131
|
-
response_param_kwargs: dict = {},
|
132
|
-
**kwargs,
|
133
|
-
) -> list | BaseModel | None | dict | str:
|
134
|
-
imodel = imodel or self.imodel
|
135
|
-
retry_imodel = retry_imodel or imodel
|
136
|
-
|
137
|
-
operative: Operative = Step.request_operative(
|
138
|
-
request_params=request_params,
|
139
|
-
reason=reason,
|
140
|
-
actions=actions,
|
141
|
-
exclude_fields=exclude_fields,
|
142
|
-
base_type=operative_model,
|
143
|
-
field_models=field_models,
|
144
|
-
**request_param_kwargs,
|
145
|
-
)
|
146
|
-
if isinstance(max_retries, int) and max_retries > 0:
|
147
|
-
operative.max_retries = max_retries
|
148
|
-
|
149
|
-
if auto_retry_parse is True:
|
150
|
-
operative.auto_retry_parse = True
|
151
|
-
|
152
|
-
if invoke_actions and tools:
|
153
|
-
tool_schemas = self.get_tool_schema(tools)
|
154
|
-
|
155
|
-
ins, res = await self._invoke_imodel(
|
156
|
-
instruction=instruction,
|
157
|
-
guidance=guidance,
|
158
|
-
context=context,
|
159
|
-
sender=sender,
|
160
|
-
recipient=recipient,
|
161
|
-
request_model=operative.request_type,
|
162
|
-
progress=progress,
|
163
|
-
imodel=imodel,
|
164
|
-
images=images,
|
165
|
-
image_detail=image_detail,
|
166
|
-
tool_schemas=tool_schemas,
|
167
|
-
**kwargs,
|
168
|
-
)
|
169
|
-
self.msgs.add_message(instruction=ins)
|
170
|
-
self.msgs.add_message(assistant_response=res)
|
171
|
-
|
172
|
-
operative.response_str_dict = res.response
|
173
|
-
if skip_validation:
|
174
|
-
return operative.response_str_dict
|
175
|
-
|
176
|
-
response_model = operative.update_response_model(res.response)
|
177
|
-
max_retries = operative.max_retries
|
178
|
-
|
179
|
-
num_try = 0
|
180
|
-
parse_imodel = self.parse_imodel or imodel or self.imodel
|
181
|
-
while (
|
182
|
-
operative._should_retry
|
183
|
-
and isinstance(response_model, str | dict)
|
184
|
-
and num_try < max_retries
|
185
|
-
):
|
186
|
-
num_try += 1
|
187
|
-
if operative.auto_retry_parse:
|
188
|
-
instruct = Instruction(
|
189
|
-
instruction="reformat text into specified model",
|
190
|
-
guidance="follow the required response format, using the model schema as a guide",
|
191
|
-
context=[{"text_to_format": res.response}],
|
192
|
-
request_model=operative.request_type,
|
193
|
-
sender=self.user,
|
194
|
-
recipient=self,
|
195
|
-
)
|
196
|
-
|
197
|
-
api_request = {
|
198
|
-
"messages": [instruct.chat_msg],
|
199
|
-
**retry_kwargs,
|
200
|
-
}
|
201
|
-
if isinstance(parse_imodel, iModel):
|
202
|
-
api_request = parse_imodel.parse_to_data_model(**api_request)
|
203
|
-
|
204
|
-
res1 = AssistantResponse(
|
205
|
-
sender=self,
|
206
|
-
recipient=self.user,
|
207
|
-
assistant_response=await parse_imodel.invoke(**api_request),
|
208
|
-
)
|
209
|
-
response_model = operative.update_response_model(res1.response)
|
210
|
-
|
211
|
-
if isinstance(response_model, dict | str):
|
212
|
-
if handle_validation == "raise":
|
213
|
-
raise ValueError(
|
214
|
-
"Operative model validation failed. iModel response"
|
215
|
-
" not parsed into operative model:"
|
216
|
-
f" {operative.name}"
|
217
|
-
)
|
218
|
-
if handle_validation == "return_none":
|
219
|
-
return None
|
220
|
-
if handle_validation == "return_value":
|
221
|
-
return response_model
|
222
|
-
|
223
|
-
if (
|
224
|
-
invoke_actions is True
|
225
|
-
and getattr(response_model, "action_required", None) is True
|
226
|
-
and getattr(response_model, "action_requests", None) is not None
|
227
|
-
):
|
228
|
-
action_response_models = await alcall(
|
229
|
-
response_model.action_requests,
|
230
|
-
self.invoke_action,
|
231
|
-
suppress_errors=True,
|
232
|
-
)
|
233
|
-
action_response_models = [
|
234
|
-
i.model_dump() for i in action_response_models if i
|
235
|
-
]
|
236
|
-
operative = Step.respond_operative(
|
237
|
-
response_params=response_params,
|
238
|
-
operative=operative,
|
239
|
-
additional_data={"action_responses": action_response_models},
|
240
|
-
**response_param_kwargs,
|
241
|
-
)
|
242
|
-
response_model = operative.response_model
|
243
|
-
elif (
|
244
|
-
hasattr(response_model, "action_requests")
|
245
|
-
and response_model.action_requests
|
246
|
-
):
|
247
|
-
for i in response_model.action_requests:
|
248
|
-
act_req = ActionRequest(
|
249
|
-
function=i.function,
|
250
|
-
arguments=i.arguments,
|
251
|
-
sender=self,
|
252
|
-
)
|
253
|
-
self.msgs.add_message(
|
254
|
-
action_request=act_req,
|
255
|
-
sender=act_req.sender,
|
256
|
-
recipient=None,
|
257
|
-
)
|
258
|
-
|
259
|
-
return operative.response_model
|
260
|
-
|
261
|
-
async def _invoke_imodel(
|
262
|
-
self,
|
263
|
-
instruction=None,
|
264
|
-
guidance=None,
|
265
|
-
context=None,
|
266
|
-
sender=None,
|
267
|
-
recipient=None,
|
268
|
-
request_fields=None,
|
269
|
-
request_model: type[BaseModel] = None,
|
270
|
-
progress=None,
|
271
|
-
imodel: iModel = None,
|
272
|
-
tool_schemas=None,
|
273
|
-
images: list = None,
|
274
|
-
image_detail: Literal["low", "high", "auto"] = None,
|
275
|
-
**kwargs,
|
276
|
-
) -> tuple[Instruction, AssistantResponse]:
|
277
|
-
|
278
|
-
ins = self.msgs.create_instruction(
|
279
|
-
instruction=instruction,
|
280
|
-
guidance=guidance,
|
281
|
-
context=context,
|
282
|
-
sender=sender or self.user or "user",
|
283
|
-
recipient=recipient or self.ln_id,
|
284
|
-
request_model=request_model,
|
285
|
-
request_fields=request_fields,
|
286
|
-
images=images,
|
287
|
-
image_detail=image_detail,
|
288
|
-
tool_schemas=tool_schemas,
|
289
|
-
)
|
290
|
-
|
291
|
-
progress = progress or self.msgs.progress
|
292
|
-
messages = [self.msgs.messages[i] for i in progress]
|
293
|
-
|
294
|
-
if self.msgs.system and "system" not in imodel.allowed_roles:
|
295
|
-
messages = [msg for msg in messages if msg.role != "system"]
|
296
|
-
first_instruction = None
|
297
|
-
|
298
|
-
if len(messages) == 0:
|
299
|
-
first_instruction = ins.model_copy()
|
300
|
-
first_instruction.guidance = self.msgs.system.system_info + (
|
301
|
-
first_instruction.guidance or ""
|
302
|
-
)
|
303
|
-
messages.append(first_instruction)
|
304
|
-
elif len(messages) >= 1:
|
305
|
-
first_instruction = messages[0]
|
306
|
-
if not isinstance(first_instruction, Instruction):
|
307
|
-
raise ValueError(
|
308
|
-
"First message in progress must be an Instruction or System"
|
309
|
-
)
|
310
|
-
first_instruction = first_instruction.model_copy()
|
311
|
-
first_instruction.guidance = self.msgs.system.system_info + (
|
312
|
-
first_instruction.guidance or ""
|
313
|
-
)
|
314
|
-
messages[0] = first_instruction
|
315
|
-
|
316
|
-
else:
|
317
|
-
messages.append(ins)
|
318
|
-
|
319
|
-
kwargs["messages"] = [i.chat_msg for i in messages]
|
320
|
-
imodel = imodel or self.imodel
|
321
|
-
api_response = None
|
322
|
-
|
323
|
-
if not hasattr(imodel, "parse_to_data_model"):
|
324
|
-
api_response = await imodel.invoke(**kwargs)
|
325
|
-
else:
|
326
|
-
data_model = imodel.parse_to_data_model(**kwargs)
|
327
|
-
api_response = await imodel.invoke(**data_model)
|
328
|
-
|
329
|
-
res = AssistantResponse(
|
330
|
-
assistant_response=api_response,
|
331
|
-
sender=self,
|
332
|
-
recipient=self.user,
|
333
|
-
)
|
334
|
-
return ins, res
|
335
|
-
|
336
|
-
async def communicate(
|
337
|
-
self,
|
338
|
-
instruction: Instruction | JsonValue = None,
|
339
|
-
guidance: JsonValue = None,
|
340
|
-
context: JsonValue = None,
|
341
|
-
sender: ID.SenderRecipient = None,
|
342
|
-
recipient: ID.SenderRecipient = None,
|
343
|
-
progress: ID.IDSeq = None,
|
344
|
-
request_model: type[BaseModel] | BaseModel = None,
|
345
|
-
request_fields: dict | list[str] = None,
|
346
|
-
imodel: iModel = None,
|
347
|
-
images: list = None,
|
348
|
-
image_detail: Literal["low", "high", "auto"] = None,
|
349
|
-
tools: str | FUNCTOOL | list[FUNCTOOL | str] | bool = None,
|
350
|
-
num_parse_retries: int = 0,
|
351
|
-
retry_imodel: iModel = None,
|
352
|
-
retry_kwargs: dict = {},
|
353
|
-
handle_validation: Literal[
|
354
|
-
"raise", "return_value", "return_none"
|
355
|
-
] = "return_value",
|
356
|
-
skip_validation: bool = False,
|
357
|
-
clear_messages: bool = False,
|
358
|
-
invoke_action: bool = True,
|
359
|
-
response_format: (
|
360
|
-
type[BaseModel] | BaseModel
|
361
|
-
) = None, # alias of request_model
|
362
|
-
**kwargs,
|
363
|
-
):
|
364
|
-
if response_format and request_model:
|
365
|
-
raise ValueError(
|
366
|
-
"Cannot specify both response_format and request_model"
|
367
|
-
"as they are aliases for the same parameter."
|
368
|
-
)
|
369
|
-
request_model = request_model or response_format
|
370
|
-
|
371
|
-
imodel = imodel or self.imodel
|
372
|
-
retry_imodel = retry_imodel or imodel
|
373
|
-
if clear_messages:
|
374
|
-
self.msgs.clear_messages()
|
375
|
-
|
376
|
-
if num_parse_retries > 5:
|
377
|
-
logging.warning(
|
378
|
-
f"Are you sure you want to retry {num_parse_retries} "
|
379
|
-
"times? lowering retry attempts to 5. Suggestion is under 3"
|
380
|
-
)
|
381
|
-
num_parse_retries = 5
|
382
|
-
|
383
|
-
tool_schemas = None
|
384
|
-
if invoke_action and tools:
|
385
|
-
tool_schemas = self.get_tool_schema(tools)
|
386
|
-
|
387
|
-
ins, res = await self._invoke_imodel(
|
388
|
-
instruction=instruction,
|
389
|
-
guidance=guidance,
|
390
|
-
context=context,
|
391
|
-
sender=sender,
|
392
|
-
recipient=recipient,
|
393
|
-
request_model=request_model,
|
394
|
-
progress=progress,
|
395
|
-
imodel=imodel,
|
396
|
-
images=images,
|
397
|
-
image_detail=image_detail,
|
398
|
-
tool_schemas=tool_schemas,
|
399
|
-
**kwargs,
|
400
|
-
)
|
401
|
-
await self.msgs.a_add_message(instruction=ins)
|
402
|
-
await self.msgs.a_add_message(assistant_response=res)
|
403
|
-
|
404
|
-
action_request_models = None
|
405
|
-
action_response_models = None
|
406
|
-
|
407
|
-
if skip_validation:
|
408
|
-
return res.response
|
409
|
-
|
410
|
-
if invoke_action and tools:
|
411
|
-
action_request_models = ActionRequestModel.create(res.response)
|
412
|
-
|
413
|
-
if action_request_models and invoke_action:
|
414
|
-
action_response_models = await alcall(
|
415
|
-
action_request_models,
|
416
|
-
self.invoke_action,
|
417
|
-
suppress_errors=True,
|
418
|
-
)
|
419
|
-
|
420
|
-
if action_request_models and not action_response_models:
|
421
|
-
for i in action_request_models:
|
422
|
-
await self.msgs.a_add_message(
|
423
|
-
action_request_model=i,
|
424
|
-
sender=self,
|
425
|
-
recipient=None,
|
426
|
-
)
|
427
|
-
|
428
|
-
_d = None
|
429
|
-
if request_fields is not None or request_model is not None:
|
430
|
-
parse_success = None
|
431
|
-
try:
|
432
|
-
if request_model:
|
433
|
-
try:
|
434
|
-
_d = to_json(res.response)
|
435
|
-
_d = validate_mapping(
|
436
|
-
_d,
|
437
|
-
break_down_pydantic_annotation(request_model),
|
438
|
-
handle_unmatched="force",
|
439
|
-
fill_value=UNDEFINED,
|
440
|
-
)
|
441
|
-
_d = {k: v for k, v in _d.items() if v != UNDEFINED}
|
442
|
-
return request_model.model_validate(_d)
|
443
|
-
except Exception:
|
444
|
-
pass
|
445
|
-
elif request_fields:
|
446
|
-
try:
|
447
|
-
_d = to_json(res.response)
|
448
|
-
_d = validate_mapping(
|
449
|
-
_d,
|
450
|
-
request_fields,
|
451
|
-
handle_unmatched="force",
|
452
|
-
fill_value=UNDEFINED,
|
453
|
-
)
|
454
|
-
_d = {k: v for k, v in _d.items() if v != UNDEFINED}
|
455
|
-
return _d
|
456
|
-
except Exception:
|
457
|
-
pass
|
458
|
-
except Exception:
|
459
|
-
parse_success = False
|
460
|
-
pass
|
461
|
-
|
462
|
-
while parse_success is False and num_parse_retries > 0:
|
463
|
-
if request_fields:
|
464
|
-
try:
|
465
|
-
_d = to_json(res.response)
|
466
|
-
_d = validate_mapping(
|
467
|
-
_d,
|
468
|
-
request_fields,
|
469
|
-
handle_unmatched="force",
|
470
|
-
fill_value=UNDEFINED,
|
471
|
-
)
|
472
|
-
_d = {k: v for k, v in _d.items() if v != UNDEFINED}
|
473
|
-
except Exception:
|
474
|
-
pass
|
475
|
-
if _d and isinstance(_d, dict):
|
476
|
-
parse_success = True
|
477
|
-
if res not in self.msgs.messages:
|
478
|
-
await self.msgs.a_add_message(
|
479
|
-
assistant_response=res
|
480
|
-
)
|
481
|
-
return _d
|
482
|
-
|
483
|
-
elif request_model:
|
484
|
-
_d = to_json(res.response)
|
485
|
-
_d = validate_mapping(
|
486
|
-
_d,
|
487
|
-
break_down_pydantic_annotation(request_model),
|
488
|
-
handle_unmatched="force",
|
489
|
-
fill_value=UNDEFINED,
|
490
|
-
)
|
491
|
-
|
492
|
-
_d = {k: v for k, v in _d.items() if v != UNDEFINED}
|
493
|
-
if _d and isinstance(_d, dict):
|
494
|
-
try:
|
495
|
-
_d = request_model.model_validate(_d)
|
496
|
-
parse_success = True
|
497
|
-
if res not in self.msgs.messages:
|
498
|
-
await self.msgs.a_add_message(
|
499
|
-
assistant_response=res
|
500
|
-
)
|
501
|
-
return _d
|
502
|
-
except Exception as e:
|
503
|
-
logging.warning(
|
504
|
-
"Failed to parse model response into "
|
505
|
-
f"pydantic model: {e}"
|
506
|
-
)
|
507
|
-
|
508
|
-
if parse_success is False:
|
509
|
-
logging.warning(
|
510
|
-
"Failed to parse response into request "
|
511
|
-
f"format, retrying... with {retry_imodel.model}"
|
512
|
-
)
|
513
|
-
_, res = await self._invoke_imodel(
|
514
|
-
instruction="reformat text into specified model",
|
515
|
-
context=res.response,
|
516
|
-
request_model=request_model,
|
517
|
-
request_fields=request_fields,
|
518
|
-
progress=[],
|
519
|
-
imodel=retry_imodel or imodel,
|
520
|
-
**retry_kwargs,
|
521
|
-
)
|
522
|
-
num_parse_retries -= 1
|
523
|
-
|
524
|
-
if request_fields and not isinstance(_d, dict):
|
525
|
-
if handle_validation == "raise":
|
526
|
-
raise ValueError(
|
527
|
-
"Failed to parse response into request format"
|
528
|
-
)
|
529
|
-
if handle_validation == "return_none":
|
530
|
-
return None
|
531
|
-
if handle_validation == "return_value":
|
532
|
-
return res.response
|
533
|
-
|
534
|
-
if request_model and not isinstance(_d, BaseModel):
|
535
|
-
if handle_validation == "raise":
|
536
|
-
raise ValueError(
|
537
|
-
"Failed to parse response into request format"
|
538
|
-
)
|
539
|
-
if handle_validation == "return_none":
|
540
|
-
return None
|
541
|
-
if handle_validation == "return_value":
|
542
|
-
return res.response
|
543
|
-
|
544
|
-
return _d if _d else res.response
|
lionagi/core/session/session.py
DELETED
@@ -1,163 +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 collections.abc import Callable
|
6
|
-
|
7
|
-
import pandas as pd
|
8
|
-
|
9
|
-
from lionagi.core.generic.types import Component, Pile, Progression
|
10
|
-
from lionagi.core.typing import ID, Field, ItemNotFoundError, JsonValue
|
11
|
-
from lionagi.libs.parse import to_list
|
12
|
-
from lionagi.service import iModel
|
13
|
-
|
14
|
-
from ..action.action_manager import ActionManager, Tool
|
15
|
-
from ..communication.message import MESSAGE_FIELDS, RoledMessage
|
16
|
-
from ..communication.system import System
|
17
|
-
from .branch import Branch
|
18
|
-
|
19
|
-
|
20
|
-
class Session(Component):
|
21
|
-
"""
|
22
|
-
Manages multiple conversation branches and mail transfer in a session.
|
23
|
-
|
24
|
-
Attributes:
|
25
|
-
branches (Pile | None): Collection of conversation branches.
|
26
|
-
default_branch (Branch | None): The default conversation branch.
|
27
|
-
mail_transfer (Exchange | None): Mail transfer system.
|
28
|
-
mail_manager (MailManager | None): Manages mail operations.
|
29
|
-
"""
|
30
|
-
|
31
|
-
branches: Pile = Field(default_factory=Pile)
|
32
|
-
default_branch: Branch = Field(default_factory=Branch, exclude=True)
|
33
|
-
|
34
|
-
def new_branch(
|
35
|
-
self,
|
36
|
-
system: System | JsonValue = None,
|
37
|
-
system_sender: ID.SenderRecipient = None,
|
38
|
-
system_datetime: bool | str = None,
|
39
|
-
user: ID.SenderRecipient = None,
|
40
|
-
name: str | None = None,
|
41
|
-
imodel: iModel | None = None,
|
42
|
-
messages: Pile[RoledMessage] = None,
|
43
|
-
progress: Progression = None,
|
44
|
-
tool_manager: ActionManager = None,
|
45
|
-
tools: Tool | Callable | list = None,
|
46
|
-
**kwargs, # additional branch parameters
|
47
|
-
) -> Branch:
|
48
|
-
|
49
|
-
kwargs["system"] = system
|
50
|
-
kwargs["system_sender"] = system_sender
|
51
|
-
kwargs["system_datetime"] = system_datetime
|
52
|
-
kwargs["user"] = user
|
53
|
-
kwargs["name"] = name
|
54
|
-
kwargs["imodel"] = imodel
|
55
|
-
kwargs["messages"] = messages
|
56
|
-
kwargs["progress"] = progress
|
57
|
-
kwargs["tool_manager"] = tool_manager
|
58
|
-
kwargs["tools"] = tools
|
59
|
-
kwargs = {k: v for k, v in kwargs.items() if v is not None}
|
60
|
-
|
61
|
-
branch = Branch(**kwargs)
|
62
|
-
|
63
|
-
self.branches.include(branch)
|
64
|
-
if self.default_branch is None:
|
65
|
-
self.default_branch = branch
|
66
|
-
return branch
|
67
|
-
|
68
|
-
def remove_branch(
|
69
|
-
self,
|
70
|
-
branch: ID.Ref,
|
71
|
-
delete: bool = False,
|
72
|
-
):
|
73
|
-
branch = ID.get_id(branch)
|
74
|
-
|
75
|
-
if branch not in self.branches:
|
76
|
-
_s = (
|
77
|
-
str(branch)
|
78
|
-
if len(str(branch)) < 10
|
79
|
-
else str(branch)[:10] + "..."
|
80
|
-
)
|
81
|
-
raise ItemNotFoundError(f"Branch {_s}.. does not exist.")
|
82
|
-
branch: Branch = self.branches[branch]
|
83
|
-
|
84
|
-
self.branches.exclude(branch)
|
85
|
-
|
86
|
-
if self.default_branch.ln_id == branch.ln_id:
|
87
|
-
if self.branches.is_empty():
|
88
|
-
self.default_branch = None
|
89
|
-
else:
|
90
|
-
self.default_branch = self.branches[0]
|
91
|
-
|
92
|
-
if delete:
|
93
|
-
del branch
|
94
|
-
|
95
|
-
async def asplit(self, branch: ID.Ref) -> Branch:
|
96
|
-
"""
|
97
|
-
Split a branch, creating a new branch with the same messages and tools.
|
98
|
-
|
99
|
-
Args:
|
100
|
-
branch: The branch to split or its identifier.
|
101
|
-
|
102
|
-
Returns:
|
103
|
-
The newly created branch.
|
104
|
-
"""
|
105
|
-
async with self.branches:
|
106
|
-
return self.split(branch)
|
107
|
-
|
108
|
-
def split(self, branch: ID.Ref) -> Branch:
|
109
|
-
"""
|
110
|
-
Split a branch, creating a new branch with the same messages and tools.
|
111
|
-
|
112
|
-
Args:
|
113
|
-
branch: The branch to split or its identifier.
|
114
|
-
|
115
|
-
Returns:
|
116
|
-
The newly created branch.
|
117
|
-
"""
|
118
|
-
branch: Branch = self.branches[branch]
|
119
|
-
branch_clone = branch.clone(sender=self.ln_id)
|
120
|
-
self.branches.append(branch_clone)
|
121
|
-
return branch_clone
|
122
|
-
|
123
|
-
def change_default_branch(self, branch: ID.Ref):
|
124
|
-
"""
|
125
|
-
Change the default branch of the session.
|
126
|
-
|
127
|
-
Args:
|
128
|
-
branch: The branch to set as default or its identifier.
|
129
|
-
"""
|
130
|
-
branch = self.branches[branch]
|
131
|
-
if not isinstance(branch, Branch):
|
132
|
-
raise ValueError("Input value for branch is not a valid branch.")
|
133
|
-
self.default_branch = branch
|
134
|
-
|
135
|
-
def to_df(self, branches: ID.RefSeq = None) -> pd.DataFrame:
|
136
|
-
out = self.concat_messages(branches=branches)
|
137
|
-
return out.to_df(columns=MESSAGE_FIELDS)
|
138
|
-
|
139
|
-
def concat_messages(
|
140
|
-
self, branches: ID.RefSeq = None
|
141
|
-
) -> Pile[RoledMessage]:
|
142
|
-
if not branches:
|
143
|
-
branches = self.branches
|
144
|
-
if isinstance(branches, dict):
|
145
|
-
branches = to_list(branches, use_values=True)
|
146
|
-
|
147
|
-
out = Pile(item_type={RoledMessage})
|
148
|
-
for i in branches:
|
149
|
-
if i not in self.branches:
|
150
|
-
_msg = str(i)
|
151
|
-
_msg = _msg[:50] if len(_msg) > 50 else _msg
|
152
|
-
raise ItemNotFoundError(
|
153
|
-
f"Branch <{_msg}> was not found in the session."
|
154
|
-
)
|
155
|
-
|
156
|
-
b: Branch = self.branches[i]
|
157
|
-
out |= b.msgs.messages
|
158
|
-
|
159
|
-
return out
|
160
|
-
|
161
|
-
|
162
|
-
__all__ = ["Session"]
|
163
|
-
# File: autoos/session/session.py
|