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
@@ -0,0 +1,429 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from typing import Any, Literal
|
6
|
+
|
7
|
+
from jinja2 import Template
|
8
|
+
from pydantic import BaseModel, JsonValue
|
9
|
+
|
10
|
+
from .._concepts import Manager
|
11
|
+
from ..generic.log import Log
|
12
|
+
from ..generic.pile import Pile
|
13
|
+
from ..generic.progression import Progression
|
14
|
+
from .action_request import ActionRequest
|
15
|
+
from .action_response import ActionResponse
|
16
|
+
from .assistant_response import AssistantResponse
|
17
|
+
from .instruction import Instruction
|
18
|
+
from .message import RoledMessage, SenderRecipient
|
19
|
+
from .system import System
|
20
|
+
|
21
|
+
DEFAULT_SYSTEM = "You are a helpful AI assistant. Let's think step by step."
|
22
|
+
|
23
|
+
|
24
|
+
class MessageManager(Manager):
|
25
|
+
|
26
|
+
def __init__(
|
27
|
+
self,
|
28
|
+
messages: list[RoledMessage] | None = None,
|
29
|
+
progression: Progression | None = None,
|
30
|
+
system: System | None = None,
|
31
|
+
):
|
32
|
+
super().__init__()
|
33
|
+
m_ = []
|
34
|
+
if isinstance(messages, list):
|
35
|
+
for i in messages:
|
36
|
+
if isinstance(i, dict):
|
37
|
+
i = RoledMessage.from_dict(i)
|
38
|
+
if isinstance(i, RoledMessage):
|
39
|
+
m_.append(i)
|
40
|
+
if isinstance(messages, dict):
|
41
|
+
self.messages = Pile.from_dict(messages)
|
42
|
+
else:
|
43
|
+
self.messages: Pile[RoledMessage] = Pile(
|
44
|
+
collections=m_,
|
45
|
+
item_type={RoledMessage},
|
46
|
+
strict_type=False,
|
47
|
+
progression=progression,
|
48
|
+
)
|
49
|
+
if system and not isinstance(system, System):
|
50
|
+
raise ValueError("System message must be a System instance.")
|
51
|
+
self.system = system # system must be the first message
|
52
|
+
if self.system:
|
53
|
+
self.add_message(system=self.system)
|
54
|
+
|
55
|
+
@property
|
56
|
+
def progression(self) -> Progression:
|
57
|
+
return self.messages.progression
|
58
|
+
|
59
|
+
def set_system(self, system: System) -> None:
|
60
|
+
"""
|
61
|
+
Set or update the system message.
|
62
|
+
|
63
|
+
Args:
|
64
|
+
system: The new system message to set
|
65
|
+
"""
|
66
|
+
if not self.system:
|
67
|
+
self.system = system
|
68
|
+
self.messages.insert(0, self.system)
|
69
|
+
else:
|
70
|
+
old_system = self.system
|
71
|
+
self.system = system
|
72
|
+
self.messages.insert(0, self.system)
|
73
|
+
self.messages.exclude(old_system)
|
74
|
+
|
75
|
+
async def aclear_messages(self):
|
76
|
+
"""Asynchronously clear all messages except system message."""
|
77
|
+
async with self.messages:
|
78
|
+
self.clear_messages()
|
79
|
+
|
80
|
+
async def a_add_message(self, **kwargs):
|
81
|
+
"""
|
82
|
+
Asynchronously add a message.
|
83
|
+
|
84
|
+
Args:
|
85
|
+
**kwargs: Message creation parameters
|
86
|
+
"""
|
87
|
+
async with self.messages:
|
88
|
+
return self.add_message(**kwargs)
|
89
|
+
|
90
|
+
@staticmethod
|
91
|
+
def create_instruction(
|
92
|
+
*,
|
93
|
+
instruction: JsonValue = None,
|
94
|
+
context: JsonValue = None,
|
95
|
+
guidance: JsonValue = None,
|
96
|
+
images: list = None,
|
97
|
+
request_fields: JsonValue = None,
|
98
|
+
plain_content: JsonValue = None,
|
99
|
+
image_detail: Literal["low", "high", "auto"] = None,
|
100
|
+
request_model: BaseModel | type[BaseModel] = None,
|
101
|
+
response_format: BaseModel | type[BaseModel] = None,
|
102
|
+
tool_schemas: dict = None,
|
103
|
+
sender: SenderRecipient = None,
|
104
|
+
recipient: SenderRecipient = None,
|
105
|
+
) -> Instruction:
|
106
|
+
|
107
|
+
params = {k: v for k, v in locals().items() if v is not None}
|
108
|
+
|
109
|
+
if isinstance(instruction, Instruction):
|
110
|
+
params.pop("instruction")
|
111
|
+
instruction.update(**params)
|
112
|
+
return instruction
|
113
|
+
else:
|
114
|
+
return Instruction.create(**params)
|
115
|
+
|
116
|
+
@staticmethod
|
117
|
+
def create_assistant_response(
|
118
|
+
*,
|
119
|
+
sender: Any = None,
|
120
|
+
recipient: Any = None,
|
121
|
+
assistant_response: AssistantResponse | Any = None,
|
122
|
+
template: Template | str = None,
|
123
|
+
template_context: dict[str, Any] = None,
|
124
|
+
) -> AssistantResponse:
|
125
|
+
|
126
|
+
params = {k: v for k, v in locals().items() if v is not None}
|
127
|
+
template_context = params.pop("template_context", {})
|
128
|
+
params.update(template_context)
|
129
|
+
|
130
|
+
if isinstance(assistant_response, AssistantResponse):
|
131
|
+
params.pop("assistant_response")
|
132
|
+
assistant_response.update(**params)
|
133
|
+
return assistant_response
|
134
|
+
|
135
|
+
return AssistantResponse.create(**params)
|
136
|
+
|
137
|
+
@staticmethod
|
138
|
+
def create_action_request(
|
139
|
+
*,
|
140
|
+
sender: SenderRecipient = None,
|
141
|
+
recipient: SenderRecipient = None,
|
142
|
+
function: str = None,
|
143
|
+
arguments: dict[str, Any] = None,
|
144
|
+
action_request: ActionRequest | None = None,
|
145
|
+
template: Template | str = None,
|
146
|
+
template_context: dict[str, Any] = None,
|
147
|
+
) -> ActionRequest:
|
148
|
+
|
149
|
+
params = {
|
150
|
+
"sender": sender,
|
151
|
+
"recipient": recipient,
|
152
|
+
"function": function,
|
153
|
+
"arguments": arguments,
|
154
|
+
"template": template,
|
155
|
+
**(template_context or {}),
|
156
|
+
}
|
157
|
+
|
158
|
+
if isinstance(action_request, ActionRequest):
|
159
|
+
action_request.update(**params)
|
160
|
+
return action_request
|
161
|
+
|
162
|
+
return ActionRequest.create(**params)
|
163
|
+
|
164
|
+
@staticmethod
|
165
|
+
def create_action_response(
|
166
|
+
*,
|
167
|
+
action_request: ActionRequest,
|
168
|
+
action_output: Any = None,
|
169
|
+
action_response: ActionResponse | Any = None,
|
170
|
+
sender: SenderRecipient = None,
|
171
|
+
recipient: SenderRecipient = None,
|
172
|
+
) -> ActionResponse:
|
173
|
+
|
174
|
+
if not isinstance(action_request, ActionRequest):
|
175
|
+
raise ValueError(
|
176
|
+
"Error: please provide a corresponding action request for an "
|
177
|
+
"action response."
|
178
|
+
)
|
179
|
+
|
180
|
+
params = {
|
181
|
+
"action_request": action_request,
|
182
|
+
"output": action_output,
|
183
|
+
"sender": sender,
|
184
|
+
"recipient": recipient,
|
185
|
+
}
|
186
|
+
|
187
|
+
if isinstance(action_response, ActionResponse):
|
188
|
+
action_response.update(**params)
|
189
|
+
return action_response
|
190
|
+
|
191
|
+
return ActionResponse.create(**params)
|
192
|
+
|
193
|
+
@staticmethod
|
194
|
+
def create_system(
|
195
|
+
*,
|
196
|
+
system: Any = None,
|
197
|
+
system_datetime: bool | str = None,
|
198
|
+
sender: Any = None,
|
199
|
+
recipient: Any = None,
|
200
|
+
template: Template | str = None,
|
201
|
+
template_context: dict[str, Any] = None,
|
202
|
+
) -> System:
|
203
|
+
params = {
|
204
|
+
"system_datetime": system_datetime,
|
205
|
+
"sender": sender,
|
206
|
+
"recipient": recipient,
|
207
|
+
"template": template,
|
208
|
+
**(template_context or {}),
|
209
|
+
}
|
210
|
+
if isinstance(system, System):
|
211
|
+
system.update(**params)
|
212
|
+
return system
|
213
|
+
|
214
|
+
if system:
|
215
|
+
params["system_message"] = system
|
216
|
+
|
217
|
+
return System.create(**params)
|
218
|
+
|
219
|
+
def add_message(
|
220
|
+
self,
|
221
|
+
*,
|
222
|
+
# common
|
223
|
+
sender: SenderRecipient = None,
|
224
|
+
recipient: SenderRecipient = None,
|
225
|
+
template: Template | str = None,
|
226
|
+
template_context: dict[str, Any] = None,
|
227
|
+
metadata: dict[str, Any] = None,
|
228
|
+
# instruction
|
229
|
+
instruction: JsonValue = None,
|
230
|
+
context: JsonValue = None,
|
231
|
+
guidance: JsonValue = None,
|
232
|
+
request_fields: JsonValue = None,
|
233
|
+
plain_content: JsonValue = None,
|
234
|
+
request_model: BaseModel | type[BaseModel] = None,
|
235
|
+
response_format: BaseModel | type[BaseModel] = None,
|
236
|
+
images: list = None,
|
237
|
+
image_detail: Literal["low", "high", "auto"] = None,
|
238
|
+
tool_schemas: dict = None,
|
239
|
+
# system
|
240
|
+
system: Any = None,
|
241
|
+
system_datetime: bool | str = None,
|
242
|
+
# assistant_response
|
243
|
+
assistant_response: AssistantResponse | Any = None,
|
244
|
+
# actions
|
245
|
+
action_function: str = None,
|
246
|
+
action_arguments: dict[str, Any] = None,
|
247
|
+
action_output: Any = None,
|
248
|
+
action_request: ActionRequest | None = None,
|
249
|
+
action_response: ActionResponse | Any = None,
|
250
|
+
) -> tuple[RoledMessage, Log]:
|
251
|
+
|
252
|
+
_msg = None
|
253
|
+
if (
|
254
|
+
sum(
|
255
|
+
bool(x)
|
256
|
+
for x in (
|
257
|
+
instruction,
|
258
|
+
assistant_response,
|
259
|
+
system,
|
260
|
+
action_request,
|
261
|
+
)
|
262
|
+
)
|
263
|
+
> 1
|
264
|
+
):
|
265
|
+
raise ValueError("Only one message type can be added at a time.")
|
266
|
+
|
267
|
+
if system:
|
268
|
+
_msg = self.create_system(
|
269
|
+
system=system,
|
270
|
+
system_datetime=system_datetime,
|
271
|
+
sender=sender,
|
272
|
+
recipient=recipient,
|
273
|
+
template=template,
|
274
|
+
template_context=template_context,
|
275
|
+
)
|
276
|
+
self.set_system(_msg)
|
277
|
+
|
278
|
+
elif action_output:
|
279
|
+
_msg = self.create_action_response(
|
280
|
+
action_request=action_request,
|
281
|
+
action_output=action_output,
|
282
|
+
action_response=action_response,
|
283
|
+
sender=sender,
|
284
|
+
recipient=recipient,
|
285
|
+
)
|
286
|
+
|
287
|
+
elif action_request or (action_function and action_arguments):
|
288
|
+
_msg = self.create_action_request(
|
289
|
+
sender=sender,
|
290
|
+
recipient=recipient,
|
291
|
+
function=action_function,
|
292
|
+
arguments=action_arguments,
|
293
|
+
action_request=action_request,
|
294
|
+
template=template,
|
295
|
+
template_context=template_context,
|
296
|
+
)
|
297
|
+
|
298
|
+
elif assistant_response:
|
299
|
+
_msg = self.create_assistant_response(
|
300
|
+
sender=sender,
|
301
|
+
recipient=recipient,
|
302
|
+
assistant_response=assistant_response,
|
303
|
+
template=template,
|
304
|
+
template_context=template_context,
|
305
|
+
)
|
306
|
+
|
307
|
+
else:
|
308
|
+
_msg = self.create_instruction(
|
309
|
+
instruction=instruction,
|
310
|
+
context=context,
|
311
|
+
guidance=guidance,
|
312
|
+
images=images,
|
313
|
+
request_fields=request_fields,
|
314
|
+
plain_content=plain_content,
|
315
|
+
image_detail=image_detail,
|
316
|
+
request_model=request_model,
|
317
|
+
response_format=response_format,
|
318
|
+
tool_schemas=tool_schemas,
|
319
|
+
sender=sender,
|
320
|
+
recipient=recipient,
|
321
|
+
)
|
322
|
+
|
323
|
+
if metadata:
|
324
|
+
_msg.metadata.setdefault("extra", {})
|
325
|
+
_msg.metadata["extra"].update(metadata)
|
326
|
+
|
327
|
+
if _msg in self.messages:
|
328
|
+
idx = self.messages.progression.index(_msg.id)
|
329
|
+
self.messages.exclude(_msg.id)
|
330
|
+
self.messages.insert(idx, _msg)
|
331
|
+
else:
|
332
|
+
self.messages.include(_msg)
|
333
|
+
|
334
|
+
return _msg
|
335
|
+
|
336
|
+
def clear_messages(self):
|
337
|
+
self.messages.clear()
|
338
|
+
if self.system:
|
339
|
+
self.messages.insert(0, self.system)
|
340
|
+
|
341
|
+
@property
|
342
|
+
def last_response(self) -> AssistantResponse | None:
|
343
|
+
"""Get the last assistant response message."""
|
344
|
+
for i in reversed(self.messages.progression):
|
345
|
+
if isinstance(self.messages[i], AssistantResponse):
|
346
|
+
return self.messages[i]
|
347
|
+
|
348
|
+
@property
|
349
|
+
def last_instruction(self) -> Instruction | None:
|
350
|
+
"""Get the last instruction message."""
|
351
|
+
for i in reversed(self.messages.progression):
|
352
|
+
if isinstance(self.messages[i], Instruction):
|
353
|
+
return self.messages[i]
|
354
|
+
|
355
|
+
@property
|
356
|
+
def assistant_responses(self) -> Pile[AssistantResponse]:
|
357
|
+
"""Get all assistant response messages."""
|
358
|
+
return Pile(
|
359
|
+
collections=[
|
360
|
+
self.messages[i]
|
361
|
+
for i in self.messages.progression
|
362
|
+
if isinstance(self.messages[i], AssistantResponse)
|
363
|
+
]
|
364
|
+
)
|
365
|
+
|
366
|
+
@property
|
367
|
+
def action_requests(self) -> Pile[ActionRequest]:
|
368
|
+
"""Get all action request messages."""
|
369
|
+
return Pile(
|
370
|
+
collections=[
|
371
|
+
self.messages[i]
|
372
|
+
for i in self.messages.progression
|
373
|
+
if isinstance(self.messages[i], ActionRequest)
|
374
|
+
]
|
375
|
+
)
|
376
|
+
|
377
|
+
@property
|
378
|
+
def action_responses(self) -> Pile[ActionResponse]:
|
379
|
+
"""Get all action response messages."""
|
380
|
+
return Pile(
|
381
|
+
collections=[
|
382
|
+
self.messages[i]
|
383
|
+
for i in self.messages.progression
|
384
|
+
if isinstance(self.messages[i], ActionResponse)
|
385
|
+
]
|
386
|
+
)
|
387
|
+
|
388
|
+
@property
|
389
|
+
def instructions(self) -> Pile[Instruction]:
|
390
|
+
"""Get all instruction messages."""
|
391
|
+
return Pile(
|
392
|
+
collections=[
|
393
|
+
self.messages[i]
|
394
|
+
for i in self.messages.progression
|
395
|
+
if isinstance(self.messages[i], Instruction)
|
396
|
+
]
|
397
|
+
)
|
398
|
+
|
399
|
+
def remove_last_instruction_tool_schemas(self) -> None:
|
400
|
+
id_ = self.last_instruction.id
|
401
|
+
self.messages[id_].tool_schemas = None
|
402
|
+
|
403
|
+
def concat_recent_action_responses_to_instruction(
|
404
|
+
self, instruction: Instruction
|
405
|
+
) -> None:
|
406
|
+
for i in reversed(self.messages.progression):
|
407
|
+
if isinstance(self.messages[i], ActionResponse):
|
408
|
+
instruction.context.append(self.messages[i].content)
|
409
|
+
else:
|
410
|
+
break
|
411
|
+
|
412
|
+
def to_chat_msgs(self, progression=None) -> list[dict]:
|
413
|
+
if progression == []:
|
414
|
+
return []
|
415
|
+
try:
|
416
|
+
return [
|
417
|
+
self.messages[i].chat_msg
|
418
|
+
for i in (progression or self.progression)
|
419
|
+
]
|
420
|
+
except Exception as e:
|
421
|
+
raise ValueError(
|
422
|
+
"Invalid progress, not all requested messages are in the message pile"
|
423
|
+
) from e
|
424
|
+
|
425
|
+
def __bool__(self):
|
426
|
+
return bool(self.messages)
|
427
|
+
|
428
|
+
def __contains__(self, message: RoledMessage) -> bool:
|
429
|
+
return message in self.messages
|
@@ -0,0 +1,216 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
import json
|
6
|
+
from pathlib import Path
|
7
|
+
from typing import Any
|
8
|
+
|
9
|
+
from jinja2 import Environment, FileSystemLoader, Template
|
10
|
+
from pydantic import Field, PrivateAttr, field_serializer
|
11
|
+
|
12
|
+
from .._concepts import Sendable
|
13
|
+
from ..generic.element import Element, IDType
|
14
|
+
from ..generic.log import Log
|
15
|
+
from ..graph.node import Node
|
16
|
+
from .base import (
|
17
|
+
MessageFlag,
|
18
|
+
MessageRole,
|
19
|
+
SenderRecipient,
|
20
|
+
validate_sender_recipient,
|
21
|
+
)
|
22
|
+
|
23
|
+
template_path = Path(__file__).parent / "templates"
|
24
|
+
jinja_env = Environment(loader=FileSystemLoader(template_path))
|
25
|
+
|
26
|
+
__all__ = ("RoledMessage",)
|
27
|
+
|
28
|
+
|
29
|
+
class RoledMessage(Node, Sendable):
|
30
|
+
|
31
|
+
content: dict = Field(
|
32
|
+
default_factory=dict,
|
33
|
+
description="The content of the message.",
|
34
|
+
)
|
35
|
+
|
36
|
+
role: MessageRole | None = Field(
|
37
|
+
None,
|
38
|
+
description="The role of the message in the conversation.",
|
39
|
+
)
|
40
|
+
|
41
|
+
_flag: MessageFlag | None = PrivateAttr(None)
|
42
|
+
|
43
|
+
template: str | Template | None = None
|
44
|
+
|
45
|
+
sender: SenderRecipient | None = Field(
|
46
|
+
default=MessageRole.UNSET,
|
47
|
+
title="Sender",
|
48
|
+
description="The ID of the sender node or a role.",
|
49
|
+
)
|
50
|
+
|
51
|
+
recipient: SenderRecipient | None = Field(
|
52
|
+
default=MessageRole.UNSET,
|
53
|
+
title="Recipient",
|
54
|
+
description="The ID of the recipient node or a role.",
|
55
|
+
)
|
56
|
+
|
57
|
+
@field_serializer("sender", "recipient")
|
58
|
+
def _serialize_sender_recipient(self, value: SenderRecipient) -> str:
|
59
|
+
if isinstance(value, MessageRole | MessageFlag):
|
60
|
+
return value.value
|
61
|
+
if isinstance(value, str):
|
62
|
+
return value
|
63
|
+
if isinstance(value, Element):
|
64
|
+
return str(value.id)
|
65
|
+
if isinstance(value, IDType):
|
66
|
+
return str(value)
|
67
|
+
return str(value)
|
68
|
+
|
69
|
+
@property
|
70
|
+
def image_content(self) -> list[dict[str, Any]] | None:
|
71
|
+
"""
|
72
|
+
Return image content if present in the message.
|
73
|
+
|
74
|
+
Returns:
|
75
|
+
Optional[List[Dict[str, Any]]]: A list of image content
|
76
|
+
dictionaries, or None if no images are present.
|
77
|
+
"""
|
78
|
+
msg_ = self.chat_msg
|
79
|
+
if isinstance(msg_, dict) and isinstance(msg_["content"], list):
|
80
|
+
return [i for i in msg_["content"] if i["type"] == "image_url"]
|
81
|
+
return None
|
82
|
+
|
83
|
+
@property
|
84
|
+
def chat_msg(self) -> dict[str, Any] | None:
|
85
|
+
"""
|
86
|
+
Return message in chat representation format.
|
87
|
+
|
88
|
+
Returns:
|
89
|
+
Optional[Dict[str, Any]]: The message formatted for chat use,
|
90
|
+
or None if formatting fails.
|
91
|
+
"""
|
92
|
+
try:
|
93
|
+
return {"role": str(self.role), "content": self.rendered}
|
94
|
+
except Exception:
|
95
|
+
return None
|
96
|
+
|
97
|
+
@property
|
98
|
+
def rendered(self) -> str:
|
99
|
+
try:
|
100
|
+
if isinstance(self.template, str):
|
101
|
+
return self.template.format(**self.content)
|
102
|
+
if isinstance(self.template, Template):
|
103
|
+
return self.template.render(**self.content)
|
104
|
+
except Exception:
|
105
|
+
return json.dumps(self.content)
|
106
|
+
|
107
|
+
@classmethod
|
108
|
+
def create(cls, **kwargs):
|
109
|
+
raise NotImplementedError(
|
110
|
+
"create method must be implemented in subclass"
|
111
|
+
)
|
112
|
+
|
113
|
+
@classmethod
|
114
|
+
def from_dict(cls, dict_: dict):
|
115
|
+
try:
|
116
|
+
self: RoledMessage = super().from_dict(
|
117
|
+
{k: v for k, v in dict_.items() if v}
|
118
|
+
)
|
119
|
+
self._flag = MessageFlag.MESSAGE_LOAD
|
120
|
+
return self
|
121
|
+
except Exception as e:
|
122
|
+
raise ValueError(f"Invalid RoledMessage data: {e}")
|
123
|
+
|
124
|
+
def is_clone(self) -> bool:
|
125
|
+
"""
|
126
|
+
Check if the message is a clone of another message.
|
127
|
+
|
128
|
+
Returns:
|
129
|
+
bool: True if the message is a clone, False otherwise.
|
130
|
+
"""
|
131
|
+
return self._flag == MessageFlag.MESSAGE_CLONE
|
132
|
+
|
133
|
+
def clone(self, keep_role: bool = True) -> "RoledMessage":
|
134
|
+
instance = self.__class__(
|
135
|
+
content=self.content,
|
136
|
+
role=self.role if keep_role else MessageRole.UNSET,
|
137
|
+
metadata={"clone_from": self},
|
138
|
+
)
|
139
|
+
instance._flag = MessageFlag.MESSAGE_CLONE
|
140
|
+
return instance
|
141
|
+
|
142
|
+
def to_log(self) -> Log:
|
143
|
+
"""
|
144
|
+
Convert the message to a Log object.
|
145
|
+
|
146
|
+
Creates a Log instance containing the message content and additional
|
147
|
+
information as loginfo.
|
148
|
+
|
149
|
+
Returns:
|
150
|
+
Log: A Log object representing the message.
|
151
|
+
"""
|
152
|
+
return Log.create(self)
|
153
|
+
|
154
|
+
@field_serializer("role")
|
155
|
+
def _serialize_role(self, value: MessageRole):
|
156
|
+
"""
|
157
|
+
Serialize the role for storage or transmission.
|
158
|
+
|
159
|
+
Args:
|
160
|
+
value: The MessageRole to serialize
|
161
|
+
|
162
|
+
Returns:
|
163
|
+
str: The string value of the role
|
164
|
+
"""
|
165
|
+
if isinstance(value, MessageRole):
|
166
|
+
return value.value
|
167
|
+
return str(value)
|
168
|
+
|
169
|
+
@field_serializer("metadata")
|
170
|
+
def _serialize_metadata(self, value: dict):
|
171
|
+
if "clone_from" in value:
|
172
|
+
origin_obj: RoledMessage = value.pop("clone_from")
|
173
|
+
origin_info = origin_obj.to_dict()
|
174
|
+
value["clone_from_info"] = {
|
175
|
+
"clone_from_info": {
|
176
|
+
"original_id": origin_info["id"],
|
177
|
+
"original_created_at": origin_info["created_at"],
|
178
|
+
"original_sender": origin_info["sender"],
|
179
|
+
"original_recipient": origin_info["recipient"],
|
180
|
+
"original_lion_class": origin_info["metadata"][
|
181
|
+
"lion_class"
|
182
|
+
],
|
183
|
+
"original_role": origin_info["role"],
|
184
|
+
}
|
185
|
+
}
|
186
|
+
return value
|
187
|
+
|
188
|
+
@field_serializer("template")
|
189
|
+
def _serialize_template(self, value: Template | str):
|
190
|
+
if isinstance(value, Template):
|
191
|
+
return None
|
192
|
+
return value
|
193
|
+
|
194
|
+
def update(self, sender, recipient, template, **kwargs):
|
195
|
+
if sender:
|
196
|
+
self.sender = validate_sender_recipient(sender)
|
197
|
+
if recipient:
|
198
|
+
self.recipient = validate_sender_recipient(recipient)
|
199
|
+
if kwargs:
|
200
|
+
self.content.update(kwargs)
|
201
|
+
if template:
|
202
|
+
if not isinstance(template, Template | str):
|
203
|
+
raise ValueError("Template must be a Jinja2 Template or str")
|
204
|
+
self.template = template
|
205
|
+
|
206
|
+
def __str__(self) -> str:
|
207
|
+
|
208
|
+
content_preview = (
|
209
|
+
f"{str(self.content)[:75]}..."
|
210
|
+
if len(str(self.content)) > 75
|
211
|
+
else str(self.content)
|
212
|
+
)
|
213
|
+
return (
|
214
|
+
f"Message(role={self.role}, sender={self.sender}, "
|
215
|
+
f"content='{content_preview}')"
|
216
|
+
)
|