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
lionagi-0.4.0.dist-info/METADATA
DELETED
@@ -1,241 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: lionagi
|
3
|
-
Version: 0.4.0
|
4
|
-
Summary: Towards automated general intelligence.
|
5
|
-
Author: HaiyangLi
|
6
|
-
Author-email: quantocean.li@gmail.com
|
7
|
-
Requires-Python: >=3.10,<4.0
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Programming Language :: Python :: 3.10
|
10
|
-
Classifier: Programming Language :: Python :: 3.11
|
11
|
-
Classifier: Programming Language :: Python :: 3.12
|
12
|
-
Requires-Dist: aiocache (>=0.12.0,<0.13.0)
|
13
|
-
Requires-Dist: ipython (>=8.0.0,<9.0.0)
|
14
|
-
Requires-Dist: lion-core (==0.5.6)
|
15
|
-
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
16
|
-
Description-Content-Type: text/markdown
|
17
|
-
|
18
|
-
![PyPI - Version](https://img.shields.io/pypi/v/lionagi?labelColor=233476aa&color=231fc935)
|
19
|
-
![PyPI - Downloads](https://img.shields.io/pypi/dm/lionagi?color=blue)
|
20
|
-
![Dependencies](https://img.shields.io/badge/dependencies-4-brightgreen)
|
21
|
-
![Python Version](https://img.shields.io/badge/python-3.10%2B-blue)
|
22
|
-
|
23
|
-
[Documentation](https://ocean-lion.com/Welcome) | [Discord](https://discord.gg/aqSJ2v46vu) | [PyPI](https://pypi.org/project/lionagi/) | [Roadmap](https://trello.com/b/3seomsrI/lionagi)
|
24
|
-
|
25
|
-
# LION Framework
|
26
|
-
### Language InterOperable Network - The Future of Controlled AI Operations
|
27
|
-
|
28
|
-
> Harness the power of next-generation AI while maintaining complete control and reliability.
|
29
|
-
|
30
|
-
## Why LION?
|
31
|
-
|
32
|
-
The AI revolution is transforming how we work - but with great power comes great responsibility. LION provides the control mechanisms and reliability features needed to safely integrate advanced AI capabilities into enterprise workflows.
|
33
|
-
|
34
|
-
LION is designed to be:
|
35
|
-
- 🔒 **Controlled**: Built-in safety mechanisms and verification
|
36
|
-
- 🎯 **Precise**: Exact control over AI behaviors
|
37
|
-
- 🔧 **Flexible**: Build any workflow you need
|
38
|
-
- 🚀 **Efficient**: Minimal dependencies, maximum performance
|
39
|
-
|
40
|
-
## Quick Start
|
41
|
-
|
42
|
-
```python
|
43
|
-
from lionagi import Branch, iModel
|
44
|
-
|
45
|
-
# Initialize model
|
46
|
-
gpt4o = iModel(provider="openai", model="gpt-4o")
|
47
|
-
|
48
|
-
# Create a branch with personality
|
49
|
-
comedian = Branch(
|
50
|
-
system="you are a sarcastic dragon hunter",
|
51
|
-
imodel=gpt4o
|
52
|
-
)
|
53
|
-
|
54
|
-
# Chat asynchronously
|
55
|
-
response = await comedian.chat(
|
56
|
-
"tell me a joke on knight vs dragon"
|
57
|
-
)
|
58
|
-
```
|
59
|
-
|
60
|
-
## Installation
|
61
|
-
|
62
|
-
LION maintains minimal dependencies for maximum reliability:
|
63
|
-
|
64
|
-
```bash
|
65
|
-
pip install lionagi
|
66
|
-
```
|
67
|
-
|
68
|
-
Dependencies:
|
69
|
-
- aiocache
|
70
|
-
- lion-core
|
71
|
-
- python-dotenv
|
72
|
-
- IPython
|
73
|
-
|
74
|
-
## 🌟 Example Workflow
|
75
|
-
|
76
|
-
Below is an example of what you can build with LION. Note that these are sample implementations - LION provides the building blocks, you create the workflows that fit your needs.
|
77
|
-
|
78
|
-
```mermaid
|
79
|
-
sequenceDiagram
|
80
|
-
autonumber
|
81
|
-
participant Client
|
82
|
-
participant Orchestrator
|
83
|
-
participant ResearchAgent
|
84
|
-
participant AnalysisAgent
|
85
|
-
participant ValidationAgent
|
86
|
-
participant Tools
|
87
|
-
|
88
|
-
Client->>+Orchestrator: Submit Complex Task
|
89
|
-
Note over Orchestrator: Task Analysis & Planning
|
90
|
-
|
91
|
-
%% Research Phase
|
92
|
-
Orchestrator->>+ResearchAgent: Delegate Research
|
93
|
-
activate ResearchAgent
|
94
|
-
ResearchAgent->>Tools: Access Data Sources
|
95
|
-
Tools-->>ResearchAgent: Raw Data
|
96
|
-
ResearchAgent-->>-Orchestrator: Research Results
|
97
|
-
deactivate ResearchAgent
|
98
|
-
|
99
|
-
%% Analysis Phase
|
100
|
-
Orchestrator->>+AnalysisAgent: Process Data
|
101
|
-
activate AnalysisAgent
|
102
|
-
AnalysisAgent->>Tools: Apply Models
|
103
|
-
Tools-->>AnalysisAgent: Analysis Results
|
104
|
-
AnalysisAgent-->>-Orchestrator: Processed Insights
|
105
|
-
deactivate AnalysisAgent
|
106
|
-
|
107
|
-
%% Validation Phase
|
108
|
-
Orchestrator->>+ValidationAgent: Verify Results
|
109
|
-
activate ValidationAgent
|
110
|
-
ValidationAgent->>Tools: Apply Safety Checks
|
111
|
-
Tools-->>ValidationAgent: Validation Status
|
112
|
-
ValidationAgent-->>-Orchestrator: Verified Results
|
113
|
-
deactivate ValidationAgent
|
114
|
-
|
115
|
-
Orchestrator-->>-Client: Return Validated Output
|
116
|
-
```
|
117
|
-
|
118
|
-
## 🏗️ System Architecture
|
119
|
-
|
120
|
-
Here's how you can structure your LION-powered system. Each component can be customized to your specific needs.
|
121
|
-
|
122
|
-
```mermaid
|
123
|
-
graph TB
|
124
|
-
subgraph Client Layer
|
125
|
-
CL[Client Application]
|
126
|
-
end
|
127
|
-
|
128
|
-
subgraph Orchestration Layer
|
129
|
-
ORC[Orchestrator]
|
130
|
-
SEC[Security Controls]
|
131
|
-
MON[Monitoring]
|
132
|
-
end
|
133
|
-
|
134
|
-
subgraph Agent Layer
|
135
|
-
subgraph Specialized Agents
|
136
|
-
RA[Research Agent]
|
137
|
-
AA[Analysis Agent]
|
138
|
-
VA[Validation Agent]
|
139
|
-
end
|
140
|
-
|
141
|
-
subgraph Agent Controls
|
142
|
-
AC[Access Control]
|
143
|
-
AM[Action Monitor]
|
144
|
-
VE[Verification]
|
145
|
-
end
|
146
|
-
end
|
147
|
-
|
148
|
-
subgraph Resource Layer
|
149
|
-
subgraph Tool Management
|
150
|
-
TM[Tool Registry]
|
151
|
-
TP[Tool Policies]
|
152
|
-
end
|
153
|
-
|
154
|
-
subgraph Data Sources
|
155
|
-
DS[Data Access]
|
156
|
-
DV[Data Validation]
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
%% Connections
|
161
|
-
CL --> ORC
|
162
|
-
ORC --> RA & AA & VA
|
163
|
-
RA & AA & VA --> AC
|
164
|
-
AC --> TM
|
165
|
-
TM --> DS
|
166
|
-
|
167
|
-
%% Control Flow
|
168
|
-
ORC --> SEC
|
169
|
-
SEC --> MON
|
170
|
-
MON --> AM
|
171
|
-
AM --> VE
|
172
|
-
VE --> TP
|
173
|
-
TP --> DV
|
174
|
-
|
175
|
-
classDef primary fill:#1e40af,stroke:#1e3a8a,color:#fff
|
176
|
-
classDef secondary fill:#3b82f6,stroke:#2563eb,color:#fff
|
177
|
-
classDef control fill:#7c3aed,stroke:#6d28d9,color:#fff
|
178
|
-
```
|
179
|
-
|
180
|
-
## 🛠️ Building Blocks
|
181
|
-
|
182
|
-
LION provides the essential components you need to build reliable AI workflows:
|
183
|
-
|
184
|
-
- **Branch**: Core conversation unit with built-in safety mechanisms
|
185
|
-
- **iModel**: Standardized interface to AI models
|
186
|
-
- **Tools**: Framework for safe tool integration
|
187
|
-
- **Exchange**: Reliable message passing between components
|
188
|
-
|
189
|
-
Each component is designed to be:
|
190
|
-
- Fully customizable to your needs
|
191
|
-
- Safe by default
|
192
|
-
- Easy to integrate
|
193
|
-
- Highly reliable
|
194
|
-
|
195
|
-
## 🎯 Key Use Cases
|
196
|
-
|
197
|
-
- **Enterprise Operations**
|
198
|
-
- Complex workflow automation
|
199
|
-
- Data analysis and processing
|
200
|
-
- Decision support systems
|
201
|
-
|
202
|
-
- **AI Integration**
|
203
|
-
- Controlled model deployment
|
204
|
-
- Safe tool usage
|
205
|
-
- Reliable agent operations
|
206
|
-
|
207
|
-
- **Development**
|
208
|
-
- Rapid prototyping
|
209
|
-
- System integration
|
210
|
-
- Workflow optimization
|
211
|
-
|
212
|
-
## 🔒 Built for Reliability
|
213
|
-
|
214
|
-
LION isn't just another framework - it's your partner in responsible AI adoption. Build enterprise-grade AI systems with:
|
215
|
-
|
216
|
-
- Complete control over AI behaviors
|
217
|
-
- Comprehensive audit trails
|
218
|
-
- Built-in safety mechanisms
|
219
|
-
- Minimal dependencies
|
220
|
-
- Maximum reliability
|
221
|
-
|
222
|
-
## 🤝 Contributing
|
223
|
-
|
224
|
-
Join our [Discord community](https://discord.gg/aqSJ2v46vu) to:
|
225
|
-
- Share ideas
|
226
|
-
- Report issues
|
227
|
-
- Contribute code
|
228
|
-
- Learn from others
|
229
|
-
|
230
|
-
## 📚 Citation
|
231
|
-
|
232
|
-
```bibtex
|
233
|
-
@software{Li_LionAGI_2023,
|
234
|
-
author = {Haiyang Li},
|
235
|
-
month = {12},
|
236
|
-
year = {2023},
|
237
|
-
title = {LionAGI: Intelligent Integration Framework},
|
238
|
-
url = {https://github.com/lion-agi/lionagi},
|
239
|
-
}
|
240
|
-
```
|
241
|
-
|
lionagi-0.4.0.dist-info/RECORD
DELETED
@@ -1,249 +0,0 @@
|
|
1
|
-
lionagi/__init__.py,sha256=y5_ed_SG5TAIM5HNkKMALSwwpFWsBuZxJl6eHT9vfOg,1431
|
2
|
-
lionagi/core/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
|
3
|
-
lionagi/core/_setting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
lionagi/core/_setting/_setting.py,sha256=p23fHtrzIZlQ8s8CDZICn8C6k7mdB_088nIDx19JaqM,1907
|
5
|
-
lionagi/core/action/README.md,sha256=DBr3qwGRZBrv4mZ6CEA9tEyO3S17OSSbhzIPKlr441s,2060
|
6
|
-
lionagi/core/action/__init__.py,sha256=eHMCkOjQCVwSGktG6BpZK4LlF63JAq3h2qepCTOtceg,303
|
7
|
-
lionagi/core/action/function_calling.py,sha256=d_Van7zRZFufFc6PsgHpGUStJmQmTA0QmmtFknP22_4,3929
|
8
|
-
lionagi/core/action/manual.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
9
|
-
lionagi/core/action/node.py,sha256=XZTMvI8ST_ysUQjYar_asKI_zPpf0T5YszFovZlpIv0,2966
|
10
|
-
lionagi/core/action/tool.py,sha256=JACPMvCem4zaRjA5hVQRUHhjHy6qtO_tGzcS7HeeaC0,3368
|
11
|
-
lionagi/core/action/tool_manager.py,sha256=A5nRIZHhfnWRAYjhGDeY2FVzAHB28lH-TfYe4kJPjgg,10961
|
12
|
-
lionagi/core/agent/README.md,sha256=seCxTNOyyh_tP8MUaJp6Ds4cqXtn_yd7sZO1obJUaII,41
|
13
|
-
lionagi/core/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
lionagi/core/agent/base_agent.py,sha256=gEMc95hkuAKLwBiBPIZsWTI4i7j3LzpKQyAFwX2ekrk,2690
|
15
|
-
lionagi/core/agent/eval/README.md,sha256=Vro2JJ6oIWrVE7E9895sDkkLohSJdnTTAzHxx-ftvvM,5
|
16
|
-
lionagi/core/agent/eval/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
lionagi/core/agent/eval/evaluator.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
18
|
-
lionagi/core/agent/eval/vote.py,sha256=A0rhWzSC9GPDa04ZNCBHz4lvEoSJUUGWkcwG3XY_7M8,1104
|
19
|
-
lionagi/core/agent/learn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
lionagi/core/agent/learn/learner.py,sha256=vMPskzGmUVKS9gaswQ5sc_tHIZ-6ZOfvGFFZ0mZ0rxo,2773
|
21
|
-
lionagi/core/agent/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
lionagi/core/agent/plan/plan.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
lionagi/core/agent/plan/unit_template.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
24
|
-
lionagi/core/collections/README.md,sha256=6DA_mG_4Mk0NWmEObwkBNavHWzmU6IOjT0Kyxf0EXBo,2381
|
25
|
-
lionagi/core/collections/__init__.py,sha256=RgnaBHgeUlPQyPfraE2MI86wAZpHAtmfgU0hhvdKoqE,296
|
26
|
-
lionagi/core/collections/_logger.py,sha256=zAGvx5SWWkeI2_n8Jh69ToYvyn5LLlww91SRKcrxLDU,11696
|
27
|
-
lionagi/core/collections/abc/README.md,sha256=N3s0qQglL2PkriZ0hWDTh0ytJjubqkXVyUB0x9kpi6U,5524
|
28
|
-
lionagi/core/collections/abc/__init__.py,sha256=cCPlUaXtXXPdQamXWQAf8MHKck7sa1asu6TDLX1W6S0,984
|
29
|
-
lionagi/core/collections/abc/component.py,sha256=R3lU2I9cefeKNQ-2EmUq487MRYdBHR50g5iZ9BmudKU,21280
|
30
|
-
lionagi/core/collections/abc/concepts.py,sha256=iYaI97A9qWrH_aPt_Fx60qgMfoGKqhzD0-efgH8lSj0,7799
|
31
|
-
lionagi/core/collections/abc/exceptions.py,sha256=raqjWSHGYhm-tUAmn1QK_NlkM3MQfjc1cOD_kobUdyc,4065
|
32
|
-
lionagi/core/collections/abc/util.py,sha256=CjJs-PgK0t4MAG1AJUdgrxQg7v2Ou-ixv-gWjatu7d4,779
|
33
|
-
lionagi/core/collections/exchange.py,sha256=7h9kI7gNRyCYFZUd-686ClPZXFZLtrEn7pVHjk4ol60,4274
|
34
|
-
lionagi/core/collections/flow.py,sha256=yaCdLhilcBrPdsZ46RcApgi8p-7O0D97OYnNVkEZja4,12726
|
35
|
-
lionagi/core/collections/model.py,sha256=dU6NOmy3c2aX9XqM5Y2CMx9_wuRCDtFAJyu5njBEysM,15848
|
36
|
-
lionagi/core/collections/pile.py,sha256=Zjzjo1eb0V7_9ONDpZgT65jLaAM04_zWK01zNS3OI_M,37937
|
37
|
-
lionagi/core/collections/progression.py,sha256=oFXvsGe84ZcHvacGc1MDGn4bE4h5wRUq8h9wcBXr8Ok,6657
|
38
|
-
lionagi/core/collections/util.py,sha256=AWfwuIIwbakpF0_swWUVSGTeN26XWL6UlmgW5mh4qDA,2005
|
39
|
-
lionagi/core/director/README.md,sha256=HoIDnEmWmWXVeDfUvkyf4nXQOYqzy2jhToZcJz0zmUw,55
|
40
|
-
lionagi/core/director/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
-
lionagi/core/director/direct.py,sha256=vKcirI2vp9CvU6Y7SoznaLwppJpI9j9YBo0cvfWwxiM,9552
|
42
|
-
lionagi/core/director/director.py,sha256=E-zgbAj5gbUgDrfE0YzFoipZnr0WWGZwIreEGGY2KJc,103
|
43
|
-
lionagi/core/director/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
|
-
lionagi/core/director/operations/select.py,sha256=0B1SXwkNdPM8z6aarECcw1I_AbiMIns7rYDSx1eyCBE,67
|
45
|
-
lionagi/core/director/operations/utils.py,sha256=nuCvA6hXAi0oPFPdV_5kyHLGLlk1FbqhGfH2N0kPF9I,132
|
46
|
-
lionagi/core/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
-
lionagi/core/engine/branch_engine.py,sha256=l59CTLk-ecsc_NgNgT3DkgP4OuuQ1lzdcOdDqie0H-k,12700
|
48
|
-
lionagi/core/engine/instruction_map_engine.py,sha256=xjvqHLc7T2Hk7MoFA8y9DgMAmFKk56vTSTL-90SiAWc,8600
|
49
|
-
lionagi/core/engine/sandbox_.py,sha256=2XhfRFAztRsSli6KKpKdQlfvwkTFVDk5ub1TowX0eRI,481
|
50
|
-
lionagi/core/engine/script_engine.py,sha256=NwOg6Gb0h1Ml4lvLQ55DTn37hVuM5e_r5iBOAC1hBt8,3155
|
51
|
-
lionagi/core/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
-
lionagi/core/executor/base_executor.py,sha256=3p_mUP8iA5pLO0pwqr_2Z0eG_MGB1zA5ZXETtLSTwb4,2828
|
53
|
-
lionagi/core/executor/graph_executor.py,sha256=qk9qoaRt3yLSxIxZL6_exZ2sHdFkWj0PDvHBeqOBSqY,13374
|
54
|
-
lionagi/core/executor/neo4j_executor.py,sha256=hs2IT1Rn_4skQCQAf5baYhn1pzK8zDVA_mGbaoVOzAU,15633
|
55
|
-
lionagi/core/generic/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
-
lionagi/core/generic/__init__.py,sha256=KRhSxsib7MvtGZhQDvI-rWTW99r0Gw21agRCRpoof4U,139
|
57
|
-
lionagi/core/generic/edge.py,sha256=cbEMMZje6QVMaamYZ-bd5twNDWhRDyeIWUQjEW1L7uQ,4017
|
58
|
-
lionagi/core/generic/edge_condition.py,sha256=ZvQMYDl4WFXrwkvjQajVFluF5FNosw_OLeBihFUR6l8,356
|
59
|
-
lionagi/core/generic/graph.py,sha256=kOq2DvZaAFmgHIZUlFlxUgSh4rzqQP6fMmQtrWhTjfM,7838
|
60
|
-
lionagi/core/generic/hyperedge.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
61
|
-
lionagi/core/generic/node.py,sha256=vf26Q8-V3wh5qr8TdFGena_SCkp_39eCO6n23TjbuMo,7156
|
62
|
-
lionagi/core/generic/registry/component_registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
-
lionagi/core/generic/tree.py,sha256=YVlJT1_gN96utEUB1Uc4pmHEeFVyJrtSF6cqIBWZDJI,1541
|
64
|
-
lionagi/core/generic/tree_node.py,sha256=vHOELePsn-Vqlpi7V4-UteGR-Vht4FddJL6UmNVbab8,2475
|
65
|
-
lionagi/core/mail/__init__.py,sha256=_-C11e519cBCuEuYhCgsQnzph2vDpUaLEfsKNwz33AQ,202
|
66
|
-
lionagi/core/mail/mail.py,sha256=DNmAmeTFRW6KP516NE7kXlAOmy0te1ejadTb4pf3vCs,727
|
67
|
-
lionagi/core/mail/mail_manager.py,sha256=XjFJJwwoAU0iesZMMm3xPzdBMo2ty8ryFD94Ttkdtjg,6030
|
68
|
-
lionagi/core/mail/package.py,sha256=v1cZqFET_GZc0imySBix7Lq3yYq8Zjj5o0fvPoKTma0,1188
|
69
|
-
lionagi/core/mail/start_mail.py,sha256=iV25FHfBH5PN5SYqD7T2T0GDRquMWtPNboDz6cckfgk,1219
|
70
|
-
lionagi/core/message/__init__.py,sha256=Vwdx3Y2JV8Xy93zRptfNj2aWdTI5n3e49cUDZcc5M60,457
|
71
|
-
lionagi/core/message/action_request.py,sha256=H4RfMOnX13Ch7JVLgIvpTEeT3SA0D92_1cYs1nYFeNI,3739
|
72
|
-
lionagi/core/message/action_response.py,sha256=r_TwHJTIF1OcZvWIcHbDoE6FNXwNDWKhwWKhwzqyTCs,4272
|
73
|
-
lionagi/core/message/assistant_response.py,sha256=EcDDTXm9BWOTtnh-Y3nZNTmmfSvUGXmHzd_aCTCXbQg,2619
|
74
|
-
lionagi/core/message/instruction.py,sha256=I_ZqMx3IjIwGlAx3bdlBuyVycTZ9yO1i-kEP5gFxWAU,6940
|
75
|
-
lionagi/core/message/message.py,sha256=Etl4a3mUrXLsym7i6ILqTV_Xun0xZw0UCoBMl1OtsNE,2403
|
76
|
-
lionagi/core/message/system.py,sha256=48mvib50mno9F-8fkLa8SzPxz3G1KlRgz3GkIluMFUQ,2318
|
77
|
-
lionagi/core/message/util.py,sha256=7CFw90QA3CdnV43aQ3PU6p1fhtaTixnlj_SBkLyQmpM,9313
|
78
|
-
lionagi/core/report/__init__.py,sha256=KqfJNaSx9fzRw3eyrlIlYIiueo-jVYMgjaOdfzTUAN4,80
|
79
|
-
lionagi/core/report/base.py,sha256=_PRSd92JttwEKnW_UX7SszpV29bLg6wPwJ_Lav-Z-9k,7173
|
80
|
-
lionagi/core/report/form.py,sha256=IPZk5D5Ai-GV6DrvrZBoEkwIFT7_vwv8h3qME8Tph-M,7040
|
81
|
-
lionagi/core/report/report.py,sha256=IIkTbLHindL4hj85lpfbRTK44qJ2cM-AEnKlRhbj8Gc,5294
|
82
|
-
lionagi/core/report/util.py,sha256=7Qak3L-ftQ-3ef5ZMc8c1Ob4Gg7h2Rgw2-8wzb16a-s,466
|
83
|
-
lionagi/core/rule/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
|
-
lionagi/core/rule/_default.py,sha256=EtKfqz6CWmF4EnzPsXCy37rn7x8VhdqiMLyfqG_N2xU,398
|
85
|
-
lionagi/core/rule/action.py,sha256=9NCXzRa-eRyV1XpeC1ranlADQcpWrPezP0hzqdlwEv4,2592
|
86
|
-
lionagi/core/rule/base.py,sha256=6MmAEu3eR9X_UBPgwAtBeOAzUHuNndlnxqY6lijZfGA,7070
|
87
|
-
lionagi/core/rule/boolean.py,sha256=JuqVcgVWlKwZd_Y_b7i2SC7lLEAiUJlAkAvC9aYb5tI,1470
|
88
|
-
lionagi/core/rule/choice.py,sha256=uj2CAPmTCdllQDYTj-tsk_V0_-xCGR7mKCOldY2rISE,1486
|
89
|
-
lionagi/core/rule/mapping.py,sha256=jeVRbHpe3gLQ8voJGru7uwd_Ca1wqtVn6PlkR4q7u0Y,2545
|
90
|
-
lionagi/core/rule/number.py,sha256=YKcb7HZ89ktWdLd8dA2azLg2p5HALQWqMsIm98Xw8Dw,2276
|
91
|
-
lionagi/core/rule/rulebook.py,sha256=uBAPMzaCcH9Mr01K_w2HZ6TJIXNtKLS8ZdV3e-17nEQ,1023
|
92
|
-
lionagi/core/rule/string.py,sha256=ZoTuqidyR_vS0BNKEZEj_Oc5Ie8hhy2qaBFGX5J4CrU,1209
|
93
|
-
lionagi/core/rule/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
-
lionagi/core/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
-
lionagi/core/session/branch.py,sha256=cs51rCG4OSPENVrniOlvKAKBXlcyLbzP032HuiCaIX8,14381
|
96
|
-
lionagi/core/session/directive_mixin.py,sha256=bUHuCDH70BZiPKutRXHXgb5vKSJPL9abQLaIkYnC0Kk,12100
|
97
|
-
lionagi/core/session/session.py,sha256=cLieD42-g8s2ticNY2YyzAAwjwxkyk5q7M5dVlHlMBQ,10479
|
98
|
-
lionagi/core/structure/__init__.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
99
|
-
lionagi/core/structure/chain.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
100
|
-
lionagi/core/structure/forest.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
101
|
-
lionagi/core/structure/graph.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
102
|
-
lionagi/core/structure/tree.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
103
|
-
lionagi/core/unit/__init__.py,sha256=rKMkYPml-R32DjR-TqU4F0d3mVQUGyGn54puPUrT31w,87
|
104
|
-
lionagi/core/unit/parallel_unit.py,sha256=OnG1fIFUSD557jsSdfja13hzJohX5NVbc6HrffW9Rj4,8849
|
105
|
-
lionagi/core/unit/template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
lionagi/core/unit/template/action.py,sha256=9CJ1H6CvnolDuNwy3toWnrWxOcPzXeDLS5fqs3ZQwN8,2231
|
107
|
-
lionagi/core/unit/template/base.py,sha256=hp8oGokyLKq4BtK9p-8h9AuJfelETy67X3Av7_7f1Gg,1208
|
108
|
-
lionagi/core/unit/template/plan.py,sha256=i4FmKEB8eRsRCsTanvfoX-2RZ8SaM1qvLBluuY-l20Q,2175
|
109
|
-
lionagi/core/unit/template/predict.py,sha256=-EIZQo0ZjGKy3MiM0AtqmbnJpbXcrwtSCON5n3jcyVo,3160
|
110
|
-
lionagi/core/unit/template/score.py,sha256=ReUaIIr-NLjunSy4NNXQpIsH28NNceGBAUuPCRptzMc,3809
|
111
|
-
lionagi/core/unit/template/select.py,sha256=VSpkphJl9bHSE8i0X6MMJD8LB5QwOj1UORHm8VDIRKE,3047
|
112
|
-
lionagi/core/unit/unit.py,sha256=a3rauBXe50SBUgndv7Q9bqF4h7pJCYdsoTfPf1e8GCs,15548
|
113
|
-
lionagi/core/unit/unit_form.py,sha256=zK_ij3Tod5FwMVdIIhdVoEFvD3br-YM9RPe7WsOIW2s,10980
|
114
|
-
lionagi/core/unit/unit_mixin.py,sha256=gLyqtyiwWIyfibhNUJzMpAGfcMmLdo86xjbGZFyGILA,38803
|
115
|
-
lionagi/core/unit/util.py,sha256=WN2Jop-LUwQNYJNubFPhOZrisQ6SQq-XMhD_KhzLkgE,2707
|
116
|
-
lionagi/core/validator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
117
|
-
lionagi/core/validator/validator.py,sha256=901wwmqL92XNi25ajv57bNKIKZhmu-KprNLArMUiGqg,12255
|
118
|
-
lionagi/core/work/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
119
|
-
lionagi/core/work/work.py,sha256=CswZTTgJyYo1E0DresmrZjcI5SuWCwF7AMl2_1WdEm4,1958
|
120
|
-
lionagi/core/work/work_edge.py,sha256=gpFNlG5SqFX6R_OMVxGHOKbGLhCbb9Qwh8uoLNTmkVo,3469
|
121
|
-
lionagi/core/work/work_function.py,sha256=CxJPDESNGEya3dBNe8NB-Kf3PWjWUau-LxE2Nxgfb6o,3444
|
122
|
-
lionagi/core/work/work_function_node.py,sha256=EmNabqf4SKAxUeH6tp1baYiNexeyP75mMefluUunRq4,1927
|
123
|
-
lionagi/core/work/work_queue.py,sha256=TFrO0zqpCWD8WmuoQ6rEt2qihfCVimvzeS4pkJkE0qg,3052
|
124
|
-
lionagi/core/work/work_task.py,sha256=WUyhxZ_mfL_uGxAIAz3W7irk0yfO1RiifAqzSsu4tdE,5354
|
125
|
-
lionagi/core/work/worker.py,sha256=t3hYO_ExLbAh51KDu-7IMbdOG2zaR1I3GGcEJxSVluE,14907
|
126
|
-
lionagi/core/work/worker_engine.py,sha256=zSQu_R1TLhWwBXvNM5JgUaplPlTPXrfvOpZ4ZlmLzcE,7614
|
127
|
-
lionagi/core/work/worklog.py,sha256=x7roVZyyT5mv5Jct4kmzjOn492TtcxaGk6frGSiQ7XI,3084
|
128
|
-
lionagi/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
129
|
-
lionagi/experimental/compressor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
130
|
-
lionagi/experimental/compressor/base.py,sha256=rTOm962ozV9tF74H7-rJWLqKuxczUL17HeckwBavfwE,2018
|
131
|
-
lionagi/experimental/compressor/llm_compressor.py,sha256=5T4vYs-f7KCg04JbUmmN-QjdNYaxE7WshG2Ds6BaAUc,8652
|
132
|
-
lionagi/experimental/compressor/llm_summarizer.py,sha256=TujLunlEXBtHCwKQZoud5T9bogeSgbVxX_dtuasDg_c,2407
|
133
|
-
lionagi/experimental/compressor/util.py,sha256=pUsL2vL6ZuJa6Kr--2_Qnh-dOleFVpfhbMYdMn5FbXU,2226
|
134
|
-
lionagi/experimental/directive/README.md,sha256=Vro2JJ6oIWrVE7E9895sDkkLohSJdnTTAzHxx-ftvvM,5
|
135
|
-
lionagi/experimental/directive/__init__.py,sha256=01JLCb7Zd7UTVsTGog9-pXXT4FBT7P7QErbhoT7vkIw,403
|
136
|
-
lionagi/experimental/directive/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
-
lionagi/experimental/directive/parser/base_parser.py,sha256=bAdTtALKSYmIDSMoBIXatPMOb3A5DiuqWhu1lTVoJEo,10536
|
138
|
-
lionagi/experimental/directive/parser/base_syntax.txt,sha256=LTrH-V14jP1rzJXU5fweyCfh_jjj6t88oCK6gKn7Qjg,2810
|
139
|
-
lionagi/experimental/directive/template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
|
-
lionagi/experimental/directive/template/base_template.py,sha256=cDMLxnRVheoQ7wiNCpsC6Cvk9_W02H-0tR8z6oMnfwo,2689
|
141
|
-
lionagi/experimental/directive/template/schema.py,sha256=vGHQqn_ZAMkIfUqqdnPCHN8p-wommVyMBkanWHPuCSI,861
|
142
|
-
lionagi/experimental/directive/tokenizer.py,sha256=VSH7sA5DSfuUJFDcfTQtTPYPXLo4tg8Y8snQ48M1M6A,1822
|
143
|
-
lionagi/experimental/evaluator/README.md,sha256=Vro2JJ6oIWrVE7E9895sDkkLohSJdnTTAzHxx-ftvvM,5
|
144
|
-
lionagi/experimental/evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
-
lionagi/experimental/evaluator/ast_evaluator.py,sha256=Fo-HVdkQzW1LSkp-OLJuqxzeeYKuGLpzh1CX6qo58FE,4192
|
146
|
-
lionagi/experimental/evaluator/base_evaluator.py,sha256=JgSg7ew9DHpajOD9s4UEetfBNULm8L2xMNP_kvJ4eVU,8233
|
147
|
-
lionagi/experimental/knowledge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
|
-
lionagi/experimental/knowledge/base.py,sha256=Z6ExjUZdF_cLm5tye00dVHNL1gkhsOjUCk8ZId8p3uA,218
|
149
|
-
lionagi/experimental/knowledge/graph.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
150
|
-
lionagi/experimental/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
|
-
lionagi/experimental/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
|
-
lionagi/experimental/strategies/base.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
153
|
-
lionagi/integrations/__init__.py,sha256=Il5Q9ATdX8yXqVxtP_nYqUhExzxPC_qk_WXQ_4h0exg,16
|
154
|
-
lionagi/integrations/bridge/__init__.py,sha256=GTtqrkDb7OW5JID56bHyJTTkztZupOJyvHGAr0lN3VY,169
|
155
|
-
lionagi/integrations/bridge/autogen_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
156
|
-
lionagi/integrations/bridge/autogen_/autogen_.py,sha256=MRB-mo9A0FkZ50ILBthadVlMScjk_t9nRF2eg9gDS6c,4077
|
157
|
-
lionagi/integrations/bridge/langchain_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
|
-
lionagi/integrations/bridge/langchain_/documents.py,sha256=pwcVbzwUeqVPd_TGLo0aMhq-zfiPPGpxq_PwgRw3bGU,5030
|
159
|
-
lionagi/integrations/bridge/langchain_/langchain_bridge.py,sha256=-lnJtyf4iJEwHKQAwBRN6YZ7CTsyFLetl5e8_9UGouY,3163
|
160
|
-
lionagi/integrations/bridge/llamaindex_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
|
-
lionagi/integrations/bridge/llamaindex_/index.py,sha256=NCQpnOGTzjDZ1BYqYcjW2EFhB95WoV3DBLOMiNLRCfI,981
|
162
|
-
lionagi/integrations/bridge/llamaindex_/llama_index_bridge.py,sha256=AxLuoaDueNPZ_vX4_-kGlxlDKezqb1E1Cn_s33Dq2pM,5203
|
163
|
-
lionagi/integrations/bridge/llamaindex_/llama_pack.py,sha256=w0uR4BpLEf_06FT19A9S5JGGAT_r9_K90rKi_Nj7iBE,8673
|
164
|
-
lionagi/integrations/bridge/llamaindex_/node_parser.py,sha256=h7hIsnZP3QksJe2eoi0ylbOOXltYlve1D6h8K9zbRpo,3623
|
165
|
-
lionagi/integrations/bridge/llamaindex_/reader.py,sha256=G6zuYb4TLbon-tiGq4EYag5P_5kh3NZcFUoJjb0__i0,8194
|
166
|
-
lionagi/integrations/bridge/llamaindex_/textnode.py,sha256=68Sur4BJLrLBHLwhXAWkJs0e5jE4aSdnkWqpRztu0CQ,2405
|
167
|
-
lionagi/integrations/bridge/pydantic_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
lionagi/integrations/bridge/pydantic_/pydantic_bridge.py,sha256=rg0S6dEJRZ0vam7UzWEwTx4ZKjW4bkJCThbhXKdsp0o,112
|
169
|
-
lionagi/integrations/bridge/transformers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
|
-
lionagi/integrations/bridge/transformers_/install_.py,sha256=c9fIAA8cJeqkfEVIbjSEV6M0LEKdoQgAXoTOxJ7BGcw,1246
|
171
|
-
lionagi/integrations/chunker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
172
|
-
lionagi/integrations/chunker/chunk.py,sha256=Hl8j2KDCCkMiOr5cXVPVWKEr7KYpvlIGTDcu3Z1COYw,10695
|
173
|
-
lionagi/integrations/config/__init__.py,sha256=zzQGZe3H5vofcNWSjjoqe_gqHpCO8Yl7FefmrUpLqnw,133
|
174
|
-
lionagi/integrations/config/mlx_configs.py,sha256=xbostqjnk3aAN-qKyC54YBprHPA38C8YDevXMMEHXWY,44
|
175
|
-
lionagi/integrations/config/oai_configs.py,sha256=fgby-3o_tO24QhSiPyko-oeAMEa0cWCThh6L6ChiXoo,3625
|
176
|
-
lionagi/integrations/config/ollama_configs.py,sha256=GUn0kagrQA3gpIiaxYyfdi2LAf_Ohz1sVrsAb20OBwo,17
|
177
|
-
lionagi/integrations/config/openrouter_configs.py,sha256=x5LjLx-aqCLzzrqr15gVzuTTG4Y_BVS6tRrKout5vPQ,1690
|
178
|
-
lionagi/integrations/langchain_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
|
-
lionagi/integrations/llamaindex_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
|
-
lionagi/integrations/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
-
lionagi/integrations/loader/load.py,sha256=KhsbLPwqNK1wRDKSoZPd5yeyMGAPc9Xt_ISR8PK6PCk,8651
|
182
|
-
lionagi/integrations/loader/load_util.py,sha256=65qP5kytBJFTaSg7lNCO7rfw6GpPQuvZxoqJ7s83A48,6616
|
183
|
-
lionagi/integrations/provider/__init__.py,sha256=mXytlBiHEAIryQJ3ayTCWEB2ATf0RWRFfOgLP_HLL_c,197
|
184
|
-
lionagi/integrations/provider/_mapping.py,sha256=gbJMe37jCOG_3XEWQjDuPwm2yVVPs7xzhJsmYWKc_Ow,1347
|
185
|
-
lionagi/integrations/provider/litellm.py,sha256=75ElNHYXmgPrgcUElelT_MH2FSB2D8Nvqerc2Pv_zUQ,1283
|
186
|
-
lionagi/integrations/provider/mistralai.py,sha256=G-StbfrnUcWZvl0eRby6CZYXxmJf6BRMFzDaix-brmU,7
|
187
|
-
lionagi/integrations/provider/mlx_service.py,sha256=G4_hWHI5SngxzruuAeQn6xyJvqaujT6ZyK_h4yU1zyU,1727
|
188
|
-
lionagi/integrations/provider/oai.py,sha256=xJsfC13HGT516rSDHk1OrNfACEP7NdkAKtPZ0c5gdcQ,6706
|
189
|
-
lionagi/integrations/provider/ollama.py,sha256=lgZAAnmOhAW-RV_OIzEi9SE6MfRj7io_ayT9rxRR3uw,1380
|
190
|
-
lionagi/integrations/provider/openrouter.py,sha256=IIERxSnHX1bAjSo_ztqNT5fO6whyGCA1SPTfcGTS84w,5862
|
191
|
-
lionagi/integrations/provider/services.py,sha256=SLlJRmemyZ3_I0IfXXaOuLI2Zc2-P7wqd5iWw17g0ck,5413
|
192
|
-
lionagi/integrations/provider/transformers.py,sha256=qinKmzKUr3ixO08_NU0LaumfCyWwwNOm9qsuOETMhDQ,3209
|
193
|
-
lionagi/integrations/storage/__init__.py,sha256=W5FouDavC32X818ta84GAMc_z9x8onTzXNlYKQpH_a4,79
|
194
|
-
lionagi/integrations/storage/neo4j.py,sha256=jp6OthHq9lSHdRO28uDqVEZBKAczsETDXD9_c2FoffE,25926
|
195
|
-
lionagi/integrations/storage/storage_util.py,sha256=uSiAkLDuDXIpGw4Uo6344VkaH4TEvPpDgAML5KwDqVk,10850
|
196
|
-
lionagi/integrations/storage/structure_excel.py,sha256=kQicF-jeLeowHJCeKZFCgGshrJTzaC4HRd68SAG8C-w,12357
|
197
|
-
lionagi/integrations/storage/to_csv.py,sha256=PEk97NHo-_uKDAKR3mkzup7iHY6adeErN6JwXnTsQxc,2918
|
198
|
-
lionagi/integrations/storage/to_excel.py,sha256=HNshHOwz9QlQnV-wDiZB2i2JbM0hBPtjzLQ0GytVzAY,3528
|
199
|
-
lionagi/libs/__init__.py,sha256=9yvPizpja3Ssyjm8jWERtaE1tg9xLOCmPNJU_ob0JEA,1237
|
200
|
-
lionagi/libs/ln_api.py,sha256=kXs5ujNEJHHO8rdd1QuhC2E4J-mRziS17_yuryb1a0Y,36643
|
201
|
-
lionagi/libs/ln_async.py,sha256=a1thJjFgqMBYe8Lp2XasCagyPpPpnoaX-hoVxrsRaiA,6075
|
202
|
-
lionagi/libs/ln_context.py,sha256=ArYMND6bH5x5Tn4oFlpUizne-JOfZ5gFmYUZyFIsknc,1008
|
203
|
-
lionagi/libs/ln_convert.py,sha256=dD_H4O0BQYN-MakRuPKfZqEtDfFrJDnaYlZlYsxKOS4,23529
|
204
|
-
lionagi/libs/ln_dataframe.py,sha256=GVBvW414teHgOq-7Uc25ojCK16ZonVgC-zI7vA9n3HE,5597
|
205
|
-
lionagi/libs/ln_func_call.py,sha256=_3t1f0k7iBirzqq-uYnxrlfr28dVhQUUKbyOodNFol8,50303
|
206
|
-
lionagi/libs/ln_image.py,sha256=WUi2FlMNSJAtTcgNaIRT3TUQ47H93bIQ93jmnFlrI4c,3660
|
207
|
-
lionagi/libs/ln_knowledge_graph.py,sha256=Tx5YZX-aCbi6_wk21WN_ngQjd1w3xfVuNvkHukXB6u4,15208
|
208
|
-
lionagi/libs/ln_nested.py,sha256=nmvMGLxkltJKblrpgVJ0WcXOCV9NAz1JoRc6cKMyVho,30122
|
209
|
-
lionagi/libs/ln_parse.py,sha256=0R9pYSfYLDPg8zOJXj9zQ5E3qJYCApIU-OUb5lZ-y08,27251
|
210
|
-
lionagi/libs/ln_queue.py,sha256=kJ-81XNnu2gcHyQ9XL62kCnAzk_0tmRmvhAaj30wIjM,3498
|
211
|
-
lionagi/libs/ln_tokenize.py,sha256=SP3mGljwaaxqH0ced54v4lFs8LXU-oIpb33mdrzRSEA,5400
|
212
|
-
lionagi/libs/ln_validate.py,sha256=huTnLNaAITni49PK_uI2CXvnFETt87j8-4lF8e5yy0o,8469
|
213
|
-
lionagi/libs/special_tokens.py,sha256=ViFaql64LgEGHSXzODzaVMh4GfteN8D2ogmqWYTYwiQ,2411
|
214
|
-
lionagi/libs/sys_util.py,sha256=Xin0U3-oBUJZJUhdHRjDyyNVJS-resfGFooDUTAtH0M,24919
|
215
|
-
lionagi/lions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
216
|
-
lionagi/lions/coder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
|
-
lionagi/lions/coder/add_feature.py,sha256=mLMfz9V9yYbdH6DJs39FOz9IHdhdyPZajocQtQhjgcA,703
|
218
|
-
lionagi/lions/coder/base_prompts.py,sha256=SLpC442nZm2cEkB8o9j28kpkB-WzKLjH6sOTS8CnIrY,367
|
219
|
-
lionagi/lions/coder/code_form.py,sha256=xW66cWCsrZu2qGu-wGUGSIPL1uZevGQVCE_vBRH9Kmc,384
|
220
|
-
lionagi/lions/coder/coder.py,sha256=u-n_7PVdKCAz28SAA2bO4oy1qxGIzEl1PX6iqz7oSoI,5829
|
221
|
-
lionagi/lions/coder/util.py,sha256=m9H18JrePpuP1VyjxVXQaLXCGBed04jZIkfNXvF7_gU,2751
|
222
|
-
lionagi/lions/director/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
223
|
-
lionagi/lions/judge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
|
-
lionagi/lions/judge/config.py,sha256=hJNMI-07zf5cqU2tr22fzkGvhR7RdtckkYg8UhLTKec,185
|
225
|
-
lionagi/lions/judge/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
226
|
-
lionagi/lions/judge/data/sample_codes.py,sha256=LfXQ6eiwcR_bkFOURPgZZVE7ShllcS2k6nnC82W75Gc,17500
|
227
|
-
lionagi/lions/judge/data/sample_rurbic.py,sha256=H-wS8KliqI3e8XdBcT0hZFi_RdFxAyz2aCxCsR5x6YQ,1123
|
228
|
-
lionagi/lions/judge/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
lionagi/lions/judge/forms/code_analysis_form.py,sha256=JK2I0TfeZwpeYolkVlOr-cPFhTXjdyqH9-DmwPztTb4,4129
|
230
|
-
lionagi/lions/judge/rubric.py,sha256=NCk06pJd86lbSQNavBYEvzV4WORN746A5J_1qsL4DD4,700
|
231
|
-
lionagi/lions/judge/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
|
-
lionagi/lions/judge/services/judge_code.py,sha256=CRfecySGpLw8ceKJwgHWgxorMgjOs_aRAjONJZ6PrE0,1267
|
233
|
-
lionagi/lions/researcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
|
-
lionagi/lions/researcher/data_source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
235
|
-
lionagi/lions/researcher/data_source/finhub_.py,sha256=W63daXgIwHJQ6TDMR2ALQIDk1mV3msoDQ9RgOYXsGoE,8783
|
236
|
-
lionagi/lions/researcher/data_source/google_.py,sha256=401SKHQaSpxiOUoXl7stadl4qeF7SIX72lUNK7bKesg,6797
|
237
|
-
lionagi/lions/researcher/data_source/wiki_.py,sha256=UPoa2dk_y5sELu7_rkdme2auDpUmc_Dn0Avgjwr2X2g,3145
|
238
|
-
lionagi/lions/researcher/data_source/yfinance_.py,sha256=snAf897J69MyAc6fcFjF0irrMjbAh81EZ3RvaFT3hxE,977
|
239
|
-
lionagi/operations/__init__.py,sha256=T7fbKqrZxLzWPpv7nYxpoMzwSfaAgyxCJwA1gQ6rVK4,163
|
240
|
-
lionagi/operations/brainstorm.py,sha256=GxLjY_IOss62UKNaFF2CUXNBrcF_D7tk-R7ZxaFkQlE,2319
|
241
|
-
lionagi/operations/config.py,sha256=DIhifP4SLV3SVa5eXCHbDNvCD6lEB3fAbgOtY6b2PHg,133
|
242
|
-
lionagi/operations/rank.py,sha256=17g-LFvN0h0VEFKOrhY9Mw7U6StZGI78zUuVRPAmnbY,3075
|
243
|
-
lionagi/operations/score.py,sha256=lSG4EgNMkiAN3c3HrpZtnSw2-bHkFN5y3ZlvI85-VLE,3874
|
244
|
-
lionagi/operations/select.py,sha256=MTJoT4oouugPU4pG0UkoozX38iysGhvlmgk2DeJGJ3E,4044
|
245
|
-
lionagi/version.py,sha256=42STGor_9nKYXumfeV5tiyD_M8VdcddX7CEexmibPBk,22
|
246
|
-
lionagi-0.4.0.dist-info/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
|
247
|
-
lionagi-0.4.0.dist-info/METADATA,sha256=A5IsGD4K-s-Mmsb47ekskqA5LUpTUORUxOQosiIIFhU,6512
|
248
|
-
lionagi-0.4.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
249
|
-
lionagi-0.4.0.dist-info/RECORD,,
|
/lionagi/{core/_setting → integrations/anthropic_/api_endpoints/messages/response}/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/lionagi/{core/director → integrations/openai_/api_endpoints/chat_completions/response}/__init__.py
RENAMED
File without changes
|
/lionagi/{core/director/operations → integrations/openai_/image_token_calculator}/__init__.py
RENAMED
File without changes
|
File without changes
|
/lionagi/{core/executor → integrations/perplexity_/api_endpoints/chat_completions}/__init__.py
RENAMED
File without changes
|
File without changes
|
/lionagi/{core/rule → integrations/perplexity_/api_endpoints/chat_completions/response}/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|