lionagi 0.3.8__py3-none-any.whl → 0.5.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +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 +507 -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 +113 -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 +147 -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 +69 -0
- lionagi/integrations/ollama_/OllamaModel.py +244 -0
- lionagi/integrations/ollama_/OllamaService.py +138 -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 +414 -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 +109 -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 +110 -0
- lionagi/service/rate_limiter.py +108 -0
- lionagi/service/service.py +37 -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.0.dist-info/METADATA +348 -0
- lionagi-0.5.0.dist-info/RECORD +373 -0
- {lionagi-0.3.8.dist-info → lionagi-0.5.0.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.3.8.dist-info/METADATA +0 -241
- lionagi-0.3.8.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.3.8.dist-info → lionagi-0.5.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,108 @@
|
|
1
|
+
from collections import deque
|
2
|
+
from datetime import UTC, datetime, timezone
|
3
|
+
|
4
|
+
from pydantic import BaseModel, Field
|
5
|
+
|
6
|
+
from .complete_request_info import (
|
7
|
+
CompleteRequestInfo,
|
8
|
+
CompleteRequestTokenInfo,
|
9
|
+
)
|
10
|
+
|
11
|
+
|
12
|
+
class RateLimiter(BaseModel):
|
13
|
+
limit_tokens: int = Field(default=None)
|
14
|
+
|
15
|
+
limit_requests: int = Field(default=None)
|
16
|
+
|
17
|
+
remaining_tokens: int = Field(default=None)
|
18
|
+
|
19
|
+
remaining_requests: int = Field(default=None)
|
20
|
+
|
21
|
+
last_check_timestamp: float = Field(
|
22
|
+
default=None, description="Last time to check tokens and requests."
|
23
|
+
)
|
24
|
+
|
25
|
+
unreleased_requests: deque = Field(
|
26
|
+
default_factory=deque,
|
27
|
+
description="completed request info for replenish",
|
28
|
+
exclude=True,
|
29
|
+
)
|
30
|
+
|
31
|
+
def append_complete_request_token_info(self, info: CompleteRequestInfo):
|
32
|
+
if not self.limit_tokens and not self.limit_requests:
|
33
|
+
# no limits
|
34
|
+
return
|
35
|
+
|
36
|
+
self.unreleased_requests.append(info)
|
37
|
+
if self.limit_tokens and isinstance(info, CompleteRequestTokenInfo):
|
38
|
+
# For request with token limits only
|
39
|
+
if self.remaining_tokens:
|
40
|
+
self.remaining_tokens -= info.token_usage
|
41
|
+
else:
|
42
|
+
self.remaining_tokens = self.limit_tokens - info.token_usage
|
43
|
+
|
44
|
+
if self.limit_requests:
|
45
|
+
if self.remaining_requests:
|
46
|
+
self.remaining_requests -= 1
|
47
|
+
else:
|
48
|
+
self.remaining_requests = self.limit_requests - 1
|
49
|
+
|
50
|
+
def release_tokens(self):
|
51
|
+
self.last_check_timestamp = datetime.now(UTC).timestamp()
|
52
|
+
while self.unreleased_requests:
|
53
|
+
if (
|
54
|
+
datetime.now(UTC).timestamp()
|
55
|
+
- self.unreleased_requests[0].timestamp
|
56
|
+
> 60
|
57
|
+
):
|
58
|
+
release_info = self.unreleased_requests.popleft()
|
59
|
+
if (
|
60
|
+
isinstance(release_info, CompleteRequestTokenInfo)
|
61
|
+
and self.remaining_tokens
|
62
|
+
):
|
63
|
+
self.remaining_tokens += release_info.token_usage
|
64
|
+
if self.remaining_requests:
|
65
|
+
self.remaining_requests += 1
|
66
|
+
else:
|
67
|
+
break
|
68
|
+
|
69
|
+
def update_rate_limit(
|
70
|
+
self, request_datetime_header, total_token_usage: int = None
|
71
|
+
):
|
72
|
+
# rate limiter tokens only tracks if there are token usage info
|
73
|
+
# otherwise, tracks requests num
|
74
|
+
date_format = "%a, %d %b %Y %H:%M:%S GMT" # the format of the date string according to RFC 1123
|
75
|
+
# (in http response header)
|
76
|
+
dt = datetime.strptime(request_datetime_header, date_format)
|
77
|
+
dt = dt.replace(tzinfo=timezone.utc)
|
78
|
+
request_timestamp = dt.timestamp()
|
79
|
+
|
80
|
+
if total_token_usage:
|
81
|
+
complete_request_info = CompleteRequestTokenInfo(
|
82
|
+
timestamp=request_timestamp, token_usage=total_token_usage
|
83
|
+
)
|
84
|
+
else:
|
85
|
+
complete_request_info = CompleteRequestInfo(
|
86
|
+
timestamp=request_timestamp
|
87
|
+
)
|
88
|
+
self.append_complete_request_token_info(complete_request_info)
|
89
|
+
|
90
|
+
def check_availability(
|
91
|
+
self, request_token_len: int = 0, estimated_output_len: int = 0
|
92
|
+
):
|
93
|
+
if self.remaining_tokens is not None:
|
94
|
+
if (
|
95
|
+
request_token_len + estimated_output_len
|
96
|
+
> self.remaining_tokens
|
97
|
+
):
|
98
|
+
return False
|
99
|
+
if self.remaining_requests is not None:
|
100
|
+
if self.remaining_requests <= 0:
|
101
|
+
return False
|
102
|
+
return True
|
103
|
+
|
104
|
+
|
105
|
+
class RateLimitError(Exception):
|
106
|
+
def __init__(self, message, input_token_len, estimated_output_len):
|
107
|
+
super().__init__(message)
|
108
|
+
self.requested_tokens = input_token_len + estimated_output_len
|
@@ -0,0 +1,37 @@
|
|
1
|
+
class Service:
|
2
|
+
|
3
|
+
def list_tasks(self):
|
4
|
+
pass
|
5
|
+
|
6
|
+
|
7
|
+
def register_service(cls):
|
8
|
+
original_init = cls.__init__
|
9
|
+
|
10
|
+
def wrapped_init(self, *args, **kwargs):
|
11
|
+
original_init(self, *args, **kwargs)
|
12
|
+
service_name = self.name
|
13
|
+
ServiceSetting().add_service(self, service_name)
|
14
|
+
|
15
|
+
cls.__init__ = wrapped_init
|
16
|
+
return cls
|
17
|
+
|
18
|
+
|
19
|
+
class ServiceSetting:
|
20
|
+
_instance = None
|
21
|
+
services = {}
|
22
|
+
|
23
|
+
def __new__(cls):
|
24
|
+
if cls._instance is None:
|
25
|
+
cls._instance = super().__new__(cls)
|
26
|
+
return cls._instance
|
27
|
+
|
28
|
+
def add_service(self, service: Service, name: str = None):
|
29
|
+
if name:
|
30
|
+
if self.services.get(name):
|
31
|
+
raise ValueError(
|
32
|
+
"Invalid name. There is a service using the name, please change a name."
|
33
|
+
)
|
34
|
+
self.services[name] = service
|
35
|
+
else:
|
36
|
+
name = service.__class__.__name__ + "_" + str(len(self.services))
|
37
|
+
self.services[name] = service
|
@@ -0,0 +1,131 @@
|
|
1
|
+
import inspect
|
2
|
+
import re
|
3
|
+
import warnings
|
4
|
+
from os import getenv
|
5
|
+
|
6
|
+
from .service import ServiceSetting
|
7
|
+
|
8
|
+
imported_services = {}
|
9
|
+
|
10
|
+
|
11
|
+
def match_service(service_name: str, **kwargs):
|
12
|
+
service_name = service_name.lower()
|
13
|
+
|
14
|
+
def check_key_match(key1, key2):
|
15
|
+
if key1 is not None:
|
16
|
+
key1 = getenv(key1) if getenv(key1) else key1
|
17
|
+
if key2 is not None:
|
18
|
+
key2 = getenv(key2) if getenv(key2) else key2
|
19
|
+
return key1 == key2
|
20
|
+
|
21
|
+
if service_name == "openai":
|
22
|
+
from lionagi.integrations.services import OpenAIService
|
23
|
+
|
24
|
+
api_key = kwargs.get("api_key")
|
25
|
+
openai_organization = kwargs.get("openai_organization")
|
26
|
+
openai_project = kwargs.get("openai_project")
|
27
|
+
|
28
|
+
for service in ServiceSetting.services.values():
|
29
|
+
if isinstance(service, OpenAIService):
|
30
|
+
if (
|
31
|
+
check_key_match(service.api_key, api_key)
|
32
|
+
and check_key_match(
|
33
|
+
service.openai_organization, openai_organization
|
34
|
+
)
|
35
|
+
and check_key_match(service.openai_project, openai_project)
|
36
|
+
):
|
37
|
+
return service
|
38
|
+
|
39
|
+
# when no matching
|
40
|
+
return OpenAIService(
|
41
|
+
api_key=api_key,
|
42
|
+
openai_organization=openai_organization,
|
43
|
+
openai_project=openai_project,
|
44
|
+
)
|
45
|
+
|
46
|
+
elif service_name == "anthropic":
|
47
|
+
from lionagi.integrations.services import AnthropicService
|
48
|
+
|
49
|
+
api_key = kwargs.get("api_key")
|
50
|
+
api_version = kwargs.get("api_version", "2023-06-01")
|
51
|
+
|
52
|
+
for service in ServiceSetting.services.values():
|
53
|
+
if isinstance(service, AnthropicService):
|
54
|
+
if check_key_match(
|
55
|
+
service.api_key, api_key
|
56
|
+
) and check_key_match(service.api_version, api_version):
|
57
|
+
return service
|
58
|
+
|
59
|
+
# when no matching
|
60
|
+
return AnthropicService(
|
61
|
+
api_key=api_key,
|
62
|
+
api_version=api_version,
|
63
|
+
)
|
64
|
+
|
65
|
+
elif service_name == "perplexity":
|
66
|
+
from lionagi.integrations.services import PerplexityService
|
67
|
+
|
68
|
+
api_key = kwargs.get("api_key")
|
69
|
+
api_version = kwargs.get("api_version", "2023-06-01")
|
70
|
+
|
71
|
+
for service in ServiceSetting.services.values():
|
72
|
+
if isinstance(service, PerplexityService):
|
73
|
+
if check_key_match(service.api_key, api_key):
|
74
|
+
return service
|
75
|
+
|
76
|
+
# when no matching
|
77
|
+
return PerplexityService(api_key=api_key)
|
78
|
+
|
79
|
+
elif service_name == "groq":
|
80
|
+
from lionagi.integrations.services import GroqService
|
81
|
+
|
82
|
+
api_key = kwargs.get("api_key")
|
83
|
+
for service in ServiceSetting.services.values():
|
84
|
+
if isinstance(service, GroqService):
|
85
|
+
if check_key_match(service.api_key, api_key):
|
86
|
+
return service
|
87
|
+
|
88
|
+
# when no matching
|
89
|
+
return GroqService(api_key=api_key)
|
90
|
+
|
91
|
+
raise ValueError(f"Service {service_name} is not available")
|
92
|
+
|
93
|
+
|
94
|
+
def match_task_method(task_name, service_obj):
|
95
|
+
def clean_name(name):
|
96
|
+
return re.sub(r"[^a-zA-Z0-9]", "", name).lower()
|
97
|
+
|
98
|
+
task_name = clean_name(task_name)
|
99
|
+
if task_name.endswith("s"):
|
100
|
+
task_name = task_name[:-1]
|
101
|
+
methods = [
|
102
|
+
method_name
|
103
|
+
for method_name in dir(service_obj)
|
104
|
+
if task_name in clean_name(method_name)
|
105
|
+
]
|
106
|
+
return methods
|
107
|
+
|
108
|
+
|
109
|
+
def match_parameters(method, model, interval_tokens, interval_requests):
|
110
|
+
method_params = inspect.signature(method).parameters
|
111
|
+
kwargs = {}
|
112
|
+
if "model" in method_params:
|
113
|
+
kwargs["model"] = model
|
114
|
+
if "limit_requests" in method_params:
|
115
|
+
kwargs["limit_requests"] = interval_requests
|
116
|
+
else:
|
117
|
+
# no limit_requests but interval_requests provided
|
118
|
+
if interval_requests is not None:
|
119
|
+
warnings.warn(
|
120
|
+
f"The system does not support tracking limit requests per minute for {method.__name__}"
|
121
|
+
)
|
122
|
+
if "limit_tokens" in method_params:
|
123
|
+
kwargs["limit_tokens"] = interval_tokens
|
124
|
+
else:
|
125
|
+
# no limit_tokens but interval_tokens provided
|
126
|
+
if interval_tokens is not None:
|
127
|
+
warnings.warn(
|
128
|
+
f"The system does not support tracking limit tokens per minute for {method.__name__}"
|
129
|
+
)
|
130
|
+
|
131
|
+
return kwargs
|
@@ -0,0 +1,72 @@
|
|
1
|
+
import asyncio
|
2
|
+
from functools import wraps
|
3
|
+
|
4
|
+
from .rate_limiter import RateLimitError
|
5
|
+
|
6
|
+
|
7
|
+
def invoke_retry(
|
8
|
+
max_retries: int = 3, base_delay: int = 1, max_delay: int = 60
|
9
|
+
):
|
10
|
+
def decorator(func):
|
11
|
+
@wraps(func)
|
12
|
+
async def wrapper(request_model, *args, **kwargs):
|
13
|
+
if max_retries <= 0:
|
14
|
+
raise ValueError(
|
15
|
+
"Invalid max number of retries. It must a positive integer."
|
16
|
+
)
|
17
|
+
|
18
|
+
for retry in range(max_retries + 1):
|
19
|
+
try:
|
20
|
+
response_body = await func(request_model, *args, **kwargs)
|
21
|
+
return response_body
|
22
|
+
except Exception as e:
|
23
|
+
# Last try used
|
24
|
+
if retry == max_retries:
|
25
|
+
raise e
|
26
|
+
|
27
|
+
# RateLimitError for Model only
|
28
|
+
if isinstance(e, RateLimitError):
|
29
|
+
if (
|
30
|
+
e.requested_tokens
|
31
|
+
> request_model.rate_limiter.limit_tokens
|
32
|
+
):
|
33
|
+
raise ValueError(
|
34
|
+
"Requested tokens exceed the model's token limit. "
|
35
|
+
"Please modify the input, adjust the expected output tokens, or increase the token limit. "
|
36
|
+
f"The current token limit is {request_model.rate_limiter.limit_tokens} tokens."
|
37
|
+
)
|
38
|
+
|
39
|
+
while request_model.rate_limiter.unreleased_requests:
|
40
|
+
await asyncio.sleep(2)
|
41
|
+
request_model.rate_limiter.release_tokens()
|
42
|
+
if request_model.rate_limiter.check_availability(
|
43
|
+
request_token_len=e.requested_tokens
|
44
|
+
):
|
45
|
+
break
|
46
|
+
|
47
|
+
elif error_code := getattr(
|
48
|
+
e, "status", None
|
49
|
+
): # http request errors
|
50
|
+
if (
|
51
|
+
error_code == 429
|
52
|
+
and "exceeded your current quota" in str(e)
|
53
|
+
): # RateLimitError (account quota reached)
|
54
|
+
raise e
|
55
|
+
if (
|
56
|
+
error_code == 429 or error_code >= 500
|
57
|
+
): # ServerError
|
58
|
+
if retry_after := getattr(e, "headers", {}).get(
|
59
|
+
"Retry-After"
|
60
|
+
):
|
61
|
+
if retry_after.isdigit():
|
62
|
+
await asyncio.sleep(int(retry_after))
|
63
|
+
continue
|
64
|
+
|
65
|
+
wait_time = min(base_delay * (2**retry), max_delay)
|
66
|
+
await asyncio.sleep(wait_time)
|
67
|
+
else:
|
68
|
+
raise e
|
69
|
+
|
70
|
+
return wrapper
|
71
|
+
|
72
|
+
return decorator
|
@@ -0,0 +1,51 @@
|
|
1
|
+
from abc import abstractmethod
|
2
|
+
|
3
|
+
import tiktoken
|
4
|
+
from pydantic import BaseModel, Field, field_validator
|
5
|
+
|
6
|
+
|
7
|
+
class TokenCalculator(BaseModel):
|
8
|
+
|
9
|
+
@abstractmethod
|
10
|
+
def calculate(self, *args, **kwargs): ...
|
11
|
+
|
12
|
+
|
13
|
+
class TiktokenCalculator(TokenCalculator):
|
14
|
+
encoding_name: str = Field(
|
15
|
+
description="Encoding for converting text to tokens. "
|
16
|
+
"Input encoding name or a specific OpenAI model",
|
17
|
+
examples=["o200k_base", "gpt-4o"],
|
18
|
+
)
|
19
|
+
|
20
|
+
@field_validator("encoding_name")
|
21
|
+
@classmethod
|
22
|
+
def get_encoding_name(cls, value: str) -> str:
|
23
|
+
try:
|
24
|
+
enc = tiktoken.encoding_for_model(value)
|
25
|
+
return enc.name
|
26
|
+
except:
|
27
|
+
try:
|
28
|
+
tiktoken.get_encoding(value)
|
29
|
+
return value
|
30
|
+
except:
|
31
|
+
return "o200k_base"
|
32
|
+
|
33
|
+
def encode(self, text: str) -> list[int]:
|
34
|
+
enc = tiktoken.get_encoding(self.encoding_name)
|
35
|
+
return enc.encode(text=text)
|
36
|
+
|
37
|
+
def calculate(self, text: str) -> int:
|
38
|
+
enc_text = self.encode(text)
|
39
|
+
return len(enc_text)
|
40
|
+
|
41
|
+
def tokenize(
|
42
|
+
self, text: str, decode_byte_str: bool = False, decoder: str = "utf-8"
|
43
|
+
):
|
44
|
+
enc = tiktoken.get_encoding(self.encoding_name)
|
45
|
+
enc_text = self.encode(text)
|
46
|
+
tokens = [
|
47
|
+
enc.decode_single_token_bytes(token_id) for token_id in enc_text
|
48
|
+
]
|
49
|
+
if decode_byte_str:
|
50
|
+
tokens = [token.decode(decoder) for token in tokens]
|
51
|
+
return tokens
|
lionagi/settings.py
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
from datetime import timezone
|
2
|
+
from enum import Enum
|
3
|
+
|
4
|
+
from lionagi.protocols.configs import (
|
5
|
+
BranchConfig,
|
6
|
+
LionIDConfig,
|
7
|
+
MessageConfig,
|
8
|
+
RetryConfig,
|
9
|
+
TimedFuncCallConfig,
|
10
|
+
iModelConfig,
|
11
|
+
)
|
12
|
+
from lionagi.protocols.configs.log_config import LogConfig
|
13
|
+
|
14
|
+
|
15
|
+
class BaseSystemFields(str, Enum):
|
16
|
+
ln_id = "ln_id"
|
17
|
+
TIMESTAMP = "timestamp"
|
18
|
+
METADATA = "metadata"
|
19
|
+
EXTRA_FIELDS = "extra_fields"
|
20
|
+
CONTENT = "content"
|
21
|
+
CREATED = "created"
|
22
|
+
EMBEDDING = "embedding"
|
23
|
+
|
24
|
+
|
25
|
+
DEFAULT_ID_CONFIG = LionIDConfig(
|
26
|
+
n=36,
|
27
|
+
random_hyphen=True,
|
28
|
+
num_hyphens=4,
|
29
|
+
hyphen_start_index=6,
|
30
|
+
hyphen_end_index=-6,
|
31
|
+
prefix="ao",
|
32
|
+
postfix="",
|
33
|
+
)
|
34
|
+
|
35
|
+
DEFAULT_TIMED_FUNC_CALL_CONFIG = TimedFuncCallConfig(
|
36
|
+
initial_delay=0,
|
37
|
+
retry_timeout=None,
|
38
|
+
retry_timing=False,
|
39
|
+
error_msg=None,
|
40
|
+
error_map=None,
|
41
|
+
)
|
42
|
+
|
43
|
+
DEFAULT_RETRY_CONFIG = RetryConfig(
|
44
|
+
num_retries=0,
|
45
|
+
initial_delay=0,
|
46
|
+
retry_delay=0,
|
47
|
+
backoff_factor=1,
|
48
|
+
retry_timeout=None,
|
49
|
+
retry_timing=False,
|
50
|
+
verbose_retry=False,
|
51
|
+
error_msg=None,
|
52
|
+
error_map=None,
|
53
|
+
)
|
54
|
+
|
55
|
+
|
56
|
+
DEFAULT_CHAT_CONFIG = iModelConfig(
|
57
|
+
provider="openai",
|
58
|
+
task="chat",
|
59
|
+
model="gpt-4o",
|
60
|
+
api_key="OPENAI_API_KEY",
|
61
|
+
)
|
62
|
+
|
63
|
+
|
64
|
+
DEFAULT_RETRY_iMODEL_CONFIG = iModelConfig(
|
65
|
+
provider="openai",
|
66
|
+
task="chat",
|
67
|
+
model="gpt-4o-mini",
|
68
|
+
api_key="OPENAI_API_KEY",
|
69
|
+
)
|
70
|
+
|
71
|
+
|
72
|
+
DEFAULT_MESSAGE_CONFIG = MessageConfig(
|
73
|
+
validation_mode="raise",
|
74
|
+
auto_retries=False,
|
75
|
+
max_retries=0,
|
76
|
+
allow_actions=True,
|
77
|
+
auto_invoke_action=True,
|
78
|
+
)
|
79
|
+
|
80
|
+
|
81
|
+
DEFAULT_MESSAGE_LOG_CONFIG = LogConfig(
|
82
|
+
persist_dir="./data/logs",
|
83
|
+
subfolder="messages",
|
84
|
+
file_prefix="message_",
|
85
|
+
capacity=128,
|
86
|
+
auto_save_on_exit=True,
|
87
|
+
clear_after_dump=True,
|
88
|
+
use_timestamp=True,
|
89
|
+
extension=".csv",
|
90
|
+
)
|
91
|
+
|
92
|
+
DEFAULT_ACTION_LOG_CONFIG = LogConfig(
|
93
|
+
persist_dir="./data/logs",
|
94
|
+
subfolder="actions",
|
95
|
+
file_prefix="action_",
|
96
|
+
capacity=128,
|
97
|
+
auto_save_on_exit=True,
|
98
|
+
clear_after_dump=True,
|
99
|
+
use_timestamp=True,
|
100
|
+
extension=".csv",
|
101
|
+
)
|
102
|
+
|
103
|
+
DEFAULT_BRANCH_CONFIG = BranchConfig(
|
104
|
+
name=None,
|
105
|
+
user=None,
|
106
|
+
message_log_config=DEFAULT_MESSAGE_LOG_CONFIG,
|
107
|
+
action_log_config=DEFAULT_ACTION_LOG_CONFIG,
|
108
|
+
message_config=DEFAULT_MESSAGE_CONFIG,
|
109
|
+
auto_register_tools=True,
|
110
|
+
action_call_config=DEFAULT_TIMED_FUNC_CALL_CONFIG,
|
111
|
+
imodel_config=DEFAULT_CHAT_CONFIG,
|
112
|
+
retry_imodel_config=DEFAULT_RETRY_iMODEL_CONFIG,
|
113
|
+
)
|
114
|
+
|
115
|
+
|
116
|
+
DEFAULT_TIMEZONE = timezone.utc
|
117
|
+
BASE_LION_FIELDS = set(BaseSystemFields.__members__.values())
|
118
|
+
|
119
|
+
|
120
|
+
class Settings:
|
121
|
+
|
122
|
+
class Config:
|
123
|
+
ID: LionIDConfig = DEFAULT_ID_CONFIG
|
124
|
+
RETRY: RetryConfig = DEFAULT_RETRY_CONFIG
|
125
|
+
TIMED_CALL: TimedFuncCallConfig = DEFAULT_TIMED_FUNC_CALL_CONFIG
|
126
|
+
TIMEZONE: timezone = DEFAULT_TIMEZONE
|
127
|
+
|
128
|
+
class Branch:
|
129
|
+
BRANCH: BranchConfig = DEFAULT_BRANCH_CONFIG
|
130
|
+
|
131
|
+
class iModel:
|
132
|
+
CHAT: dict = {"model": "openai/gpt-4o"}
|
133
|
+
PARSE: iModelConfig = DEFAULT_CHAT_CONFIG
|
134
|
+
|
135
|
+
|
136
|
+
# File: autoos/setting.py
|
@@ -0,0 +1,53 @@
|
|
1
|
+
from typing import ClassVar
|
2
|
+
|
3
|
+
from pydantic import model_validator
|
4
|
+
|
5
|
+
from lionagi.fields.instruct import Instruct, InstructResponse
|
6
|
+
|
7
|
+
from ..protocols.types import BaseLionModel
|
8
|
+
from ..session.types import Branch, Session
|
9
|
+
from .params import StrategyParams
|
10
|
+
|
11
|
+
|
12
|
+
class StrategyExecutor(BaseLionModel):
|
13
|
+
"""Base class for different execution strategies.
|
14
|
+
|
15
|
+
Each concrete executor should implement `execute()` to run instructions
|
16
|
+
according to a specific strategy (e.g., sequential, concurrent, chunked).
|
17
|
+
"""
|
18
|
+
|
19
|
+
session: Session = None
|
20
|
+
branch: Branch = None
|
21
|
+
execute_branch: Branch = None
|
22
|
+
params: StrategyParams = None
|
23
|
+
params_cls: ClassVar[type[StrategyParams]] = StrategyParams
|
24
|
+
|
25
|
+
@model_validator(mode="before")
|
26
|
+
def validate_execution_config(cls, values: dict) -> dict:
|
27
|
+
params_cls = values.get("params_cls", cls.params_cls)
|
28
|
+
params = values.get("params", None)
|
29
|
+
|
30
|
+
if isinstance(params, dict):
|
31
|
+
params = params_cls(**params)
|
32
|
+
if not isinstance(params, StrategyParams):
|
33
|
+
params = params_cls(**values)
|
34
|
+
|
35
|
+
session: Session = values.get("session", params.session)
|
36
|
+
branch = values.get("branch", params.branch)
|
37
|
+
execute_branch = values.get("execute_branch", None) or session.split(
|
38
|
+
branch
|
39
|
+
)
|
40
|
+
|
41
|
+
return {
|
42
|
+
"params": params,
|
43
|
+
"session": session,
|
44
|
+
"branch": branch,
|
45
|
+
"execute_branch": execute_branch,
|
46
|
+
"params_cls": params_cls,
|
47
|
+
}
|
48
|
+
|
49
|
+
async def execute(
|
50
|
+
self, res
|
51
|
+
) -> tuple[list[Instruct], list[InstructResponse]]:
|
52
|
+
"""Run the instructions based on the strategy implemented by subclasses."""
|
53
|
+
raise NotImplementedError
|
@@ -0,0 +1,71 @@
|
|
1
|
+
from lionagi.fields.instruct import Instruct, InstructResponse
|
2
|
+
from lionagi.session.types import Branch
|
3
|
+
from lionagi.utils import alcall, to_list
|
4
|
+
|
5
|
+
from .base import StrategyExecutor
|
6
|
+
|
7
|
+
|
8
|
+
class ConcurrentExecutor(StrategyExecutor):
|
9
|
+
"""Executor for concurrent instruction processing.
|
10
|
+
|
11
|
+
Runs each instruction in parallel without chunking.
|
12
|
+
"""
|
13
|
+
|
14
|
+
async def execute_instruct(
|
15
|
+
self, ins: Instruct, branch: Branch, auto_run: bool, **kwargs
|
16
|
+
):
|
17
|
+
async def run(ins_):
|
18
|
+
if self.params.verbose:
|
19
|
+
print(f"\n-----Running sub-instruction-----\n{ins_.msg}")
|
20
|
+
b_ = self.session.split(branch)
|
21
|
+
return await self.execute_instruct(ins_, b_, False, **kwargs)
|
22
|
+
|
23
|
+
config = {**ins.model_dump(), **kwargs}
|
24
|
+
res = await branch.instruct(**config)
|
25
|
+
branch.msgs.logger.dump()
|
26
|
+
instructs = (
|
27
|
+
res.instruct_models if hasattr(res, "instruct_models") else []
|
28
|
+
)
|
29
|
+
|
30
|
+
if auto_run and instructs:
|
31
|
+
ress = await alcall(instructs, run)
|
32
|
+
response_ = []
|
33
|
+
for r in ress:
|
34
|
+
if isinstance(r, list):
|
35
|
+
response_.extend(r)
|
36
|
+
else:
|
37
|
+
response_.append(r)
|
38
|
+
response_.insert(0, res)
|
39
|
+
return response_
|
40
|
+
return res
|
41
|
+
|
42
|
+
async def instruct_concurrent_single(
|
43
|
+
self, ins_: Instruct, execute_branch: Branch
|
44
|
+
) -> InstructResponse:
|
45
|
+
if self.params.verbose:
|
46
|
+
print(f"\n-----Running instruction-----\n{ins_.msg}")
|
47
|
+
b_ = self.session.split(execute_branch)
|
48
|
+
response = await self.execute_instruct(
|
49
|
+
ins_, b_, self.params.auto_run, **self.params.execute_kwargs
|
50
|
+
)
|
51
|
+
return InstructResponse(instruct=ins_, response=response)
|
52
|
+
|
53
|
+
async def execute(
|
54
|
+
self, res
|
55
|
+
) -> tuple[list[Instruct], list[InstructResponse]]:
|
56
|
+
async with self.session.branches:
|
57
|
+
response_ = []
|
58
|
+
instructs = []
|
59
|
+
if hasattr(res, "instruct_models"):
|
60
|
+
instructs: list[Instruct] = res.instruct_models
|
61
|
+
ress = await alcall(
|
62
|
+
instructs,
|
63
|
+
self.instruct_concurrent_single,
|
64
|
+
execute_branch=self.execute_branch,
|
65
|
+
)
|
66
|
+
ress = to_list(ress, dropna=True, flatten=True)
|
67
|
+
response_ = [r for r in ress if not isinstance(r, (str, dict))]
|
68
|
+
response_ = to_list(
|
69
|
+
response_, unique=True, dropna=True, flatten=True
|
70
|
+
)
|
71
|
+
return instructs, response_
|