lionagi 0.5.5__py3-none-any.whl → 0.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +16 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +16 -13
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +1 -1
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +10 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/{core/models/__init__.py → operations/types.py} +3 -1
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +239 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{integrations/anthropic_/version.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_adapter.py +224 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +172 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +109 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +10 -12
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +145 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +263 -96
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/METADATA +7 -6
- lionagi-0.6.0.dist-info/RECORD +160 -0
- lionagi/core/action/action_manager.py +0 -289
- lionagi/core/action/base.py +0 -109
- lionagi/core/action/function_calling.py +0 -153
- lionagi/core/action/tool.py +0 -202
- lionagi/core/action/types.py +0 -16
- lionagi/core/communication/action_request.py +0 -163
- lionagi/core/communication/action_response.py +0 -149
- lionagi/core/communication/base_mail.py +0 -49
- lionagi/core/communication/instruction.py +0 -376
- lionagi/core/communication/message.py +0 -286
- lionagi/core/communication/message_manager.py +0 -543
- lionagi/core/communication/system.py +0 -116
- lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
- lionagi/core/communication/types.py +0 -27
- lionagi/core/communication/utils.py +0 -256
- lionagi/core/forms/types.py +0 -13
- lionagi/core/generic/component.py +0 -422
- lionagi/core/generic/edge.py +0 -163
- lionagi/core/generic/element.py +0 -199
- lionagi/core/generic/graph.py +0 -377
- lionagi/core/generic/log.py +0 -151
- lionagi/core/generic/log_manager.py +0 -320
- lionagi/core/generic/node.py +0 -11
- lionagi/core/generic/progression.py +0 -395
- lionagi/core/generic/types.py +0 -23
- lionagi/core/generic/utils.py +0 -53
- lionagi/core/models/base.py +0 -28
- lionagi/core/models/field_model.py +0 -145
- lionagi/core/models/model_params.py +0 -194
- lionagi/core/models/types.py +0 -19
- lionagi/core/session/branch.py +0 -130
- lionagi/core/session/branch_mixins.py +0 -581
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/__init__.py +0 -0
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
- lionagi/integrations/anthropic_/AnthropicService.py +0 -127
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -156
- lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
- lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
- lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
- lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
- lionagi/integrations/groq_/groq_price_data.yaml +0 -58
- lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
- lionagi/integrations/groq_/version.py +0 -5
- lionagi/integrations/litellm_/imodel.py +0 -76
- lionagi/integrations/ollama_/OllamaModel.py +0 -244
- lionagi/integrations/ollama_/OllamaService.py +0 -142
- lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
- lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
- lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
- lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
- lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
- lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
- lionagi/integrations/openai_/OpenAIModel.py +0 -419
- lionagi/integrations/openai_/OpenAIService.py +0 -435
- lionagi/integrations/openai_/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
- lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
- lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
- lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
- lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
- lionagi/integrations/openai_/openai_price_data.yaml +0 -26
- lionagi/integrations/openai_/version.py +0 -1
- lionagi/integrations/pandas_/__init__.py +0 -24
- lionagi/integrations/pandas_/extend_df.py +0 -61
- lionagi/integrations/pandas_/read.py +0 -103
- lionagi/integrations/pandas_/remove_rows.py +0 -61
- lionagi/integrations/pandas_/replace_keywords.py +0 -65
- lionagi/integrations/pandas_/save.py +0 -131
- lionagi/integrations/pandas_/search_keywords.py +0 -69
- lionagi/integrations/pandas_/to_df.py +0 -196
- lionagi/integrations/pandas_/update_cells.py +0 -54
- lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
- lionagi/integrations/perplexity_/PerplexityService.py +0 -118
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/__init__.py +0 -0
- lionagi/protocols/adapters/adapter.py +0 -79
- lionagi/protocols/adapters/json_adapter.py +0 -43
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.5.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,168 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
import asyncio
|
6
|
+
from collections import deque
|
7
|
+
from typing import Any
|
8
|
+
|
9
|
+
from lionagi._errors import ItemNotFoundError
|
10
|
+
|
11
|
+
from .._concepts import Manager, Observable
|
12
|
+
from ..generic.element import ID, IDType
|
13
|
+
from ..generic.pile import Pile, to_list_type
|
14
|
+
from .exchange import Exchange
|
15
|
+
from .mail import Mail, Package, PackageCategory
|
16
|
+
|
17
|
+
|
18
|
+
class MailManager(Manager):
|
19
|
+
"""
|
20
|
+
Manages mail operations for multiple sources in the Lion framework.
|
21
|
+
|
22
|
+
This class handles the collection, distribution, and management of mail
|
23
|
+
between different sources within the system.
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self, sources: ID.Item | ID.ItemSeq = None) -> None:
|
27
|
+
"""
|
28
|
+
Initialize a MailManager instance.
|
29
|
+
|
30
|
+
Args:
|
31
|
+
sources (List[Any], optional): Initial list of mail sources to
|
32
|
+
manage.
|
33
|
+
"""
|
34
|
+
self.sources: Pile[Observable] = Pile()
|
35
|
+
self.mails: dict[str, dict[str, deque]] = {}
|
36
|
+
self.execute_stop: bool = False
|
37
|
+
|
38
|
+
if sources:
|
39
|
+
self.add_sources(sources)
|
40
|
+
|
41
|
+
def add_sources(self, sources: ID.Item | ID.ItemSeq, /) -> None:
|
42
|
+
"""
|
43
|
+
Add new sources to the MailManager.
|
44
|
+
|
45
|
+
Args:
|
46
|
+
sources (Any): The sources to add. Can be a single source or
|
47
|
+
a list of sources.
|
48
|
+
|
49
|
+
Raises:
|
50
|
+
LionValueError: If adding the source(s) fails.
|
51
|
+
"""
|
52
|
+
try:
|
53
|
+
sources = to_list_type(sources)
|
54
|
+
self.sources.include(sources)
|
55
|
+
for item in sources:
|
56
|
+
self.mails[item.id] = {}
|
57
|
+
except Exception as e:
|
58
|
+
raise ValueError("Failed to add source.") from e
|
59
|
+
|
60
|
+
@staticmethod
|
61
|
+
def create_mail(
|
62
|
+
sender: ID.Ref,
|
63
|
+
recipient: ID.Ref,
|
64
|
+
category: PackageCategory | str,
|
65
|
+
package: Any,
|
66
|
+
request_source: Any = None,
|
67
|
+
) -> Mail:
|
68
|
+
"""
|
69
|
+
Create a new Mail object.
|
70
|
+
|
71
|
+
Args:
|
72
|
+
sender (str): The ID of the sender.
|
73
|
+
recipient (str): The ID of the recipient.
|
74
|
+
category (str): The category of the mail.
|
75
|
+
package (Any): The content of the package.
|
76
|
+
request_source (Any, optional): The source of the request.
|
77
|
+
|
78
|
+
Returns:
|
79
|
+
Mail: A new Mail object.
|
80
|
+
"""
|
81
|
+
pack = Package(
|
82
|
+
category=category, package=package, request_source=request_source
|
83
|
+
)
|
84
|
+
return Mail(sender=sender, recipient=recipient, package=pack)
|
85
|
+
|
86
|
+
def delete_source(self, source_id: IDType) -> None:
|
87
|
+
"""
|
88
|
+
Delete a source from the MailManager.
|
89
|
+
|
90
|
+
Args:
|
91
|
+
source_id (str): The ID of the source to delete.
|
92
|
+
|
93
|
+
Raises:
|
94
|
+
LionValueError: If the source does not exist.
|
95
|
+
"""
|
96
|
+
if source_id not in self.sources:
|
97
|
+
raise ItemNotFoundError(f"Source {source_id} does not exist.")
|
98
|
+
self.sources.pop(source_id)
|
99
|
+
self.mails.pop(source_id)
|
100
|
+
|
101
|
+
def collect(self, sender: IDType) -> None:
|
102
|
+
"""Collect mail from a specific sender."""
|
103
|
+
if sender not in self.sources:
|
104
|
+
raise ItemNotFoundError(f"Sender source {sender} does not exist.")
|
105
|
+
mailbox: Exchange = (
|
106
|
+
self.sources[sender]
|
107
|
+
if isinstance(self.sources[sender], Exchange)
|
108
|
+
else self.sources[sender].mailbox
|
109
|
+
)
|
110
|
+
while mailbox.pending_outs.size() > 0:
|
111
|
+
mail_id = mailbox.pending_outs.popleft()
|
112
|
+
mail: Mail = mailbox.pile_.pop(mail_id)
|
113
|
+
if mail.recipient not in self.sources:
|
114
|
+
rec_ = mail.recipient
|
115
|
+
raise ItemNotFoundError(
|
116
|
+
f"Recipient source {rec_} does not exist"
|
117
|
+
)
|
118
|
+
if mail.sender not in self.mails[mail.recipient]:
|
119
|
+
self.mails[mail.recipient].update({mail.sender: deque()})
|
120
|
+
self.mails[mail.recipient][mail.sender].append(mail)
|
121
|
+
|
122
|
+
def send(self, recipient: IDType) -> None:
|
123
|
+
"""Send mail to a specific recipient."""
|
124
|
+
if recipient not in self.sources:
|
125
|
+
raise ItemNotFoundError(
|
126
|
+
f"Recipient source {recipient} does not exist."
|
127
|
+
)
|
128
|
+
if not self.mails[recipient]:
|
129
|
+
return
|
130
|
+
for key in list(self.mails[recipient].keys()):
|
131
|
+
pending_mails = self.mails[recipient].pop(key)
|
132
|
+
mailbox: Exchange = (
|
133
|
+
self.sources[recipient]
|
134
|
+
if isinstance(self.sources[recipient], Exchange)
|
135
|
+
else self.sources[recipient].mailbox
|
136
|
+
)
|
137
|
+
while pending_mails:
|
138
|
+
mail = pending_mails.popleft()
|
139
|
+
mailbox.include(mail, direction="in")
|
140
|
+
|
141
|
+
def collect_all(self) -> None:
|
142
|
+
"""Collect mail from all sources."""
|
143
|
+
for source in self.sources:
|
144
|
+
self.collect(sender=source.id)
|
145
|
+
|
146
|
+
def send_all(self) -> None:
|
147
|
+
"""Send mail to all recipients."""
|
148
|
+
for source in self.sources:
|
149
|
+
self.send(recipient=source.id)
|
150
|
+
|
151
|
+
async def execute(self, refresh_time: int = 1) -> None:
|
152
|
+
"""
|
153
|
+
Execute mail collection and sending process asynchronously.
|
154
|
+
|
155
|
+
This method runs in a loop, collecting and sending mail at
|
156
|
+
regular intervals.
|
157
|
+
|
158
|
+
Args:
|
159
|
+
refresh_time (int, optional): The time to wait between
|
160
|
+
each cycle in seconds. Defaults to 1.
|
161
|
+
"""
|
162
|
+
while not self.execute_stop:
|
163
|
+
self.collect_all()
|
164
|
+
self.send_all()
|
165
|
+
await asyncio.sleep(refresh_time)
|
166
|
+
|
167
|
+
|
168
|
+
# File: lion_core/communication/mail_manager.py
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from enum import Enum
|
6
|
+
from typing import Any
|
7
|
+
|
8
|
+
from lionagi.protocols.generic.element import ID, IDType
|
9
|
+
from lionagi.utils import time
|
10
|
+
|
11
|
+
from .._concepts import Communicatable, Observable
|
12
|
+
|
13
|
+
|
14
|
+
class PackageCategory(str, Enum):
|
15
|
+
"""Enumeration of package categories in the Lion framework."""
|
16
|
+
|
17
|
+
MESSAGE = "message"
|
18
|
+
TOOL = "tool"
|
19
|
+
IMODEL = "imodel"
|
20
|
+
NODE = "node"
|
21
|
+
NODE_LIST = "node_list"
|
22
|
+
NODE_ID = "node_id"
|
23
|
+
START = "start"
|
24
|
+
END = "end"
|
25
|
+
CONDITION = "condition"
|
26
|
+
SIGNAL = "signal"
|
27
|
+
|
28
|
+
|
29
|
+
def validate_category(value: Any) -> PackageCategory:
|
30
|
+
"""Validate the category field."""
|
31
|
+
if isinstance(value, PackageCategory):
|
32
|
+
return value
|
33
|
+
try:
|
34
|
+
return PackageCategory(str(value))
|
35
|
+
except ValueError as e:
|
36
|
+
raise ValueError("Invalid value for category.") from e
|
37
|
+
|
38
|
+
|
39
|
+
class Package(Observable):
|
40
|
+
|
41
|
+
def __init__(
|
42
|
+
self,
|
43
|
+
category: PackageCategory,
|
44
|
+
item: Any,
|
45
|
+
request_source: ID[Communicatable] = None,
|
46
|
+
):
|
47
|
+
|
48
|
+
super().__init__()
|
49
|
+
self.id = IDType.create()
|
50
|
+
self.created_at = time(type_="timestamp")
|
51
|
+
self.category = validate_category(category)
|
52
|
+
self.item = item
|
53
|
+
self.request_source = request_source
|
54
|
+
|
55
|
+
__slots__ = ("id", "created_at", "category", "item", "request_source")
|
@@ -0,0 +1,165 @@
|
|
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
|
+
from typing import Any
|
7
|
+
|
8
|
+
from lionagi.utils import copy, to_dict
|
9
|
+
|
10
|
+
from ..generic.element import IDType
|
11
|
+
from .base import SenderRecipient
|
12
|
+
from .message import MessageRole, RoledMessage, Template, jinja_env
|
13
|
+
|
14
|
+
|
15
|
+
def prepare_action_request(
|
16
|
+
function: str | Callable,
|
17
|
+
arguments: dict,
|
18
|
+
) -> dict[str, Any]:
|
19
|
+
|
20
|
+
if isinstance(function, Callable):
|
21
|
+
function = function.__name__
|
22
|
+
if hasattr(function, "function"):
|
23
|
+
function = function.function
|
24
|
+
if not isinstance(function, str):
|
25
|
+
raise ValueError("Function must be a string or callable.")
|
26
|
+
|
27
|
+
arguments = copy(arguments)
|
28
|
+
if not isinstance(arguments, dict):
|
29
|
+
try:
|
30
|
+
arguments = to_dict(arguments, fuzzy_parse=True)
|
31
|
+
if isinstance(arguments, list | tuple) and len(arguments) > 0:
|
32
|
+
arguments = arguments[0]
|
33
|
+
except Exception:
|
34
|
+
raise ValueError("Arguments must be a dictionary.")
|
35
|
+
return {"action_request": {"function": function, "arguments": arguments}}
|
36
|
+
|
37
|
+
|
38
|
+
class ActionRequest(RoledMessage):
|
39
|
+
|
40
|
+
template: Template | str | None = jinja_env.get_template(
|
41
|
+
"action_request.jinja2"
|
42
|
+
)
|
43
|
+
|
44
|
+
@property
|
45
|
+
def action_response_id(self) -> IDType | None:
|
46
|
+
"""
|
47
|
+
Get the ID of the corresponding action response.
|
48
|
+
|
49
|
+
Returns:
|
50
|
+
IDType | None: The ID of the action response, or None if not responded
|
51
|
+
"""
|
52
|
+
return self.content.get("action_response_id", None)
|
53
|
+
|
54
|
+
@action_response_id.setter
|
55
|
+
def action_response_id(self, action_response_id: IDType) -> None:
|
56
|
+
"""
|
57
|
+
Set the ID of the corresponding action response.
|
58
|
+
|
59
|
+
Args:
|
60
|
+
action_response_id: The ID of the action response
|
61
|
+
"""
|
62
|
+
self.content["action_response_id"] = action_response_id
|
63
|
+
|
64
|
+
@property
|
65
|
+
def request(self) -> dict[str, Any]:
|
66
|
+
"""
|
67
|
+
Get the action request content as a dictionary.
|
68
|
+
|
69
|
+
Returns:
|
70
|
+
dict[str, Any]: The request content excluding output
|
71
|
+
"""
|
72
|
+
return copy(self.content.get("action_request", {}))
|
73
|
+
|
74
|
+
@property
|
75
|
+
def arguments(self) -> dict[str, Any]:
|
76
|
+
"""
|
77
|
+
Get the arguments for the action request.
|
78
|
+
|
79
|
+
Returns:
|
80
|
+
dict[str, Any]: The arguments dictionary
|
81
|
+
"""
|
82
|
+
return self.request.get("arguments", {})
|
83
|
+
|
84
|
+
@property
|
85
|
+
def function(self) -> str:
|
86
|
+
"""
|
87
|
+
Get the function name for the action request.
|
88
|
+
|
89
|
+
Returns:
|
90
|
+
str: The name of the function to be invoked
|
91
|
+
"""
|
92
|
+
return self.request.get("function", "")
|
93
|
+
|
94
|
+
@classmethod
|
95
|
+
def create(
|
96
|
+
cls,
|
97
|
+
function=None,
|
98
|
+
arguments: dict | None = None,
|
99
|
+
sender: SenderRecipient | None = None,
|
100
|
+
recipient: SenderRecipient | None = None,
|
101
|
+
template: Template | str | None = None,
|
102
|
+
**kwargs,
|
103
|
+
) -> "ActionRequest":
|
104
|
+
"""
|
105
|
+
Create a new ActionRequest instance.
|
106
|
+
|
107
|
+
Args:
|
108
|
+
function: The function to be invoked
|
109
|
+
arguments: The arguments to be passed to the function
|
110
|
+
sender: The sender of the request
|
111
|
+
recipient: The recipient of the request
|
112
|
+
|
113
|
+
Returns:
|
114
|
+
ActionRequest: The new instance
|
115
|
+
"""
|
116
|
+
content = prepare_action_request(function, arguments)
|
117
|
+
content.update(kwargs)
|
118
|
+
params = {
|
119
|
+
"content": content,
|
120
|
+
"sender": sender,
|
121
|
+
"recipient": recipient,
|
122
|
+
"role": MessageRole.ACTION,
|
123
|
+
}
|
124
|
+
if template:
|
125
|
+
params["template"] = template
|
126
|
+
return cls(**{k: v for k, v in params.items() if v is not None})
|
127
|
+
|
128
|
+
def update(
|
129
|
+
self,
|
130
|
+
function: str = None,
|
131
|
+
arguments: dict | None = None,
|
132
|
+
sender: SenderRecipient = None,
|
133
|
+
recipient: SenderRecipient = None,
|
134
|
+
action_response: "ActionResponse" = None, # type: ignore
|
135
|
+
template: Template | str | None = None,
|
136
|
+
**kwargs,
|
137
|
+
):
|
138
|
+
if self.is_responded():
|
139
|
+
raise ValueError("Cannot update a responded action request.")
|
140
|
+
|
141
|
+
if (
|
142
|
+
isinstance(action_response, RoledMessage)
|
143
|
+
and action_response.class_name() == "ActionResponse"
|
144
|
+
):
|
145
|
+
self.action_response_id = action_response.id
|
146
|
+
|
147
|
+
if any([function, arguments]):
|
148
|
+
action_request = prepare_action_request(
|
149
|
+
function or self.function, arguments or self.arguments
|
150
|
+
)
|
151
|
+
self.content.update(action_request)
|
152
|
+
super().update(
|
153
|
+
sender=sender, recipient=recipient, template=template, **kwargs
|
154
|
+
)
|
155
|
+
|
156
|
+
def is_responded(self) -> bool:
|
157
|
+
"""
|
158
|
+
Check if the action request has been responded to.
|
159
|
+
|
160
|
+
Returns:
|
161
|
+
bool: True if the request has a response, False otherwise
|
162
|
+
"""
|
163
|
+
if self.action_response_id is not None:
|
164
|
+
return True
|
165
|
+
return False
|
@@ -0,0 +1,132 @@
|
|
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
|
6
|
+
|
7
|
+
from typing_extensions import override
|
8
|
+
|
9
|
+
from lionagi.protocols.generic.element import IDType
|
10
|
+
from lionagi.utils import copy
|
11
|
+
|
12
|
+
from .action_request import ActionRequest
|
13
|
+
from .base import MessageRole, SenderRecipient
|
14
|
+
from .message import RoledMessage, Template, jinja_env
|
15
|
+
|
16
|
+
|
17
|
+
def prepare_action_response_content(
|
18
|
+
action_request: ActionRequest,
|
19
|
+
output: Any,
|
20
|
+
) -> dict:
|
21
|
+
return {
|
22
|
+
"action_request_id": str(action_request.id),
|
23
|
+
"action_response": {
|
24
|
+
"function": action_request.function,
|
25
|
+
"arguments": action_request.arguments,
|
26
|
+
"output": output,
|
27
|
+
},
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
class ActionResponse(RoledMessage):
|
32
|
+
|
33
|
+
template: Template | str | None = jinja_env.get_template(
|
34
|
+
"action_response.jinja2"
|
35
|
+
)
|
36
|
+
|
37
|
+
@property
|
38
|
+
def function(self) -> str:
|
39
|
+
"""
|
40
|
+
Get the function name from the action response.
|
41
|
+
|
42
|
+
Returns:
|
43
|
+
str: The name of the function that was executed
|
44
|
+
"""
|
45
|
+
return self.content.get("action_response", {}).get("function", None)
|
46
|
+
|
47
|
+
@property
|
48
|
+
def arguments(self) -> dict[str, Any]:
|
49
|
+
"""
|
50
|
+
Get the function arguments from the action response.
|
51
|
+
|
52
|
+
Returns:
|
53
|
+
dict[str, Any]: The arguments that were used
|
54
|
+
"""
|
55
|
+
return self.content.get("action_response", {}).get("arguments", {})
|
56
|
+
|
57
|
+
@property
|
58
|
+
def output(self) -> Any:
|
59
|
+
"""
|
60
|
+
Get the function output from the action response.
|
61
|
+
|
62
|
+
Returns:
|
63
|
+
Any: The result returned by the function
|
64
|
+
"""
|
65
|
+
return self.content.get("action_response", {}).get("output", None)
|
66
|
+
|
67
|
+
@property
|
68
|
+
def response(self) -> dict[str, Any]:
|
69
|
+
"""
|
70
|
+
Get the complete action response as a dictionary.
|
71
|
+
|
72
|
+
Returns:
|
73
|
+
dict[str, Any]: The response including function details and output
|
74
|
+
"""
|
75
|
+
return copy(self.content.get("action_response", {}))
|
76
|
+
|
77
|
+
@property
|
78
|
+
def action_request_id(self) -> IDType:
|
79
|
+
"""
|
80
|
+
Get the ID of the corresponding action request.
|
81
|
+
|
82
|
+
Returns:
|
83
|
+
ID[ActionRequest].ID | None: The ID of the original request
|
84
|
+
"""
|
85
|
+
return IDType.validate(self.content.get("action_request_id"))
|
86
|
+
|
87
|
+
@override
|
88
|
+
@classmethod
|
89
|
+
def create(
|
90
|
+
cls,
|
91
|
+
action_request: ActionRequest,
|
92
|
+
output: Any | None = None,
|
93
|
+
response_model=None,
|
94
|
+
sender: SenderRecipient | None = None,
|
95
|
+
recipient: SenderRecipient | None = None,
|
96
|
+
) -> "ActionResponse":
|
97
|
+
|
98
|
+
if response_model:
|
99
|
+
output = response_model.output
|
100
|
+
|
101
|
+
instance = ActionResponse(
|
102
|
+
content=prepare_action_response_content(
|
103
|
+
action_request=response_model or action_request, output=output
|
104
|
+
),
|
105
|
+
role=MessageRole.ACTION,
|
106
|
+
sender=sender or action_request.recipient,
|
107
|
+
recipient=recipient or action_request.sender,
|
108
|
+
)
|
109
|
+
action_request.action_response_id = instance.id
|
110
|
+
return instance
|
111
|
+
|
112
|
+
def update(
|
113
|
+
self,
|
114
|
+
action_request: ActionRequest = None,
|
115
|
+
output: Any = None,
|
116
|
+
response_model=None,
|
117
|
+
sender: SenderRecipient = None,
|
118
|
+
recipient: SenderRecipient = None,
|
119
|
+
template: Template | str | None = None,
|
120
|
+
**kwargs,
|
121
|
+
):
|
122
|
+
if response_model:
|
123
|
+
output = response_model.output
|
124
|
+
|
125
|
+
if action_request:
|
126
|
+
self.content = prepare_action_response_content(
|
127
|
+
action_request=action_request, output=output or self.output
|
128
|
+
)
|
129
|
+
action_request.action_response_id = self.id
|
130
|
+
super().update(
|
131
|
+
sender=sender, recipient=recipient, template=template, **kwargs
|
132
|
+
)
|
@@ -2,32 +2,21 @@
|
|
2
2
|
#
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
4
4
|
|
5
|
-
from
|
6
|
-
from lionagi.libs.parse import to_str
|
7
|
-
from lionagi.libs.utils import copy, is_same_dtype
|
5
|
+
from typing import Any
|
8
6
|
|
9
|
-
from
|
7
|
+
from pydantic import BaseModel
|
10
8
|
|
9
|
+
from lionagi.utils import copy, is_same_dtype
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
) -> Note:
|
15
|
-
"""
|
16
|
-
Prepare an assistant's response for storage and transmission.
|
17
|
-
|
18
|
-
This function handles various input formats including:
|
19
|
-
- Single model outputs (response.choices[0].message.content)
|
20
|
-
- Streaming responses (response[i].choices[0].delta.content)
|
21
|
-
- Direct content in dictionaries or strings
|
11
|
+
from .base import MessageRole, SenderRecipient
|
12
|
+
from .message import MessageRole, RoledMessage, Template, jinja_env
|
22
13
|
|
23
|
-
Args:
|
24
|
-
assistant_response: The response content in any supported format
|
25
14
|
|
26
|
-
|
27
|
-
|
28
|
-
|
15
|
+
def prepare_assistant_response(
|
16
|
+
assistant_response: BaseModel | list[BaseModel] | dict | str | Any, /
|
17
|
+
) -> dict:
|
29
18
|
if assistant_response:
|
30
|
-
content =
|
19
|
+
content = {}
|
31
20
|
# Handle model.choices[0].message.content format
|
32
21
|
if isinstance(assistant_response, BaseModel):
|
33
22
|
content["assistant_response"] = (
|
@@ -73,68 +62,17 @@ def prepare_assistant_response(
|
|
73
62
|
elif isinstance(assistant_response, str):
|
74
63
|
content["assistant_response"] = assistant_response
|
75
64
|
else:
|
76
|
-
content["assistant_response"] =
|
65
|
+
content["assistant_response"] = str(assistant_response)
|
77
66
|
return content
|
78
67
|
else:
|
79
|
-
return
|
68
|
+
return {"assistant_response": ""}
|
80
69
|
|
81
70
|
|
82
71
|
class AssistantResponse(RoledMessage):
|
83
|
-
"""
|
84
|
-
Represents a response from an assistant in the system.
|
85
|
-
|
86
|
-
This class handles responses from AI assistants, supporting both direct
|
87
|
-
text responses and structured model outputs. It provides access to both
|
88
|
-
the formatted response content and the underlying model data.
|
89
|
-
|
90
|
-
Example:
|
91
|
-
>>> response = AssistantResponse(
|
92
|
-
... assistant_response="The answer is 42",
|
93
|
-
... sender="assistant",
|
94
|
-
... recipient="user"
|
95
|
-
... )
|
96
|
-
>>> print(response.response)
|
97
|
-
'The answer is 42'
|
98
|
-
"""
|
99
|
-
|
100
|
-
@override
|
101
|
-
def __init__(
|
102
|
-
self,
|
103
|
-
assistant_response: BaseModel | JsonValue | MessageFlag,
|
104
|
-
sender: ID.Ref | MessageFlag,
|
105
|
-
recipient: ID.Ref | MessageFlag,
|
106
|
-
protected_init_params: dict | None = None,
|
107
|
-
) -> None:
|
108
|
-
"""
|
109
|
-
Initialize an AssistantResponse instance.
|
110
|
-
|
111
|
-
Args:
|
112
|
-
assistant_response: The content of the assistant's response
|
113
|
-
sender: The sender of the response
|
114
|
-
recipient: The recipient of the response
|
115
|
-
protected_init_params: Protected initialization parameters
|
116
|
-
"""
|
117
|
-
message_flags = [assistant_response, sender, recipient]
|
118
|
-
|
119
|
-
if all(x == MessageFlag.MESSAGE_LOAD for x in message_flags):
|
120
|
-
protected_init_params = protected_init_params or {}
|
121
|
-
super().__init__(**protected_init_params)
|
122
|
-
return
|
123
72
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
super().__init__(
|
129
|
-
role=MessageRole.ASSISTANT,
|
130
|
-
sender=sender or "N/A",
|
131
|
-
recipient=recipient,
|
132
|
-
)
|
133
|
-
|
134
|
-
content = prepare_assistant_response(assistant_response)
|
135
|
-
if "model_response" in content:
|
136
|
-
self.metadata["model_response"] = content.pop("model_response")
|
137
|
-
self.content = content
|
73
|
+
template: Template | str | None = jinja_env.get_template(
|
74
|
+
"assistant_response.jinja2"
|
75
|
+
)
|
138
76
|
|
139
77
|
@property
|
140
78
|
def response(self) -> str:
|
@@ -166,6 +104,44 @@ class AssistantResponse(RoledMessage):
|
|
166
104
|
"""
|
167
105
|
return copy(self.metadata.get("model_response", {}))
|
168
106
|
|
169
|
-
@
|
170
|
-
def
|
171
|
-
|
107
|
+
@classmethod
|
108
|
+
def create(
|
109
|
+
cls,
|
110
|
+
assistant_response: BaseModel | list[BaseModel] | dict | str | Any,
|
111
|
+
sender: SenderRecipient | None = None,
|
112
|
+
recipient: SenderRecipient | None = None,
|
113
|
+
template: Template | str | None = None,
|
114
|
+
**kwargs,
|
115
|
+
):
|
116
|
+
content = prepare_assistant_response(assistant_response)
|
117
|
+
model_response = content.pop("model_response", {})
|
118
|
+
content.update(kwargs)
|
119
|
+
params = {
|
120
|
+
"content": content,
|
121
|
+
"role": MessageRole.ASSISTANT,
|
122
|
+
"recipient": recipient or MessageRole.USER,
|
123
|
+
}
|
124
|
+
if sender:
|
125
|
+
params["sender"] = sender
|
126
|
+
if template:
|
127
|
+
params["template"] = template
|
128
|
+
if model_response:
|
129
|
+
params["metadata"] = {"model_response": model_response}
|
130
|
+
return cls(**params)
|
131
|
+
|
132
|
+
def update(
|
133
|
+
self,
|
134
|
+
assistant_response: (
|
135
|
+
BaseModel | list[BaseModel] | dict | str | Any
|
136
|
+
) = None,
|
137
|
+
sender: SenderRecipient | None = None,
|
138
|
+
recipient: SenderRecipient | None = None,
|
139
|
+
template: Template | str | None = None,
|
140
|
+
**kwargs,
|
141
|
+
):
|
142
|
+
if assistant_response:
|
143
|
+
content = prepare_assistant_response(assistant_response)
|
144
|
+
self.content.update(content)
|
145
|
+
super().update(
|
146
|
+
sender=sender, recipient=recipient, template=template, **kwargs
|
147
|
+
)
|