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
@@ -1,543 +0,0 @@
|
|
1
|
-
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
-
#
|
3
|
-
# SPDX-License-Identifier: Apache-2.0
|
4
|
-
|
5
|
-
from lionagi.core.generic.types import LogManager, Pile, Progression
|
6
|
-
from lionagi.core.typing import ID, Any, BaseModel, JsonValue, Literal
|
7
|
-
|
8
|
-
from .action_request import ActionRequest
|
9
|
-
from .action_response import ActionResponse
|
10
|
-
from .assistant_response import AssistantResponse
|
11
|
-
from .instruction import Instruction
|
12
|
-
from .message import RoledMessage
|
13
|
-
from .system import System
|
14
|
-
|
15
|
-
DEFAULT_SYSTEM = "You are a helpful AI assistant. Let's think step by step."
|
16
|
-
|
17
|
-
|
18
|
-
class MessageManager:
|
19
|
-
"""
|
20
|
-
Manages messages within a communication system.
|
21
|
-
|
22
|
-
This class provides functionality for creating, adding, and managing
|
23
|
-
different types of messages in a conversation. It maintains message
|
24
|
-
history, handles system messages, and provides access to specific
|
25
|
-
message types.
|
26
|
-
|
27
|
-
Attributes:
|
28
|
-
messages (Pile[RoledMessage]): Collection of messages
|
29
|
-
logger (LogManager): Logger for message history
|
30
|
-
system (System): System message setting context
|
31
|
-
save_on_clear (bool): Whether to save logs when clearing
|
32
|
-
"""
|
33
|
-
|
34
|
-
def __init__(
|
35
|
-
self, messages=None, logger=None, system=None, save_on_clear=True
|
36
|
-
):
|
37
|
-
"""
|
38
|
-
Initialize a MessageManager instance.
|
39
|
-
|
40
|
-
Args:
|
41
|
-
messages: Initial list of messages
|
42
|
-
logger: Logger instance for message history
|
43
|
-
system: Initial system message
|
44
|
-
save_on_clear: Whether to save logs when clearing
|
45
|
-
"""
|
46
|
-
super().__init__()
|
47
|
-
self.messages: Pile[RoledMessage] = Pile(
|
48
|
-
items=messages, item_type={RoledMessage}
|
49
|
-
)
|
50
|
-
self.logger = logger or LogManager()
|
51
|
-
self.system = system
|
52
|
-
self.save_on_clear = save_on_clear
|
53
|
-
if self.system:
|
54
|
-
self.add_message(system=self.system)
|
55
|
-
|
56
|
-
def set_system(self, system: System) -> None:
|
57
|
-
"""
|
58
|
-
Set or update the system message.
|
59
|
-
|
60
|
-
Args:
|
61
|
-
system: The new system message to set
|
62
|
-
"""
|
63
|
-
if not self.system:
|
64
|
-
self.system = system
|
65
|
-
self.messages.insert(0, self.system)
|
66
|
-
else:
|
67
|
-
old_system = self.system
|
68
|
-
self.system = system
|
69
|
-
self.messages.insert(0, self.system)
|
70
|
-
self.messages.exclude(old_system)
|
71
|
-
|
72
|
-
async def aclear_messages(self):
|
73
|
-
"""Asynchronously clear all messages except system message."""
|
74
|
-
async with self.messages:
|
75
|
-
self.clear_messages()
|
76
|
-
|
77
|
-
async def a_add_message(self, **kwargs):
|
78
|
-
"""
|
79
|
-
Asynchronously add a message.
|
80
|
-
|
81
|
-
Args:
|
82
|
-
**kwargs: Message creation parameters
|
83
|
-
"""
|
84
|
-
async with self.messages:
|
85
|
-
return self.add_message(**kwargs)
|
86
|
-
|
87
|
-
@property
|
88
|
-
def progress(self) -> Progression:
|
89
|
-
"""Get the progression of messages."""
|
90
|
-
return Progression(order=list(self.messages))
|
91
|
-
|
92
|
-
@staticmethod
|
93
|
-
def create_instruction(
|
94
|
-
*,
|
95
|
-
sender: ID.SenderRecipient = None,
|
96
|
-
recipient: ID.SenderRecipient = None,
|
97
|
-
instruction: Instruction | JsonValue = None,
|
98
|
-
context: JsonValue = None,
|
99
|
-
guidance: JsonValue = None,
|
100
|
-
plain_content: str = None,
|
101
|
-
request_fields: list[str] | dict[str, Any] = None,
|
102
|
-
request_model: type[BaseModel] | BaseModel = None,
|
103
|
-
images: list = None,
|
104
|
-
image_detail: Literal["low", "high", "auto"] = None,
|
105
|
-
tool_schemas: dict | None = None,
|
106
|
-
**kwargs,
|
107
|
-
) -> Instruction:
|
108
|
-
"""
|
109
|
-
Create an instruction message.
|
110
|
-
|
111
|
-
Args:
|
112
|
-
sender: Message sender
|
113
|
-
recipient: Message recipient
|
114
|
-
instruction: Instruction content
|
115
|
-
context: Additional context
|
116
|
-
guidance: Optional guidance
|
117
|
-
plain_content: Plain text content
|
118
|
-
request_fields: Fields to request
|
119
|
-
request_model: Pydantic model for requests
|
120
|
-
images: Optional images
|
121
|
-
image_detail: Image detail level
|
122
|
-
tool_schemas: Optional tool schemas
|
123
|
-
**kwargs: Additional parameters
|
124
|
-
|
125
|
-
Returns:
|
126
|
-
Instruction: The created instruction
|
127
|
-
"""
|
128
|
-
if isinstance(instruction, Instruction):
|
129
|
-
instruction.update(
|
130
|
-
context,
|
131
|
-
guidance=guidance,
|
132
|
-
request_fields=request_fields,
|
133
|
-
plain_content=plain_content,
|
134
|
-
request_model=request_model,
|
135
|
-
images=images,
|
136
|
-
image_detail=image_detail,
|
137
|
-
tool_schemas=tool_schemas,
|
138
|
-
**kwargs,
|
139
|
-
)
|
140
|
-
if sender:
|
141
|
-
instruction.sender = sender
|
142
|
-
if recipient:
|
143
|
-
instruction.recipient = recipient
|
144
|
-
return instruction
|
145
|
-
else:
|
146
|
-
return Instruction(
|
147
|
-
sender=sender,
|
148
|
-
recipient=recipient,
|
149
|
-
instruction=instruction,
|
150
|
-
context=context,
|
151
|
-
guidance=guidance,
|
152
|
-
request_fields=request_fields,
|
153
|
-
request_model=request_model,
|
154
|
-
plain_content=plain_content,
|
155
|
-
images=images,
|
156
|
-
image_detail=image_detail,
|
157
|
-
tool_schemas=tool_schemas,
|
158
|
-
**kwargs,
|
159
|
-
)
|
160
|
-
|
161
|
-
@staticmethod
|
162
|
-
def create_assistant_response(
|
163
|
-
*,
|
164
|
-
sender: Any = None,
|
165
|
-
recipient: Any = None,
|
166
|
-
assistant_response: AssistantResponse | Any = None,
|
167
|
-
) -> AssistantResponse:
|
168
|
-
"""
|
169
|
-
Create an assistant response message.
|
170
|
-
|
171
|
-
Args:
|
172
|
-
sender: Message sender
|
173
|
-
recipient: Message recipient
|
174
|
-
assistant_response: Response content
|
175
|
-
|
176
|
-
Returns:
|
177
|
-
AssistantResponse: The created response
|
178
|
-
"""
|
179
|
-
if isinstance(assistant_response, AssistantResponse):
|
180
|
-
if sender:
|
181
|
-
assistant_response.sender = sender
|
182
|
-
if recipient:
|
183
|
-
assistant_response.recipient = recipient
|
184
|
-
return assistant_response
|
185
|
-
|
186
|
-
return AssistantResponse(
|
187
|
-
assistant_response=assistant_response,
|
188
|
-
sender=sender,
|
189
|
-
recipient=recipient,
|
190
|
-
)
|
191
|
-
|
192
|
-
@staticmethod
|
193
|
-
def create_action_request(
|
194
|
-
*,
|
195
|
-
sender: ID.SenderRecipient = None,
|
196
|
-
recipient: ID.SenderRecipient = None,
|
197
|
-
function: str = None,
|
198
|
-
arguments: dict[str, Any] = None,
|
199
|
-
action_request: ActionRequest | None = None,
|
200
|
-
) -> ActionRequest:
|
201
|
-
"""
|
202
|
-
Create an action request message.
|
203
|
-
|
204
|
-
Args:
|
205
|
-
sender: Message sender
|
206
|
-
recipient: Message recipient
|
207
|
-
function: Function to execute
|
208
|
-
arguments: Function arguments
|
209
|
-
action_request: Existing request to use
|
210
|
-
|
211
|
-
Returns:
|
212
|
-
ActionRequest: The created request
|
213
|
-
|
214
|
-
Raises:
|
215
|
-
ValueError: If action_request is not an ActionRequest instance
|
216
|
-
"""
|
217
|
-
if action_request:
|
218
|
-
if not isinstance(action_request, ActionRequest):
|
219
|
-
raise ValueError(
|
220
|
-
"Error: action request must be an instance of ActionRequest."
|
221
|
-
)
|
222
|
-
if sender:
|
223
|
-
action_request.sender = sender
|
224
|
-
if recipient:
|
225
|
-
action_request.recipient = recipient
|
226
|
-
return action_request
|
227
|
-
|
228
|
-
return ActionRequest(
|
229
|
-
function=function,
|
230
|
-
arguments=arguments,
|
231
|
-
sender=sender,
|
232
|
-
recipient=recipient,
|
233
|
-
)
|
234
|
-
|
235
|
-
@staticmethod
|
236
|
-
def create_action_response(
|
237
|
-
*,
|
238
|
-
action_request: ActionRequest,
|
239
|
-
action_response: ActionResponse | Any = None,
|
240
|
-
) -> ActionResponse:
|
241
|
-
"""
|
242
|
-
Create an action response message.
|
243
|
-
|
244
|
-
Args:
|
245
|
-
action_request: The corresponding action request
|
246
|
-
action_response: Response content
|
247
|
-
|
248
|
-
Returns:
|
249
|
-
ActionResponse: The created response
|
250
|
-
|
251
|
-
Raises:
|
252
|
-
ValueError: If action_request is invalid or already responded to
|
253
|
-
"""
|
254
|
-
if not isinstance(action_request, ActionRequest):
|
255
|
-
raise ValueError(
|
256
|
-
"Error: please provide a corresponding action request for an "
|
257
|
-
"action response."
|
258
|
-
)
|
259
|
-
|
260
|
-
if action_response:
|
261
|
-
if isinstance(action_response, ActionResponse):
|
262
|
-
if action_request.is_responded:
|
263
|
-
raise ValueError(
|
264
|
-
"Error: action request already has a response."
|
265
|
-
)
|
266
|
-
action_request.content["action_response_id"] = (
|
267
|
-
action_response.ln_id
|
268
|
-
)
|
269
|
-
return action_response
|
270
|
-
|
271
|
-
return ActionResponse(
|
272
|
-
action_request=action_request,
|
273
|
-
output=action_response,
|
274
|
-
)
|
275
|
-
|
276
|
-
@staticmethod
|
277
|
-
def create_system(
|
278
|
-
*,
|
279
|
-
system: Any = None,
|
280
|
-
sender: Any = None,
|
281
|
-
recipient: Any = None,
|
282
|
-
system_datetime: bool | str = None,
|
283
|
-
) -> System:
|
284
|
-
"""
|
285
|
-
Create a system message.
|
286
|
-
|
287
|
-
Args:
|
288
|
-
system: System message content
|
289
|
-
sender: Message sender
|
290
|
-
recipient: Message recipient
|
291
|
-
system_datetime: Whether to include datetime
|
292
|
-
|
293
|
-
Returns:
|
294
|
-
System: The created system message
|
295
|
-
"""
|
296
|
-
system = system or DEFAULT_SYSTEM
|
297
|
-
|
298
|
-
if isinstance(system, System):
|
299
|
-
system.update(
|
300
|
-
sender=sender,
|
301
|
-
recipient=recipient,
|
302
|
-
system_datetime=system_datetime,
|
303
|
-
)
|
304
|
-
return system
|
305
|
-
|
306
|
-
return System(
|
307
|
-
system=system,
|
308
|
-
sender=sender,
|
309
|
-
recipient=recipient,
|
310
|
-
system_datetime=system_datetime,
|
311
|
-
)
|
312
|
-
|
313
|
-
def add_message(
|
314
|
-
self,
|
315
|
-
*,
|
316
|
-
sender: ID.SenderRecipient = None,
|
317
|
-
recipient: ID.SenderRecipient = None,
|
318
|
-
instruction: Instruction | JsonValue = None,
|
319
|
-
context: JsonValue = None,
|
320
|
-
guidance: JsonValue = None,
|
321
|
-
plain_content: str = None,
|
322
|
-
request_fields: list[str] | dict[str, Any] = None,
|
323
|
-
request_model: type[BaseModel] | BaseModel = None,
|
324
|
-
images: list = None,
|
325
|
-
image_detail: Literal["low", "high", "auto"] = None,
|
326
|
-
assistant_response: AssistantResponse | Any = None,
|
327
|
-
system: System | Any = None,
|
328
|
-
system_datetime: bool | str = None,
|
329
|
-
function: str = None,
|
330
|
-
arguments: dict[str, Any] = None,
|
331
|
-
action_request: ActionRequest | None = None,
|
332
|
-
action_response: ActionResponse | Any = None,
|
333
|
-
metadata: dict = None,
|
334
|
-
) -> RoledMessage:
|
335
|
-
"""
|
336
|
-
Add a message to the manager.
|
337
|
-
|
338
|
-
This method creates and adds a message of the specified type. Only
|
339
|
-
one message type can be added at a time.
|
340
|
-
|
341
|
-
Args:
|
342
|
-
sender: Message sender
|
343
|
-
recipient: Message recipient
|
344
|
-
instruction: Instruction content
|
345
|
-
context: Additional context
|
346
|
-
guidance: Optional guidance
|
347
|
-
plain_content: Plain text content
|
348
|
-
request_fields: Fields to request
|
349
|
-
request_model: Pydantic model for requests
|
350
|
-
images: Optional images
|
351
|
-
image_detail: Image detail level
|
352
|
-
assistant_response: Assistant response content
|
353
|
-
system: System message content
|
354
|
-
system_datetime: Whether to include datetime
|
355
|
-
function: Function for action request
|
356
|
-
arguments: Arguments for action request
|
357
|
-
action_request: Action request
|
358
|
-
action_response: Action response
|
359
|
-
metadata: Additional metadata
|
360
|
-
|
361
|
-
Returns:
|
362
|
-
RoledMessage: The added message
|
363
|
-
|
364
|
-
Raises:
|
365
|
-
ValueError: If multiple message types are specified
|
366
|
-
"""
|
367
|
-
_msg = None
|
368
|
-
if sum(bool(x) for x in (instruction, assistant_response, system)) > 1:
|
369
|
-
raise ValueError("Only one message type can be added at a time.")
|
370
|
-
|
371
|
-
if system:
|
372
|
-
_msg = self.create_system(
|
373
|
-
system=system,
|
374
|
-
sender=sender,
|
375
|
-
recipient=recipient,
|
376
|
-
system_datetime=system_datetime,
|
377
|
-
)
|
378
|
-
self.set_system(_msg)
|
379
|
-
|
380
|
-
elif action_response:
|
381
|
-
if not action_request:
|
382
|
-
raise ValueError(
|
383
|
-
"Error: Action response must have an action request."
|
384
|
-
)
|
385
|
-
_msg = self.create_action_response(
|
386
|
-
action_request=action_request,
|
387
|
-
action_response=action_response,
|
388
|
-
)
|
389
|
-
|
390
|
-
elif action_request or (function and arguments):
|
391
|
-
_msg = self.create_action_request(
|
392
|
-
sender=sender,
|
393
|
-
recipient=recipient,
|
394
|
-
function=function,
|
395
|
-
arguments=arguments,
|
396
|
-
action_request=action_request,
|
397
|
-
)
|
398
|
-
|
399
|
-
elif assistant_response:
|
400
|
-
_msg = self.create_assistant_response(
|
401
|
-
sender=sender,
|
402
|
-
recipient=recipient,
|
403
|
-
assistant_response=assistant_response,
|
404
|
-
)
|
405
|
-
|
406
|
-
else:
|
407
|
-
_msg = self.create_instruction(
|
408
|
-
sender=sender,
|
409
|
-
recipient=recipient,
|
410
|
-
instruction=instruction,
|
411
|
-
context=context,
|
412
|
-
guidance=guidance,
|
413
|
-
plain_content=plain_content,
|
414
|
-
request_fields=request_fields,
|
415
|
-
request_model=request_model,
|
416
|
-
images=images,
|
417
|
-
image_detail=image_detail,
|
418
|
-
)
|
419
|
-
|
420
|
-
if metadata:
|
421
|
-
_msg.metadata.update(["extra"], metadata)
|
422
|
-
|
423
|
-
if _msg in self.messages:
|
424
|
-
self.messages.exclude(_msg.ln_id)
|
425
|
-
self.messages.insert(0, _msg)
|
426
|
-
else:
|
427
|
-
self.messages.include(_msg)
|
428
|
-
|
429
|
-
self.logger.log(_msg.to_log())
|
430
|
-
return _msg
|
431
|
-
|
432
|
-
def clear_messages(self) -> None:
|
433
|
-
"""Clear all messages except the system message."""
|
434
|
-
if self.save_on_clear:
|
435
|
-
self.logger.dump(clear=True)
|
436
|
-
|
437
|
-
self.messages.clear()
|
438
|
-
self.progress.clear()
|
439
|
-
if self.system:
|
440
|
-
self.messages.include(self.system)
|
441
|
-
self.progress.insert(0, self.system)
|
442
|
-
|
443
|
-
@property
|
444
|
-
def last_response(self) -> AssistantResponse | None:
|
445
|
-
"""Get the last assistant response message."""
|
446
|
-
for i in reversed(self.messages.progress):
|
447
|
-
if isinstance(self.messages[i], AssistantResponse):
|
448
|
-
return self.messages[i]
|
449
|
-
|
450
|
-
@property
|
451
|
-
def last_instruction(self) -> Instruction | None:
|
452
|
-
"""Get the last instruction message."""
|
453
|
-
for i in reversed(self.messages.progress):
|
454
|
-
if isinstance(self.messages[i], Instruction):
|
455
|
-
return self.messages[i]
|
456
|
-
|
457
|
-
@property
|
458
|
-
def assistant_responses(self) -> Pile[AssistantResponse]:
|
459
|
-
"""Get all assistant response messages."""
|
460
|
-
return Pile(
|
461
|
-
[
|
462
|
-
self.messages[i]
|
463
|
-
for i in self.messages.progress
|
464
|
-
if isinstance(self.messages[i], AssistantResponse)
|
465
|
-
]
|
466
|
-
)
|
467
|
-
|
468
|
-
@property
|
469
|
-
def action_requests(self) -> Pile[ActionRequest]:
|
470
|
-
"""Get all action request messages."""
|
471
|
-
return Pile(
|
472
|
-
[
|
473
|
-
self.messages[i]
|
474
|
-
for i in self.messages.progress
|
475
|
-
if isinstance(self.messages[i], ActionRequest)
|
476
|
-
]
|
477
|
-
)
|
478
|
-
|
479
|
-
@property
|
480
|
-
def action_responses(self) -> Pile[ActionResponse]:
|
481
|
-
"""Get all action response messages."""
|
482
|
-
return Pile(
|
483
|
-
[
|
484
|
-
self.messages[i]
|
485
|
-
for i in self.messages.progress
|
486
|
-
if isinstance(self.messages[i], ActionResponse)
|
487
|
-
]
|
488
|
-
)
|
489
|
-
|
490
|
-
@property
|
491
|
-
def instructions(self) -> Pile[Instruction]:
|
492
|
-
"""Get all instruction messages."""
|
493
|
-
return Pile(
|
494
|
-
[
|
495
|
-
self.messages[i]
|
496
|
-
for i in self.messages.progress
|
497
|
-
if isinstance(self.messages[i], Instruction)
|
498
|
-
]
|
499
|
-
)
|
500
|
-
|
501
|
-
def remove_last_instruction_tool_schemas(self) -> None:
|
502
|
-
id_ = self.last_instruction.ln_id
|
503
|
-
self.messages[id_].tool_schemas = None
|
504
|
-
|
505
|
-
def concat_recent_action_responses_to_instruction(
|
506
|
-
self, instruction: Instruction
|
507
|
-
) -> None:
|
508
|
-
for i in reversed(self.messages.progress):
|
509
|
-
if isinstance(self.messages[i], ActionResponse):
|
510
|
-
instruction.context.append(self.messages[i].content.to_dict())
|
511
|
-
else:
|
512
|
-
break
|
513
|
-
|
514
|
-
def to_chat_msgs(self, progress=None) -> list[dict]:
|
515
|
-
"""
|
516
|
-
Convert messages to chat format.
|
517
|
-
|
518
|
-
Args:
|
519
|
-
progress: Optional specific progression to convert
|
520
|
-
|
521
|
-
Returns:
|
522
|
-
list[dict]: Messages in chat format
|
523
|
-
|
524
|
-
Raises:
|
525
|
-
ValueError: If requested messages are not in the message pile
|
526
|
-
"""
|
527
|
-
if progress == []:
|
528
|
-
return []
|
529
|
-
try:
|
530
|
-
return [
|
531
|
-
self.messages[i].chat_msg for i in (progress or self.progress)
|
532
|
-
]
|
533
|
-
except Exception as e:
|
534
|
-
raise ValueError(
|
535
|
-
"Invalid progress, not all requested messages are in the message pile"
|
536
|
-
) from e
|
537
|
-
|
538
|
-
def __bool__(self):
|
539
|
-
return not self.messages.is_empty()
|
540
|
-
|
541
|
-
def has_logs(self):
|
542
|
-
"""Check if there are any logs."""
|
543
|
-
return not self.logger.logs.is_empty()
|
@@ -1,116 +0,0 @@
|
|
1
|
-
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
-
#
|
3
|
-
# SPDX-License-Identifier: Apache-2.0
|
4
|
-
|
5
|
-
from lionagi.core.typing import ID, Any, JsonValue, override
|
6
|
-
from lionagi.libs.parse import to_str
|
7
|
-
|
8
|
-
from .message import MessageFlag, MessageRole, RoledMessage
|
9
|
-
from .utils import format_system_content, validate_sender_recipient
|
10
|
-
|
11
|
-
|
12
|
-
class System(RoledMessage):
|
13
|
-
"""
|
14
|
-
Represents a system message in a language model conversation.
|
15
|
-
|
16
|
-
This class extends RoledMessage to provide functionality specific to
|
17
|
-
system messages, which are typically used to set the context or provide
|
18
|
-
instructions to the language model. It supports including system datetime
|
19
|
-
information and maintains a clean interface for accessing the content.
|
20
|
-
|
21
|
-
Example:
|
22
|
-
>>> system_msg = System(
|
23
|
-
... system="You are a helpful assistant.",
|
24
|
-
... system_datetime=True
|
25
|
-
... )
|
26
|
-
>>> print(system_msg.system_info)
|
27
|
-
'System datetime: 2024-01-20T14:30\n\nYou are a helpful assistant.'
|
28
|
-
"""
|
29
|
-
|
30
|
-
@override
|
31
|
-
def __init__(
|
32
|
-
self,
|
33
|
-
system: JsonValue = None,
|
34
|
-
sender: ID.SenderRecipient = None,
|
35
|
-
recipient: ID.SenderRecipient = None,
|
36
|
-
system_datetime: bool | JsonValue = None,
|
37
|
-
protected_init_params: dict | None = None,
|
38
|
-
):
|
39
|
-
"""
|
40
|
-
Initialize a System message instance.
|
41
|
-
|
42
|
-
Args:
|
43
|
-
system: The content of the system message
|
44
|
-
sender: The sender of the system message
|
45
|
-
recipient: The recipient of the message
|
46
|
-
system_datetime: Flag to include system datetime
|
47
|
-
protected_init_params: Protected initialization parameters
|
48
|
-
|
49
|
-
Raises:
|
50
|
-
ValueError: If invalid combination of parameters is provided
|
51
|
-
"""
|
52
|
-
if all(
|
53
|
-
x == MessageFlag.MESSAGE_LOAD
|
54
|
-
for x in [system, sender, recipient, system_datetime]
|
55
|
-
):
|
56
|
-
super().__init__(**protected_init_params)
|
57
|
-
return
|
58
|
-
|
59
|
-
if all(
|
60
|
-
x == MessageFlag.MESSAGE_CLONE
|
61
|
-
for x in [system, sender, recipient, system_datetime]
|
62
|
-
):
|
63
|
-
super().__init__(role=MessageRole.SYSTEM)
|
64
|
-
return
|
65
|
-
|
66
|
-
super().__init__(
|
67
|
-
role=MessageRole.SYSTEM,
|
68
|
-
sender=sender or "system",
|
69
|
-
content=format_system_content(
|
70
|
-
system_datetime=system_datetime, system_message=system
|
71
|
-
),
|
72
|
-
recipient=recipient or "N/A",
|
73
|
-
)
|
74
|
-
|
75
|
-
def update(
|
76
|
-
self,
|
77
|
-
system: JsonValue = None,
|
78
|
-
sender: ID.SenderRecipient = None,
|
79
|
-
recipient: ID.Ref = None,
|
80
|
-
system_datetime: bool | str = None,
|
81
|
-
) -> None:
|
82
|
-
"""
|
83
|
-
Update the system message components.
|
84
|
-
|
85
|
-
Args:
|
86
|
-
system: New system message content
|
87
|
-
sender: New sender
|
88
|
-
recipient: New recipient
|
89
|
-
system_datetime: New datetime flag or string
|
90
|
-
"""
|
91
|
-
if system:
|
92
|
-
self.content = format_system_content(
|
93
|
-
system_datetime=system_datetime, system_message=system
|
94
|
-
)
|
95
|
-
if sender:
|
96
|
-
self.sender = validate_sender_recipient(sender)
|
97
|
-
if recipient:
|
98
|
-
self.recipient = validate_sender_recipient(recipient)
|
99
|
-
|
100
|
-
@property
|
101
|
-
def system_info(self) -> str:
|
102
|
-
"""
|
103
|
-
Get the complete system information.
|
104
|
-
|
105
|
-
Returns:
|
106
|
-
str: The formatted system information including datetime if present
|
107
|
-
"""
|
108
|
-
if "system_datetime" in self.content:
|
109
|
-
msg = f"System datetime: {self.content['system_datetime']}\n\n"
|
110
|
-
return msg + f"{self.content['system']}"
|
111
|
-
|
112
|
-
return to_str(self.content["system"])
|
113
|
-
|
114
|
-
@override
|
115
|
-
def _format_content(self) -> dict[str, Any]:
|
116
|
-
return {"role": self.role.value, "content": self.system_info}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
-
#
|
3
|
-
# SPDX-License-Identifier: Apache-2.0
|
4
|
-
|
5
|
-
from .action_request import ActionRequest
|
6
|
-
from .action_response import ActionResponse
|
7
|
-
from .assistant_response import AssistantResponse
|
8
|
-
from .base_mail import BaseMail
|
9
|
-
from .instruction import Instruction
|
10
|
-
from .message import MESSAGE_FIELDS, MessageRole, RoledMessage
|
11
|
-
from .message_manager import MessageManager
|
12
|
-
from .system import System
|
13
|
-
from .utils import validate_sender_recipient
|
14
|
-
|
15
|
-
__all__ = [
|
16
|
-
"ActionRequest",
|
17
|
-
"ActionResponse",
|
18
|
-
"AssistantResponse",
|
19
|
-
"BaseMail",
|
20
|
-
"Instruction",
|
21
|
-
"MESSAGE_FIELDS",
|
22
|
-
"MessageRole",
|
23
|
-
"RoledMessage",
|
24
|
-
"MessageManager",
|
25
|
-
"System",
|
26
|
-
"validate_sender_recipient",
|
27
|
-
]
|