lionagi 0.4.0__py3-none-any.whl → 0.5.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +14 -46
- lionagi/core/__init__.py +3 -1
- lionagi/core/_class_registry.py +69 -0
- lionagi/core/action/__init__.py +3 -13
- lionagi/core/action/action_manager.py +287 -0
- lionagi/core/action/base.py +109 -0
- lionagi/core/action/function_calling.py +127 -92
- lionagi/core/action/tool.py +172 -70
- lionagi/core/action/types.py +16 -0
- lionagi/core/communication/__init__.py +3 -0
- lionagi/core/communication/action_request.py +163 -0
- lionagi/core/communication/action_response.py +149 -0
- lionagi/core/communication/assistant_response.py +161 -0
- lionagi/core/communication/base_mail.py +49 -0
- lionagi/core/communication/instruction.py +376 -0
- lionagi/core/communication/message.py +286 -0
- lionagi/core/communication/message_manager.py +530 -0
- lionagi/core/communication/system.py +116 -0
- lionagi/core/communication/templates/README.md +28 -0
- lionagi/core/communication/templates/action_request.jinja2 +5 -0
- lionagi/core/communication/templates/action_response.jinja2 +9 -0
- lionagi/core/communication/templates/assistant_response.jinja2 +2 -0
- lionagi/core/communication/templates/instruction_message.jinja2 +61 -0
- lionagi/core/communication/templates/system_message.jinja2 +11 -0
- lionagi/core/communication/templates/tool_schemas.jinja2 +7 -0
- lionagi/core/communication/types.py +27 -0
- lionagi/core/communication/utils.py +254 -0
- lionagi/core/forms/__init__.py +3 -0
- lionagi/core/forms/base.py +232 -0
- lionagi/core/forms/form.py +791 -0
- lionagi/core/forms/report.py +321 -0
- lionagi/core/forms/types.py +13 -0
- lionagi/core/forms/utils.py +26 -0
- lionagi/core/generic/__init__.py +3 -6
- lionagi/core/generic/component.py +422 -0
- lionagi/core/generic/edge.py +143 -101
- lionagi/core/generic/element.py +195 -0
- lionagi/core/generic/graph.py +297 -180
- lionagi/core/generic/log.py +151 -0
- lionagi/core/generic/log_manager.py +320 -0
- lionagi/core/generic/node.py +7 -229
- lionagi/core/generic/pile.py +1017 -0
- lionagi/core/generic/progression.py +388 -0
- lionagi/core/generic/types.py +23 -0
- lionagi/core/generic/utils.py +50 -0
- lionagi/core/models/__init__.py +5 -0
- lionagi/core/models/base.py +85 -0
- lionagi/core/models/field_model.py +122 -0
- lionagi/core/models/new_model_params.py +195 -0
- lionagi/core/models/note.py +351 -0
- lionagi/core/models/operable_model.py +392 -0
- lionagi/core/models/schema_model.py +50 -0
- lionagi/core/models/types.py +10 -0
- lionagi/core/session/__init__.py +3 -0
- lionagi/core/session/branch.py +115 -415
- lionagi/core/session/branch_mixins.py +545 -0
- lionagi/core/session/session.py +122 -257
- lionagi/core/session/types.py +8 -0
- lionagi/core/typing/__init__.py +9 -0
- lionagi/core/typing/concepts.py +132 -0
- lionagi/core/typing/config.py +15 -0
- lionagi/core/typing/id.py +221 -0
- lionagi/core/typing/pydantic_.py +33 -0
- lionagi/core/typing/typing_.py +54 -0
- lionagi/integrations/__init__.py +0 -1
- lionagi/integrations/anthropic_/AnthropicModel.py +268 -0
- lionagi/integrations/anthropic_/AnthropicService.py +117 -0
- lionagi/integrations/anthropic_/__init__.py +3 -0
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +7 -0
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +14 -0
- lionagi/integrations/anthropic_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +277 -0
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +40 -0
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +119 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/__init__.py +3 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +14 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +74 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +32 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +101 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +25 -0
- lionagi/integrations/anthropic_/version.py +5 -0
- lionagi/integrations/groq_/GroqModel.py +318 -0
- lionagi/integrations/groq_/GroqService.py +151 -0
- lionagi/integrations/groq_/__init__.py +3 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +187 -0
- lionagi/integrations/groq_/api_endpoints/groq_request.py +288 -0
- lionagi/integrations/groq_/api_endpoints/match_response.py +106 -0
- lionagi/integrations/groq_/api_endpoints/response_utils.py +105 -0
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +21 -0
- lionagi/integrations/groq_/groq_price_data.yaml +58 -0
- lionagi/integrations/groq_/groq_rate_limits.yaml +105 -0
- lionagi/integrations/groq_/version.py +5 -0
- lionagi/integrations/litellm_/__init__.py +3 -0
- lionagi/integrations/litellm_/imodel.py +73 -0
- lionagi/integrations/ollama_/OllamaModel.py +244 -0
- lionagi/integrations/ollama_/OllamaService.py +142 -0
- lionagi/integrations/ollama_/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/api_request.py +179 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +31 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +46 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +67 -0
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +49 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +72 -0
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +59 -0
- lionagi/integrations/ollama_/api_endpoints/data_models.py +15 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +33 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +29 -0
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +62 -0
- lionagi/integrations/ollama_/api_endpoints/match_response.py +190 -0
- lionagi/integrations/ollama_/api_endpoints/model/__init__.py +3 -0
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +13 -0
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +28 -0
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +11 -0
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +60 -0
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +34 -0
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +35 -0
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +36 -0
- lionagi/integrations/ollama_/api_endpoints/option_models.py +68 -0
- lionagi/integrations/openai_/OpenAIModel.py +418 -0
- lionagi/integrations/openai_/OpenAIService.py +426 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/api_request.py +277 -0
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +9 -0
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +34 -0
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +136 -0
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +41 -0
- lionagi/integrations/openai_/api_endpoints/audio/types.py +41 -0
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +17 -0
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +146 -0
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +7 -0
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +26 -0
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +37 -0
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +65 -0
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +7 -0
- lionagi/integrations/openai_/api_endpoints/batch/types.py +4 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +1 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +39 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +121 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +221 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +71 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +14 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +17 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +54 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +18 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +62 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +16 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +47 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +25 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +99 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +8 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +24 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +46 -0
- lionagi/integrations/openai_/api_endpoints/data_models.py +23 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +79 -0
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +67 -0
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +11 -0
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +20 -0
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +27 -0
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +9 -0
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +38 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +37 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +9 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +133 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +58 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +31 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +140 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +51 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +42 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +31 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +9 -0
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +30 -0
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +9 -0
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +69 -0
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +56 -0
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +30 -0
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +197 -0
- lionagi/integrations/openai_/api_endpoints/match_response.py +336 -0
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +7 -0
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +17 -0
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +31 -0
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +9 -0
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +3 -0
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +20 -0
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +139 -0
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +19 -0
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +11 -0
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +7 -0
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +18 -0
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +17 -0
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +52 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +92 -0
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +15 -0
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +12 -0
- lionagi/integrations/openai_/openai_price_data.yaml +26 -0
- lionagi/integrations/openai_/version.py +1 -0
- lionagi/integrations/pandas_/__init__.py +24 -0
- lionagi/integrations/pandas_/extend_df.py +61 -0
- lionagi/integrations/pandas_/read.py +103 -0
- lionagi/integrations/pandas_/remove_rows.py +61 -0
- lionagi/integrations/pandas_/replace_keywords.py +65 -0
- lionagi/integrations/pandas_/save.py +131 -0
- lionagi/integrations/pandas_/search_keywords.py +69 -0
- lionagi/integrations/pandas_/to_df.py +196 -0
- lionagi/integrations/pandas_/update_cells.py +54 -0
- lionagi/integrations/perplexity_/PerplexityModel.py +269 -0
- lionagi/integrations/perplexity_/PerplexityService.py +113 -0
- lionagi/integrations/perplexity_/__init__.py +3 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +171 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +121 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +146 -0
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +63 -0
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +26 -0
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +3 -0
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +10 -0
- lionagi/integrations/perplexity_/version.py +1 -0
- lionagi/integrations/pydantic_/__init__.py +8 -0
- lionagi/integrations/pydantic_/break_down_annotation.py +81 -0
- lionagi/integrations/pydantic_/new_model.py +208 -0
- lionagi/integrations/services.py +17 -0
- lionagi/libs/__init__.py +0 -55
- lionagi/libs/compress/models.py +62 -0
- lionagi/libs/compress/utils.py +81 -0
- lionagi/libs/constants.py +98 -0
- lionagi/libs/file/chunk.py +265 -0
- lionagi/libs/file/file_ops.py +114 -0
- lionagi/libs/file/params.py +212 -0
- lionagi/libs/file/path.py +301 -0
- lionagi/libs/file/process.py +139 -0
- lionagi/libs/file/save.py +90 -0
- lionagi/libs/file/types.py +22 -0
- lionagi/libs/func/async_calls/__init__.py +21 -0
- lionagi/libs/func/async_calls/alcall.py +157 -0
- lionagi/libs/func/async_calls/bcall.py +82 -0
- lionagi/libs/func/async_calls/mcall.py +134 -0
- lionagi/libs/func/async_calls/pcall.py +149 -0
- lionagi/libs/func/async_calls/rcall.py +185 -0
- lionagi/libs/func/async_calls/tcall.py +114 -0
- lionagi/libs/func/async_calls/ucall.py +85 -0
- lionagi/libs/func/decorators.py +277 -0
- lionagi/libs/func/lcall.py +57 -0
- lionagi/libs/func/params.py +64 -0
- lionagi/libs/func/throttle.py +119 -0
- lionagi/libs/func/types.py +39 -0
- lionagi/libs/func/utils.py +96 -0
- lionagi/libs/package/imports.py +162 -0
- lionagi/libs/package/management.py +58 -0
- lionagi/libs/package/params.py +26 -0
- lionagi/libs/package/system.py +18 -0
- lionagi/libs/package/types.py +26 -0
- lionagi/libs/parse/__init__.py +1 -0
- lionagi/libs/parse/flatten/__init__.py +9 -0
- lionagi/libs/parse/flatten/flatten.py +168 -0
- lionagi/libs/parse/flatten/params.py +52 -0
- lionagi/libs/parse/flatten/unflatten.py +79 -0
- lionagi/libs/parse/json/__init__.py +27 -0
- lionagi/libs/parse/json/as_readable.py +104 -0
- lionagi/libs/parse/json/extract.py +102 -0
- lionagi/libs/parse/json/parse.py +179 -0
- lionagi/libs/parse/json/schema.py +227 -0
- lionagi/libs/parse/json/to_json.py +71 -0
- lionagi/libs/parse/nested/__init__.py +33 -0
- lionagi/libs/parse/nested/nfilter.py +55 -0
- lionagi/libs/parse/nested/nget.py +40 -0
- lionagi/libs/parse/nested/ninsert.py +103 -0
- lionagi/libs/parse/nested/nmerge.py +155 -0
- lionagi/libs/parse/nested/npop.py +66 -0
- lionagi/libs/parse/nested/nset.py +89 -0
- lionagi/libs/parse/nested/to_flat_list.py +64 -0
- lionagi/libs/parse/nested/utils.py +185 -0
- lionagi/libs/parse/string_parse/__init__.py +11 -0
- lionagi/libs/parse/string_parse/code_block.py +73 -0
- lionagi/libs/parse/string_parse/docstring.py +179 -0
- lionagi/libs/parse/string_parse/function_.py +92 -0
- lionagi/libs/parse/type_convert/__init__.py +19 -0
- lionagi/libs/parse/type_convert/params.py +145 -0
- lionagi/libs/parse/type_convert/to_dict.py +333 -0
- lionagi/libs/parse/type_convert/to_list.py +186 -0
- lionagi/libs/parse/type_convert/to_num.py +358 -0
- lionagi/libs/parse/type_convert/to_str.py +195 -0
- lionagi/libs/parse/types.py +9 -0
- lionagi/libs/parse/validate/__init__.py +14 -0
- lionagi/libs/parse/validate/boolean.py +96 -0
- lionagi/libs/parse/validate/keys.py +150 -0
- lionagi/libs/parse/validate/mapping.py +109 -0
- lionagi/libs/parse/validate/params.py +62 -0
- lionagi/libs/parse/xml/__init__.py +10 -0
- lionagi/libs/parse/xml/convert.py +56 -0
- lionagi/libs/parse/xml/parser.py +93 -0
- lionagi/libs/string_similarity/__init__.py +32 -0
- lionagi/libs/string_similarity/algorithms.py +219 -0
- lionagi/libs/string_similarity/matcher.py +102 -0
- lionagi/libs/string_similarity/utils.py +15 -0
- lionagi/libs/utils.py +255 -0
- lionagi/operations/__init__.py +3 -6
- lionagi/operations/brainstorm/__init__.py +3 -0
- lionagi/operations/brainstorm/brainstorm.py +204 -0
- lionagi/operations/brainstorm/prompt.py +1 -0
- lionagi/operations/plan/__init__.py +3 -0
- lionagi/operations/plan/plan.py +172 -0
- lionagi/operations/plan/prompt.py +21 -0
- lionagi/operations/select/__init__.py +3 -0
- lionagi/operations/select/prompt.py +1 -0
- lionagi/operations/select/select.py +100 -0
- lionagi/operations/select/utils.py +107 -0
- lionagi/operations/utils.py +35 -0
- lionagi/protocols/adapters/adapter.py +79 -0
- lionagi/protocols/adapters/json_adapter.py +43 -0
- lionagi/protocols/adapters/pandas_adapter.py +96 -0
- lionagi/protocols/configs/__init__.py +15 -0
- lionagi/protocols/configs/branch_config.py +86 -0
- lionagi/protocols/configs/id_config.py +15 -0
- lionagi/protocols/configs/imodel_config.py +73 -0
- lionagi/protocols/configs/log_config.py +93 -0
- lionagi/protocols/configs/retry_config.py +29 -0
- lionagi/protocols/operatives/__init__.py +15 -0
- lionagi/protocols/operatives/action.py +181 -0
- lionagi/protocols/operatives/instruct.py +196 -0
- lionagi/protocols/operatives/operative.py +182 -0
- lionagi/protocols/operatives/prompts.py +232 -0
- lionagi/protocols/operatives/reason.py +56 -0
- lionagi/protocols/operatives/step.py +217 -0
- lionagi/protocols/registries/_component_registry.py +19 -0
- lionagi/protocols/registries/_pile_registry.py +26 -0
- lionagi/service/__init__.py +13 -0
- lionagi/service/complete_request_info.py +11 -0
- lionagi/service/imodel.py +125 -0
- lionagi/service/rate_limiter.py +108 -0
- lionagi/service/service.py +41 -0
- lionagi/service/service_match_util.py +131 -0
- lionagi/service/service_util.py +72 -0
- lionagi/service/token_calculator.py +51 -0
- lionagi/settings.py +136 -0
- lionagi/strategies/base.py +53 -0
- lionagi/strategies/concurrent.py +71 -0
- lionagi/strategies/concurrent_chunk.py +43 -0
- lionagi/strategies/concurrent_sequential_chunk.py +104 -0
- lionagi/strategies/params.py +128 -0
- lionagi/strategies/sequential.py +23 -0
- lionagi/strategies/sequential_chunk.py +89 -0
- lionagi/strategies/sequential_concurrent_chunk.py +100 -0
- lionagi/strategies/types.py +21 -0
- lionagi/strategies/utils.py +49 -0
- lionagi/version.py +1 -1
- lionagi-0.5.1.dist-info/METADATA +545 -0
- lionagi-0.5.1.dist-info/RECORD +373 -0
- {lionagi-0.4.0.dist-info → lionagi-0.5.1.dist-info}/WHEEL +1 -1
- lionagi/core/_setting/_setting.py +0 -59
- lionagi/core/action/README.md +0 -20
- lionagi/core/action/manual.py +0 -1
- lionagi/core/action/node.py +0 -94
- lionagi/core/action/tool_manager.py +0 -342
- lionagi/core/agent/README.md +0 -1
- lionagi/core/agent/base_agent.py +0 -82
- lionagi/core/agent/eval/README.md +0 -1
- lionagi/core/agent/eval/evaluator.py +0 -1
- lionagi/core/agent/eval/vote.py +0 -40
- lionagi/core/agent/learn/learner.py +0 -59
- lionagi/core/agent/plan/unit_template.py +0 -1
- lionagi/core/collections/README.md +0 -23
- lionagi/core/collections/__init__.py +0 -16
- lionagi/core/collections/_logger.py +0 -312
- lionagi/core/collections/abc/README.md +0 -63
- lionagi/core/collections/abc/__init__.py +0 -53
- lionagi/core/collections/abc/component.py +0 -620
- lionagi/core/collections/abc/concepts.py +0 -277
- lionagi/core/collections/abc/exceptions.py +0 -136
- lionagi/core/collections/abc/util.py +0 -45
- lionagi/core/collections/exchange.py +0 -146
- lionagi/core/collections/flow.py +0 -416
- lionagi/core/collections/model.py +0 -465
- lionagi/core/collections/pile.py +0 -1232
- lionagi/core/collections/progression.py +0 -221
- lionagi/core/collections/util.py +0 -73
- lionagi/core/director/README.md +0 -1
- lionagi/core/director/direct.py +0 -298
- lionagi/core/director/director.py +0 -2
- lionagi/core/director/operations/select.py +0 -3
- lionagi/core/director/operations/utils.py +0 -6
- lionagi/core/engine/branch_engine.py +0 -361
- lionagi/core/engine/instruction_map_engine.py +0 -213
- lionagi/core/engine/sandbox_.py +0 -16
- lionagi/core/engine/script_engine.py +0 -89
- lionagi/core/executor/base_executor.py +0 -97
- lionagi/core/executor/graph_executor.py +0 -335
- lionagi/core/executor/neo4j_executor.py +0 -394
- lionagi/core/generic/README.md +0 -0
- lionagi/core/generic/edge_condition.py +0 -17
- lionagi/core/generic/hyperedge.py +0 -1
- lionagi/core/generic/tree.py +0 -49
- lionagi/core/generic/tree_node.py +0 -85
- lionagi/core/mail/__init__.py +0 -11
- lionagi/core/mail/mail.py +0 -26
- lionagi/core/mail/mail_manager.py +0 -185
- lionagi/core/mail/package.py +0 -49
- lionagi/core/mail/start_mail.py +0 -36
- lionagi/core/message/__init__.py +0 -18
- lionagi/core/message/action_request.py +0 -114
- lionagi/core/message/action_response.py +0 -121
- lionagi/core/message/assistant_response.py +0 -80
- lionagi/core/message/instruction.py +0 -194
- lionagi/core/message/message.py +0 -86
- lionagi/core/message/system.py +0 -71
- lionagi/core/message/util.py +0 -274
- lionagi/core/report/__init__.py +0 -4
- lionagi/core/report/base.py +0 -201
- lionagi/core/report/form.py +0 -212
- lionagi/core/report/report.py +0 -150
- lionagi/core/report/util.py +0 -15
- lionagi/core/rule/_default.py +0 -17
- lionagi/core/rule/action.py +0 -87
- lionagi/core/rule/base.py +0 -234
- lionagi/core/rule/boolean.py +0 -56
- lionagi/core/rule/choice.py +0 -48
- lionagi/core/rule/mapping.py +0 -82
- lionagi/core/rule/number.py +0 -73
- lionagi/core/rule/rulebook.py +0 -45
- lionagi/core/rule/string.py +0 -43
- lionagi/core/rule/util.py +0 -0
- lionagi/core/session/directive_mixin.py +0 -307
- lionagi/core/structure/__init__.py +0 -1
- lionagi/core/structure/chain.py +0 -1
- lionagi/core/structure/forest.py +0 -1
- lionagi/core/structure/graph.py +0 -1
- lionagi/core/structure/tree.py +0 -1
- lionagi/core/unit/__init__.py +0 -4
- lionagi/core/unit/parallel_unit.py +0 -234
- lionagi/core/unit/template/action.py +0 -65
- lionagi/core/unit/template/base.py +0 -35
- lionagi/core/unit/template/plan.py +0 -69
- lionagi/core/unit/template/predict.py +0 -95
- lionagi/core/unit/template/score.py +0 -108
- lionagi/core/unit/template/select.py +0 -91
- lionagi/core/unit/unit.py +0 -452
- lionagi/core/unit/unit_form.py +0 -290
- lionagi/core/unit/unit_mixin.py +0 -1166
- lionagi/core/unit/util.py +0 -103
- lionagi/core/validator/validator.py +0 -376
- lionagi/core/work/work.py +0 -59
- lionagi/core/work/work_edge.py +0 -102
- lionagi/core/work/work_function.py +0 -114
- lionagi/core/work/work_function_node.py +0 -50
- lionagi/core/work/work_queue.py +0 -90
- lionagi/core/work/work_task.py +0 -151
- lionagi/core/work/worker.py +0 -410
- lionagi/core/work/worker_engine.py +0 -208
- lionagi/core/work/worklog.py +0 -108
- lionagi/experimental/compressor/base.py +0 -47
- lionagi/experimental/compressor/llm_compressor.py +0 -265
- lionagi/experimental/compressor/llm_summarizer.py +0 -61
- lionagi/experimental/compressor/util.py +0 -70
- lionagi/experimental/directive/README.md +0 -1
- lionagi/experimental/directive/__init__.py +0 -19
- lionagi/experimental/directive/parser/base_parser.py +0 -294
- lionagi/experimental/directive/parser/base_syntax.txt +0 -200
- lionagi/experimental/directive/template/base_template.py +0 -71
- lionagi/experimental/directive/template/schema.py +0 -36
- lionagi/experimental/directive/tokenizer.py +0 -59
- lionagi/experimental/evaluator/README.md +0 -1
- lionagi/experimental/evaluator/ast_evaluator.py +0 -119
- lionagi/experimental/evaluator/base_evaluator.py +0 -213
- lionagi/experimental/knowledge/__init__.py +0 -0
- lionagi/experimental/knowledge/base.py +0 -10
- lionagi/experimental/knowledge/graph.py +0 -0
- lionagi/experimental/memory/__init__.py +0 -0
- lionagi/experimental/strategies/__init__.py +0 -0
- lionagi/experimental/strategies/base.py +0 -1
- lionagi/integrations/bridge/__init__.py +0 -4
- lionagi/integrations/bridge/autogen_/__init__.py +0 -0
- lionagi/integrations/bridge/autogen_/autogen_.py +0 -127
- lionagi/integrations/bridge/langchain_/__init__.py +0 -0
- lionagi/integrations/bridge/langchain_/documents.py +0 -138
- lionagi/integrations/bridge/langchain_/langchain_bridge.py +0 -68
- lionagi/integrations/bridge/llamaindex_/__init__.py +0 -0
- lionagi/integrations/bridge/llamaindex_/index.py +0 -36
- lionagi/integrations/bridge/llamaindex_/llama_index_bridge.py +0 -108
- lionagi/integrations/bridge/llamaindex_/llama_pack.py +0 -256
- lionagi/integrations/bridge/llamaindex_/node_parser.py +0 -92
- lionagi/integrations/bridge/llamaindex_/reader.py +0 -201
- lionagi/integrations/bridge/llamaindex_/textnode.py +0 -59
- lionagi/integrations/bridge/pydantic_/__init__.py +0 -0
- lionagi/integrations/bridge/pydantic_/pydantic_bridge.py +0 -7
- lionagi/integrations/bridge/transformers_/__init__.py +0 -0
- lionagi/integrations/bridge/transformers_/install_.py +0 -39
- lionagi/integrations/chunker/__init__.py +0 -0
- lionagi/integrations/chunker/chunk.py +0 -314
- lionagi/integrations/config/__init__.py +0 -4
- lionagi/integrations/config/mlx_configs.py +0 -1
- lionagi/integrations/config/oai_configs.py +0 -154
- lionagi/integrations/config/ollama_configs.py +0 -1
- lionagi/integrations/config/openrouter_configs.py +0 -74
- lionagi/integrations/langchain_/__init__.py +0 -0
- lionagi/integrations/llamaindex_/__init__.py +0 -0
- lionagi/integrations/loader/__init__.py +0 -0
- lionagi/integrations/loader/load.py +0 -257
- lionagi/integrations/loader/load_util.py +0 -214
- lionagi/integrations/provider/__init__.py +0 -11
- lionagi/integrations/provider/_mapping.py +0 -47
- lionagi/integrations/provider/litellm.py +0 -53
- lionagi/integrations/provider/mistralai.py +0 -1
- lionagi/integrations/provider/mlx_service.py +0 -55
- lionagi/integrations/provider/oai.py +0 -196
- lionagi/integrations/provider/ollama.py +0 -55
- lionagi/integrations/provider/openrouter.py +0 -170
- lionagi/integrations/provider/services.py +0 -138
- lionagi/integrations/provider/transformers.py +0 -108
- lionagi/integrations/storage/__init__.py +0 -3
- lionagi/integrations/storage/neo4j.py +0 -681
- lionagi/integrations/storage/storage_util.py +0 -302
- lionagi/integrations/storage/structure_excel.py +0 -291
- lionagi/integrations/storage/to_csv.py +0 -70
- lionagi/integrations/storage/to_excel.py +0 -91
- lionagi/libs/ln_api.py +0 -944
- lionagi/libs/ln_async.py +0 -208
- lionagi/libs/ln_context.py +0 -37
- lionagi/libs/ln_convert.py +0 -671
- lionagi/libs/ln_dataframe.py +0 -187
- lionagi/libs/ln_func_call.py +0 -1328
- lionagi/libs/ln_image.py +0 -114
- lionagi/libs/ln_knowledge_graph.py +0 -422
- lionagi/libs/ln_nested.py +0 -822
- lionagi/libs/ln_parse.py +0 -750
- lionagi/libs/ln_queue.py +0 -107
- lionagi/libs/ln_tokenize.py +0 -179
- lionagi/libs/ln_validate.py +0 -299
- lionagi/libs/special_tokens.py +0 -172
- lionagi/libs/sys_util.py +0 -710
- lionagi/lions/__init__.py +0 -0
- lionagi/lions/coder/__init__.py +0 -0
- lionagi/lions/coder/add_feature.py +0 -20
- lionagi/lions/coder/base_prompts.py +0 -22
- lionagi/lions/coder/code_form.py +0 -15
- lionagi/lions/coder/coder.py +0 -184
- lionagi/lions/coder/util.py +0 -101
- lionagi/lions/director/__init__.py +0 -0
- lionagi/lions/judge/__init__.py +0 -0
- lionagi/lions/judge/config.py +0 -8
- lionagi/lions/judge/data/__init__.py +0 -0
- lionagi/lions/judge/data/sample_codes.py +0 -526
- lionagi/lions/judge/data/sample_rurbic.py +0 -48
- lionagi/lions/judge/forms/__init__.py +0 -0
- lionagi/lions/judge/forms/code_analysis_form.py +0 -126
- lionagi/lions/judge/rubric.py +0 -34
- lionagi/lions/judge/services/__init__.py +0 -0
- lionagi/lions/judge/services/judge_code.py +0 -49
- lionagi/lions/researcher/__init__.py +0 -0
- lionagi/lions/researcher/data_source/__init__.py +0 -0
- lionagi/lions/researcher/data_source/finhub_.py +0 -192
- lionagi/lions/researcher/data_source/google_.py +0 -207
- lionagi/lions/researcher/data_source/wiki_.py +0 -98
- lionagi/lions/researcher/data_source/yfinance_.py +0 -21
- lionagi/operations/brainstorm.py +0 -87
- lionagi/operations/config.py +0 -6
- lionagi/operations/rank.py +0 -102
- lionagi/operations/score.py +0 -144
- lionagi/operations/select.py +0 -141
- lionagi-0.4.0.dist-info/METADATA +0 -241
- lionagi-0.4.0.dist-info/RECORD +0 -249
- /lionagi/{core/_setting → integrations/anthropic_/api_endpoints/messages/response}/__init__.py +0 -0
- /lionagi/{core/agent → integrations/groq_/api_endpoints}/__init__.py +0 -0
- /lionagi/{core/agent/eval → integrations/ollama_/api_endpoints/completion}/__init__.py +0 -0
- /lionagi/{core/agent/learn → integrations/ollama_/api_endpoints/embedding}/__init__.py +0 -0
- /lionagi/{core/agent/plan → integrations/openai_}/__init__.py +0 -0
- /lionagi/{core/director → integrations/openai_/api_endpoints/chat_completions/response}/__init__.py +0 -0
- /lionagi/{core/director/operations → integrations/openai_/image_token_calculator}/__init__.py +0 -0
- /lionagi/{core/engine → integrations/perplexity_/api_endpoints}/__init__.py +0 -0
- /lionagi/{core/executor → integrations/perplexity_/api_endpoints/chat_completions}/__init__.py +0 -0
- /lionagi/{core/generic/registry/component_registry → integrations/perplexity_/api_endpoints/chat_completions/request}/__init__.py +0 -0
- /lionagi/{core/rule → integrations/perplexity_/api_endpoints/chat_completions/response}/__init__.py +0 -0
- /lionagi/{core/unit/template → libs/compress}/__init__.py +0 -0
- /lionagi/{core/validator → libs/file}/__init__.py +0 -0
- /lionagi/{core/work → libs/func}/__init__.py +0 -0
- /lionagi/{experimental → libs/package}/__init__.py +0 -0
- /lionagi/{core/agent/plan/plan.py → libs/parse/params.py} +0 -0
- /lionagi/{experimental/compressor → protocols}/__init__.py +0 -0
- /lionagi/{experimental/directive/parser → protocols/adapters}/__init__.py +0 -0
- /lionagi/{experimental/directive/template → protocols/registries}/__init__.py +0 -0
- /lionagi/{experimental/evaluator → strategies}/__init__.py +0 -0
- {lionagi-0.4.0.dist-info → lionagi-0.5.1.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,530 @@
|
|
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 to_chat_msgs(self, progress=None) -> list[dict]:
|
502
|
+
"""
|
503
|
+
Convert messages to chat format.
|
504
|
+
|
505
|
+
Args:
|
506
|
+
progress: Optional specific progression to convert
|
507
|
+
|
508
|
+
Returns:
|
509
|
+
list[dict]: Messages in chat format
|
510
|
+
|
511
|
+
Raises:
|
512
|
+
ValueError: If requested messages are not in the message pile
|
513
|
+
"""
|
514
|
+
if progress == []:
|
515
|
+
return []
|
516
|
+
try:
|
517
|
+
return [
|
518
|
+
self.messages[i].chat_msg for i in (progress or self.progress)
|
519
|
+
]
|
520
|
+
except Exception as e:
|
521
|
+
raise ValueError(
|
522
|
+
"Invalid progress, not all requested messages are in the message pile"
|
523
|
+
) from e
|
524
|
+
|
525
|
+
def __bool__(self):
|
526
|
+
return not self.messages.is_empty()
|
527
|
+
|
528
|
+
def has_logs(self):
|
529
|
+
"""Check if there are any logs."""
|
530
|
+
return not self.logger.logs.is_empty()
|
@@ -0,0 +1,116 @@
|
|
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}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
## Rendering Templates
|
2
|
+
|
3
|
+
Once templates are defined, you can load and render them using Jinja2:
|
4
|
+
|
5
|
+
```python
|
6
|
+
from jinja2 import Environment, FileSystemLoader
|
7
|
+
|
8
|
+
env = Environment(loader=FileSystemLoader('templates'))
|
9
|
+
|
10
|
+
# Example: Rendering an instruction message
|
11
|
+
template = env.get_template('instruction_message.jinja2')
|
12
|
+
args = {
|
13
|
+
"guidance": "Please ensure accuracy.",
|
14
|
+
"instruction": "Summarize the document",
|
15
|
+
"context": ["Doc1: ...", "Doc2: ..."],
|
16
|
+
"request_fields": {"summary": "...", "key_points": "..."}
|
17
|
+
}
|
18
|
+
message_text = template.render(**args)
|
19
|
+
print(message_text)
|
20
|
+
```
|
21
|
+
|
22
|
+
Benefits and Customization
|
23
|
+
• You can easily rearrange sections within these templates without changing your code logic.
|
24
|
+
• Each message type is clearly separated, making it simpler to maintain or adjust one message format without affecting the others.
|
25
|
+
• If you find that you use some snippet (like rendering a schema) in multiple templates, you can factor it out into its own partial template (like tool_schemas.jinja2) and include it where needed.
|
26
|
+
• Over time, you can add more templates or split existing ones if certain messages become too complex.
|
27
|
+
|
28
|
+
By establishing this set of base templates and arguments, you have a starting point. You can expand or refine as your requirements evolve.
|