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,20 @@
|
|
1
|
+
from enum import Enum
|
2
|
+
from typing import Optional
|
3
|
+
|
4
|
+
from pydantic import Field
|
5
|
+
|
6
|
+
from ..data_models import OpenAIEndpointRequestBody
|
7
|
+
|
8
|
+
|
9
|
+
class Model(str, Enum):
|
10
|
+
LATEST = "text-moderation-latest"
|
11
|
+
STABLE = "text-moderation-stable"
|
12
|
+
|
13
|
+
|
14
|
+
class OpenAIModerationRequestBody(OpenAIEndpointRequestBody):
|
15
|
+
input: list | str = Field(description="The input text to classify")
|
16
|
+
|
17
|
+
model: Model | None = Field(
|
18
|
+
"text-moderation-latest",
|
19
|
+
description="Two content moderations models are available: text-moderation-stable and text-moderation-latest.",
|
20
|
+
)
|
@@ -0,0 +1,139 @@
|
|
1
|
+
from typing import List
|
2
|
+
|
3
|
+
from pydantic import BaseModel, Field
|
4
|
+
|
5
|
+
from ..data_models import OpenAIEndpointResponseBody
|
6
|
+
|
7
|
+
|
8
|
+
class Categories(BaseModel):
|
9
|
+
hate: bool = Field(
|
10
|
+
description="Content that expresses, incites, or promotes hate based on race, gender, ethnicity, "
|
11
|
+
"religion, nationality, sexual orientation, disability status, or caste. Hateful "
|
12
|
+
"content aimed at non-protected groups (e.g., chess players) is harassment."
|
13
|
+
)
|
14
|
+
|
15
|
+
hate_threatening: bool = Field(
|
16
|
+
alias="hate/threatening",
|
17
|
+
description="Hateful content that also includes violence or serious harm towards the targeted "
|
18
|
+
"group based on race, gender, ethnicity, religion, nationality, sexual orientation, "
|
19
|
+
"disability status, or caste.",
|
20
|
+
)
|
21
|
+
|
22
|
+
harassment: bool = Field(
|
23
|
+
description="Content that expresses, incites, or promotes harassing language towards any target."
|
24
|
+
)
|
25
|
+
|
26
|
+
harassment_threatening: bool = Field(
|
27
|
+
alias="harassment/threatening",
|
28
|
+
description="Harassment content that also includes violence or serious harm towards any target.",
|
29
|
+
)
|
30
|
+
|
31
|
+
self_harm: bool = Field(
|
32
|
+
alias="self-harm",
|
33
|
+
description="Content that promotes, encourages, or depicts acts of self-harm, such as suicide, "
|
34
|
+
"cutting, and eating disorders.",
|
35
|
+
)
|
36
|
+
|
37
|
+
self_harm_intent: bool = Field(
|
38
|
+
alias="self-harm/intent",
|
39
|
+
description="Content where the speaker expresses that they are engaging or intend to engage in "
|
40
|
+
"acts of self-harm, such as suicide, cutting, and eating disorders.",
|
41
|
+
)
|
42
|
+
|
43
|
+
self_harm_instructions: bool = Field(
|
44
|
+
alias="self-harm/instructions",
|
45
|
+
description="Content that encourages performing acts of self-harm, such as suicide, cutting, "
|
46
|
+
"and eating disorders, or that gives instructions or advice on how to commit such acts.",
|
47
|
+
)
|
48
|
+
|
49
|
+
sexual: bool = Field(
|
50
|
+
description="Content meant to arouse sexual excitement, such as the description of sexual activity, "
|
51
|
+
"or that promotes sexual services (excluding sex education and wellness)."
|
52
|
+
)
|
53
|
+
|
54
|
+
sexual_minors: bool = Field(
|
55
|
+
alias="sexual/minors",
|
56
|
+
description="Sexual content that includes an individual who is under 18 years old.",
|
57
|
+
)
|
58
|
+
|
59
|
+
violence: bool = Field(
|
60
|
+
description="Content that depicts death, violence, or physical injury."
|
61
|
+
)
|
62
|
+
|
63
|
+
violence_graphic: bool = Field(
|
64
|
+
alias="violence/graphic",
|
65
|
+
description="Content that depicts death, violence, or physical injury in graphic detail.",
|
66
|
+
)
|
67
|
+
|
68
|
+
|
69
|
+
class CategoryScores(BaseModel):
|
70
|
+
hate: float = Field(description="The score for the category 'hate'.")
|
71
|
+
|
72
|
+
hate_threatening: float = Field(
|
73
|
+
alias="hate/threatening",
|
74
|
+
description="The score for the category 'hate/threatening'.",
|
75
|
+
)
|
76
|
+
|
77
|
+
harassment: float = Field(
|
78
|
+
description="The score for the category 'harassment'."
|
79
|
+
)
|
80
|
+
|
81
|
+
harassment_threatening: float = Field(
|
82
|
+
alias="harassment/threatening",
|
83
|
+
description="The score for the category 'harassment/threatening'.",
|
84
|
+
)
|
85
|
+
|
86
|
+
self_harm: float = Field(
|
87
|
+
alias="self-harm",
|
88
|
+
description="The score for the category 'self-harm'.",
|
89
|
+
)
|
90
|
+
|
91
|
+
self_harm_intent: float = Field(
|
92
|
+
alias="self-harm/intent",
|
93
|
+
description="The score for the category 'self-harm/intent'.",
|
94
|
+
)
|
95
|
+
|
96
|
+
self_harm_instructions: float = Field(
|
97
|
+
alias="self-harm/instructions",
|
98
|
+
description="The score for the category 'self-harm/instructions'.",
|
99
|
+
)
|
100
|
+
|
101
|
+
sexual: float = Field(description="The score for the category 'sexual'.")
|
102
|
+
|
103
|
+
sexual_minors: float = Field(
|
104
|
+
alias="sexual/minors",
|
105
|
+
description="The score for the category 'sexual/minors'.",
|
106
|
+
)
|
107
|
+
|
108
|
+
violence: float = Field(
|
109
|
+
description="The score for the category 'violence'."
|
110
|
+
)
|
111
|
+
|
112
|
+
violence_graphic: float = Field(
|
113
|
+
alias="violence/graphic",
|
114
|
+
description="The score for the category 'violence/graphic'.",
|
115
|
+
)
|
116
|
+
|
117
|
+
|
118
|
+
class Result(BaseModel):
|
119
|
+
flagged: bool = Field(
|
120
|
+
description="Whether the content violates OpenAI's usage policies."
|
121
|
+
)
|
122
|
+
|
123
|
+
categories: Categories = Field(
|
124
|
+
description="A dictionary of per-category binary content policy violation flags.",
|
125
|
+
)
|
126
|
+
|
127
|
+
category_scores: CategoryScores = Field(
|
128
|
+
description="A dictionary of per-category raw scores output by the model."
|
129
|
+
)
|
130
|
+
|
131
|
+
|
132
|
+
class OpenAIModerationResponseBody(OpenAIEndpointResponseBody):
|
133
|
+
id: str = Field(
|
134
|
+
description="The unique identifier for the moderation request."
|
135
|
+
)
|
136
|
+
model: str = Field(
|
137
|
+
description="The model used to generate the moderation results."
|
138
|
+
)
|
139
|
+
results: list[Result] = Field(description="A list of moderation objects.")
|
@@ -0,0 +1,19 @@
|
|
1
|
+
from .add_upload_part import (
|
2
|
+
OpenAIUploadPartPathParam,
|
3
|
+
OpenAIUploadPartRequestBody,
|
4
|
+
)
|
5
|
+
from .cancel_upload import OpenAICancelUploadPathParam
|
6
|
+
from .complete_upload import (
|
7
|
+
OpenAICompleteUploadPathParam,
|
8
|
+
OpenAICompleteUploadRequestBody,
|
9
|
+
)
|
10
|
+
from .create_upload import OpenAIUploadRequestBody
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
"OpenAIUploadRequestBody",
|
14
|
+
"OpenAIUploadPartPathParam",
|
15
|
+
"OpenAIUploadPartRequestBody",
|
16
|
+
"OpenAICompleteUploadPathParam",
|
17
|
+
"OpenAICompleteUploadRequestBody",
|
18
|
+
"OpenAICancelUploadPathParam",
|
19
|
+
]
|
@@ -0,0 +1,11 @@
|
|
1
|
+
from pydantic import Field
|
2
|
+
|
3
|
+
from ..data_models import OpenAIEndpointPathParam, OpenAIEndpointRequestBody
|
4
|
+
|
5
|
+
|
6
|
+
class OpenAIUploadPartPathParam(OpenAIEndpointPathParam):
|
7
|
+
upload_id: str = Field(description="The ID of the Upload.")
|
8
|
+
|
9
|
+
|
10
|
+
class OpenAIUploadPartRequestBody(OpenAIEndpointRequestBody):
|
11
|
+
data: bytes = Field(description="The chunk of bytes for this Part.")
|
@@ -0,0 +1,18 @@
|
|
1
|
+
from typing import List, Optional
|
2
|
+
|
3
|
+
from pydantic import Field
|
4
|
+
|
5
|
+
from ..data_models import OpenAIEndpointPathParam, OpenAIEndpointRequestBody
|
6
|
+
|
7
|
+
|
8
|
+
class OpenAICompleteUploadPathParam(OpenAIEndpointPathParam):
|
9
|
+
upload_id: str = Field(description="The ID of the Upload.")
|
10
|
+
|
11
|
+
|
12
|
+
class OpenAICompleteUploadRequestBody(OpenAIEndpointRequestBody):
|
13
|
+
part_ids: list[str] = Field(description="The ordered list of Part IDs.")
|
14
|
+
|
15
|
+
md5: str | None = Field(
|
16
|
+
description="The optional md5 checksum for the file contents to verify "
|
17
|
+
"if the bytes uploaded matches what you expect."
|
18
|
+
)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
from pydantic import Field
|
2
|
+
|
3
|
+
from ..data_models import OpenAIEndpointRequestBody
|
4
|
+
|
5
|
+
|
6
|
+
class OpenAIUploadRequestBody(OpenAIEndpointRequestBody):
|
7
|
+
filename: str = Field(description="The name of the file to upload.")
|
8
|
+
|
9
|
+
purpose: str = Field(
|
10
|
+
description="The intended purpose of the uploaded file."
|
11
|
+
)
|
12
|
+
|
13
|
+
bytes: int = Field(
|
14
|
+
description="The intended number of bytes to be uploaded."
|
15
|
+
)
|
16
|
+
|
17
|
+
mime_type: str = Field(description="The MIME type of the file.")
|
@@ -0,0 +1,52 @@
|
|
1
|
+
from typing import Optional
|
2
|
+
|
3
|
+
from pydantic import Field
|
4
|
+
|
5
|
+
from ..data_models import OpenAIEndpointResponseBody
|
6
|
+
from ..files.file_models import OpenAIFileResponseBody, Purpose
|
7
|
+
|
8
|
+
|
9
|
+
class OpenAIUploadResponseBody(OpenAIEndpointResponseBody):
|
10
|
+
id: str = Field(description="The Upload unique identifier.")
|
11
|
+
|
12
|
+
created_at: int = Field(
|
13
|
+
description="The Unix timestamp (in seconds) for when the Upload was created.",
|
14
|
+
)
|
15
|
+
|
16
|
+
filename: str = Field(description="The name of the file to be uploaded.")
|
17
|
+
|
18
|
+
bytes: int = Field(
|
19
|
+
description="The intended number of bytes to be uploaded."
|
20
|
+
)
|
21
|
+
|
22
|
+
purpose: Purpose = Field(description="The intended purpose of the file.")
|
23
|
+
|
24
|
+
status: str = Field(description="The status of the Upload.")
|
25
|
+
|
26
|
+
expires_at: int = Field(
|
27
|
+
description="The Unix timestamp (in seconds) for when the Upload expires."
|
28
|
+
)
|
29
|
+
|
30
|
+
object: str = Field(
|
31
|
+
description="The object type, which is always 'upload'."
|
32
|
+
)
|
33
|
+
|
34
|
+
file: OpenAIFileResponseBody | None = Field(
|
35
|
+
None, description="The File object created after completion."
|
36
|
+
)
|
37
|
+
|
38
|
+
|
39
|
+
class OpenAIUploadPartResponseBody(OpenAIUploadResponseBody):
|
40
|
+
id: str = Field(description="The upload Part unique identifier.")
|
41
|
+
|
42
|
+
created_at: int = Field(
|
43
|
+
description="The Unix timestamp (in seconds) for when the Part was created.",
|
44
|
+
)
|
45
|
+
|
46
|
+
upload_id: str = Field(
|
47
|
+
description="The ID of the Upload object that this Part was added to."
|
48
|
+
)
|
49
|
+
|
50
|
+
object: str = Field(
|
51
|
+
description="The object type, which is always 'upload.part'."
|
52
|
+
)
|
@@ -0,0 +1,92 @@
|
|
1
|
+
import base64
|
2
|
+
import math
|
3
|
+
import os
|
4
|
+
from io import BytesIO
|
5
|
+
from typing import Literal
|
6
|
+
|
7
|
+
import aiohttp
|
8
|
+
import yaml
|
9
|
+
from PIL import Image
|
10
|
+
from pydantic import BaseModel, Field, field_validator
|
11
|
+
|
12
|
+
image_token_config_file_name = os.path.join(
|
13
|
+
os.path.dirname(__file__), "openai_image_token_data.yaml"
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
class OpenAIImageTokenCalculator(BaseModel):
|
18
|
+
model: str = Field(description="ID of the model to use.")
|
19
|
+
|
20
|
+
@field_validator("model")
|
21
|
+
@classmethod
|
22
|
+
def validate_model_image_function(cls, value: str):
|
23
|
+
with open(image_token_config_file_name) as file:
|
24
|
+
token_config = yaml.safe_load(file)
|
25
|
+
|
26
|
+
token_config = token_config.get(value, None)
|
27
|
+
|
28
|
+
if token_config is None:
|
29
|
+
raise ValueError("The model does not have vision capabilities.")
|
30
|
+
return value
|
31
|
+
|
32
|
+
@staticmethod
|
33
|
+
async def get_image_size(url: str):
|
34
|
+
if url.startswith("data:image/jpeg;base64,"):
|
35
|
+
# base64 encoded format
|
36
|
+
image_base64 = url.split("data:image/jpeg;base64,")[1]
|
37
|
+
image_base64.strip("{}")
|
38
|
+
image_data = base64.b64decode(image_base64)
|
39
|
+
image = Image.open(BytesIO(image_data))
|
40
|
+
else:
|
41
|
+
# image url
|
42
|
+
async with aiohttp.ClientSession() as client:
|
43
|
+
async with client.get(url=url) as response:
|
44
|
+
response.raise_for_status()
|
45
|
+
|
46
|
+
content = await response.read()
|
47
|
+
|
48
|
+
image = Image.open(BytesIO(content))
|
49
|
+
|
50
|
+
return image.size
|
51
|
+
|
52
|
+
async def calculate(
|
53
|
+
self, url: str, detail: Literal["low", "high", "auto"] = "auto"
|
54
|
+
):
|
55
|
+
if detail not in ["low", "high", "auto"]:
|
56
|
+
raise ValueError(
|
57
|
+
"Invalid detail option. Valid options are: low, high, auto"
|
58
|
+
)
|
59
|
+
|
60
|
+
with open(image_token_config_file_name) as file:
|
61
|
+
token_config = yaml.safe_load(file)
|
62
|
+
|
63
|
+
token_config = token_config.get(self.model, None)
|
64
|
+
|
65
|
+
if token_config is None:
|
66
|
+
raise ValueError("The model does not have vision capabilities.")
|
67
|
+
|
68
|
+
width, height = await self.get_image_size(url)
|
69
|
+
|
70
|
+
if detail == "low":
|
71
|
+
return token_config["base"]
|
72
|
+
if detail == "auto":
|
73
|
+
# TODO: check "auto" option condition
|
74
|
+
if width <= 512 and height <= 512:
|
75
|
+
return token_config["base"]
|
76
|
+
|
77
|
+
# Scale to fit within a 2048 x 2048 square
|
78
|
+
if max(width, height) > 2048:
|
79
|
+
scale_factor = 2048 / max(width, height)
|
80
|
+
width = int(width * scale_factor)
|
81
|
+
height = int(height * scale_factor)
|
82
|
+
|
83
|
+
# Scale such that the shortest side is 768px
|
84
|
+
if min(width, height) > 768:
|
85
|
+
scale_factor = 768 / min(width, height)
|
86
|
+
width = int(width * scale_factor)
|
87
|
+
height = int(height * scale_factor)
|
88
|
+
|
89
|
+
# Calculate the number of 512px squares
|
90
|
+
num_squares = math.ceil(width / 512) * math.ceil(height / 512)
|
91
|
+
|
92
|
+
return num_squares * token_config["tile"] + token_config["base"]
|
@@ -0,0 +1,12 @@
|
|
1
|
+
gpt-4o: 4096
|
2
|
+
gpt-4o-2024-05-13: 4096
|
3
|
+
gpt-4o-2024-08-06: 16384
|
4
|
+
gpt-4o-mini: 16384
|
5
|
+
gpt-4o-mini-2024-07-18: 16384
|
6
|
+
gpt-4-turbo: 4096
|
7
|
+
gpt-4-turbo-2024-04-09: 4096
|
8
|
+
gpt-4-turbo-preview: 4096
|
9
|
+
gpt-4-0125-preview: 4096
|
10
|
+
gpt-4-1106-preview: 4096
|
11
|
+
gpt-4: 8192
|
12
|
+
gpt-4-0613: 8192
|
@@ -0,0 +1,26 @@
|
|
1
|
+
model:
|
2
|
+
gpt-4o:
|
3
|
+
input_tokens: 0.000005
|
4
|
+
output_tokens: 0.000015
|
5
|
+
input_tokens_with_batch: 0.0000025
|
6
|
+
output_tokens_with_batch: 0.0000075
|
7
|
+
gpt-4o-2024-08-06:
|
8
|
+
input_tokens: 0.0000025
|
9
|
+
output_tokens: 0.00001
|
10
|
+
input_tokens_with_batch: 0.00000125
|
11
|
+
output_tokens_with_batch: 0.000005
|
12
|
+
gpt-4o-2024-05-13:
|
13
|
+
input_tokens: 0.000005
|
14
|
+
output_tokens: 0.000015
|
15
|
+
input_tokens_with_batch: 0.0000025
|
16
|
+
output_tokens_with_batch: 0.0000075
|
17
|
+
gpt-4o-mini:
|
18
|
+
input_tokens: 0.00000015
|
19
|
+
output_tokens: 0.0000006
|
20
|
+
input_tokens_with_batch: 0.000000075
|
21
|
+
output_tokens_with_batch: 0.0000003
|
22
|
+
gpt-4o-mini-2024-07-18:
|
23
|
+
input_tokens: 0.00000015
|
24
|
+
output_tokens: 0.0000006
|
25
|
+
input_tokens_with_batch: 0.000000075
|
26
|
+
output_tokens_with_batch: 0.0000003
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.0.2"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
from .extend_df import extend_dataframe
|
5
|
+
from .read import read_csv, read_json
|
6
|
+
from .remove_rows import remove_rows
|
7
|
+
from .replace_keywords import replace_keywords
|
8
|
+
from .save import to_csv, to_excel
|
9
|
+
from .search_keywords import search_dataframe_keywords
|
10
|
+
from .to_df import to_df
|
11
|
+
from .update_cells import update_cells
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
"to_df",
|
15
|
+
"replace_keywords",
|
16
|
+
"search_dataframe_keywords",
|
17
|
+
"read_csv",
|
18
|
+
"read_json",
|
19
|
+
"to_csv",
|
20
|
+
"to_excel",
|
21
|
+
"extend_dataframe",
|
22
|
+
"remove_rows",
|
23
|
+
"update_cells",
|
24
|
+
]
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
from typing import Any, Literal
|
5
|
+
|
6
|
+
import pandas as pd
|
7
|
+
|
8
|
+
from lionagi.integrations.pandas_.to_df import to_df
|
9
|
+
|
10
|
+
|
11
|
+
def extend_dataframe(
|
12
|
+
dataframes: list[pd.DataFrame],
|
13
|
+
unique_col: str = "node_id",
|
14
|
+
keep: Literal["first", "last", False] = "first",
|
15
|
+
ignore_index: bool = False,
|
16
|
+
sort: bool = False,
|
17
|
+
**kwargs: Any,
|
18
|
+
) -> pd.DataFrame:
|
19
|
+
"""
|
20
|
+
Merges multiple DataFrames while ensuring no duplicate entries based on a specified unique column.
|
21
|
+
|
22
|
+
Args:
|
23
|
+
dataframes: List of DataFrames to merge, with the first being the primary DataFrame.
|
24
|
+
unique_col: The column name to check for duplicate entries. Defaults to 'node_id'.
|
25
|
+
keep: Determines which duplicates to keep. 'first' keeps the first occurrence,
|
26
|
+
'last' keeps the last occurrence, and False drops all duplicates.
|
27
|
+
ignore_index: If True, the resulting axis will be labeled 0, 1, …, n - 1.
|
28
|
+
sort: If True, sort the join keys lexicographically in the result DataFrame.
|
29
|
+
**kwargs: Additional keyword arguments for `drop_duplicates`.
|
30
|
+
|
31
|
+
Returns:
|
32
|
+
A DataFrame combined from all input DataFrames with duplicates removed based on the unique column.
|
33
|
+
|
34
|
+
Raises:
|
35
|
+
ValueError: If all DataFrames are empty or if there's an error in extending.
|
36
|
+
|
37
|
+
Example:
|
38
|
+
>>> df1 = pd.DataFrame({'node_id': [1, 2], 'value': ['a', 'b']})
|
39
|
+
>>> df2 = pd.DataFrame({'node_id': [2, 3], 'value': ['c', 'd']})
|
40
|
+
>>> extend_dataframe([df1, df2], keep='last', ignore_index=True)
|
41
|
+
node_id value
|
42
|
+
0 1 a
|
43
|
+
1 2 c
|
44
|
+
2 3 d
|
45
|
+
"""
|
46
|
+
try:
|
47
|
+
if all(df.empty for df in dataframes):
|
48
|
+
raise ValueError("All input DataFrames are empty.")
|
49
|
+
|
50
|
+
combined = pd.concat(dataframes, ignore_index=ignore_index, sort=sort)
|
51
|
+
result = combined.drop_duplicates(
|
52
|
+
subset=[unique_col], keep=keep, **kwargs
|
53
|
+
)
|
54
|
+
|
55
|
+
if result.empty:
|
56
|
+
raise ValueError("No data left after removing duplicates.")
|
57
|
+
|
58
|
+
return to_df(result)
|
59
|
+
|
60
|
+
except Exception as e:
|
61
|
+
raise ValueError(f"Error in extending DataFrames: {e}") from e
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
from typing import Any, Literal
|
5
|
+
|
6
|
+
import pandas as pd
|
7
|
+
|
8
|
+
from .to_df import to_df
|
9
|
+
|
10
|
+
|
11
|
+
def read_csv(
|
12
|
+
filepath: str,
|
13
|
+
chunk_size: int | None = None,
|
14
|
+
low_memory: bool = False,
|
15
|
+
return_as: Literal["dataframe", "json", "jsonl", "dict"] = "dataframe",
|
16
|
+
**kwargs: Any,
|
17
|
+
) -> pd.DataFrame | str | list | dict:
|
18
|
+
"""
|
19
|
+
Reads a CSV file into a DataFrame with optional chunking for large files.
|
20
|
+
|
21
|
+
Args:
|
22
|
+
filepath: The path to the CSV file to read.
|
23
|
+
chunk_size: Number of rows to read at a time. If specified, returns an iterable.
|
24
|
+
low_memory: Internally process the file in chunks to conserve memory (slower).
|
25
|
+
**kwargs: Additional keyword arguments to pass to pandas.read_csv function.
|
26
|
+
|
27
|
+
Returns:
|
28
|
+
A DataFrame containing the data read from the CSV file, or a TextFileReader
|
29
|
+
if chunk_size is specified.
|
30
|
+
|
31
|
+
Example:
|
32
|
+
>>> df = read_csv('large_file.csv', chunk_size=10000)
|
33
|
+
>>> for chunk in df:
|
34
|
+
... process_chunk(chunk)
|
35
|
+
"""
|
36
|
+
try:
|
37
|
+
if chunk_size:
|
38
|
+
return pd.read_csv(
|
39
|
+
filepath, chunksize=chunk_size, low_memory=low_memory, **kwargs
|
40
|
+
)
|
41
|
+
df = pd.read_csv(filepath, low_memory=low_memory, **kwargs)
|
42
|
+
df = to_df(df)
|
43
|
+
if return_as == "dataframe":
|
44
|
+
return df
|
45
|
+
if return_as == "json":
|
46
|
+
return df.to_json(orient="records")
|
47
|
+
if return_as == "jsonl":
|
48
|
+
return df.to_json(orient="records", lines=True)
|
49
|
+
if return_as == "dict":
|
50
|
+
return df.to_dict(orient="records")
|
51
|
+
|
52
|
+
except Exception as e:
|
53
|
+
raise OSError(f"Error reading CSV file: {e}") from e
|
54
|
+
|
55
|
+
|
56
|
+
def read_json(
|
57
|
+
filepath: str,
|
58
|
+
orient: str | None = None,
|
59
|
+
lines: bool = False,
|
60
|
+
chunk_size: int | None = None,
|
61
|
+
return_as: Literal["dataframe", "json", "jsonl", "dict"] = "dataframe",
|
62
|
+
**kwargs: Any,
|
63
|
+
) -> pd.DataFrame | pd.io.json._json.JsonReader:
|
64
|
+
"""
|
65
|
+
Reads a JSON file into a DataFrame with options for different JSON formats.
|
66
|
+
|
67
|
+
Args:
|
68
|
+
filepath: The path to the JSON file to read.
|
69
|
+
orient: Indication of expected JSON string format.
|
70
|
+
Allowed values are: 'split', 'records', 'index', 'columns', 'values', 'table'.
|
71
|
+
lines: Read the file as a json object per line.
|
72
|
+
chunk_size: Number of lines to read at a time. If specified, returns an iterable.
|
73
|
+
**kwargs: Additional keyword arguments to pass to pandas.read_json function.
|
74
|
+
|
75
|
+
Returns:
|
76
|
+
A DataFrame containing the data read from the JSON file, or a JsonReader
|
77
|
+
if chunk_size is specified.
|
78
|
+
|
79
|
+
Example:
|
80
|
+
>>> df = read_json('data.json', orient='records', lines=True)
|
81
|
+
"""
|
82
|
+
try:
|
83
|
+
if chunk_size:
|
84
|
+
return pd.read_json(
|
85
|
+
filepath,
|
86
|
+
orient=orient,
|
87
|
+
lines=lines,
|
88
|
+
chunksize=chunk_size,
|
89
|
+
**kwargs,
|
90
|
+
)
|
91
|
+
df = pd.read_json(filepath, orient=orient, lines=lines, **kwargs)
|
92
|
+
df = to_df(df)
|
93
|
+
if return_as == "dataframe":
|
94
|
+
return df
|
95
|
+
if return_as == "json":
|
96
|
+
return df.to_json(orient="records")
|
97
|
+
if return_as == "jsonl":
|
98
|
+
return df.to_json(orient="records", lines=True)
|
99
|
+
if return_as == "dict":
|
100
|
+
return df.to_dict(orient="records")
|
101
|
+
|
102
|
+
except Exception as e:
|
103
|
+
raise OSError(f"Error reading JSON file: {e}") from e
|