lionagi 0.5.5__py3-none-any.whl → 0.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +16 -24
- lionagi/{core/_class_registry.py → _class_registry.py} +51 -10
- lionagi/_errors.py +35 -0
- lionagi/libs/__init__.py +3 -0
- lionagi/libs/compress/__init__.py +3 -0
- lionagi/libs/compress/models.py +6 -2
- lionagi/libs/compress/utils.py +4 -16
- lionagi/libs/file/__init__.py +3 -0
- lionagi/libs/file/chunk.py +4 -0
- lionagi/libs/file/file_ops.py +4 -0
- lionagi/libs/file/params.py +4 -41
- lionagi/libs/file/process.py +4 -0
- lionagi/libs/file/save.py +5 -1
- lionagi/libs/{parse/flatten → nested}/flatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/nfilter.py +4 -0
- lionagi/libs/{parse/nested → nested}/nget.py +6 -1
- lionagi/libs/{parse/nested → nested}/ninsert.py +5 -1
- lionagi/libs/{parse/nested → nested}/nmerge.py +4 -0
- lionagi/libs/{parse/nested → nested}/npop.py +5 -2
- lionagi/libs/{parse/nested → nested}/nset.py +6 -1
- lionagi/libs/{parse/flatten → nested}/unflatten.py +4 -0
- lionagi/libs/{parse/nested → nested}/utils.py +5 -1
- lionagi/libs/package/__init__.py +3 -0
- lionagi/libs/package/imports.py +6 -2
- lionagi/libs/package/management.py +7 -3
- lionagi/libs/package/params.py +4 -0
- lionagi/libs/package/system.py +4 -0
- lionagi/libs/parse.py +30 -0
- lionagi/libs/{parse/json → schema}/as_readable.py +10 -4
- lionagi/libs/{parse/string_parse/code_block.py → schema/extract_code_block.py} +4 -0
- lionagi/libs/{parse/string_parse/docstring.py → schema/extract_docstring.py} +4 -0
- lionagi/libs/{parse/string_parse/function_.py → schema/function_to_schema.py} +21 -9
- lionagi/libs/{parse/json/schema.py → schema/json_schema.py} +5 -1
- lionagi/libs/validate/common_field_validators.py +170 -0
- lionagi/libs/{parse/validate/keys.py → validate/fuzzy_match_keys.py} +42 -8
- lionagi/libs/{parse/validate/mapping.py → validate/fuzzy_validate_mapping.py} +41 -6
- lionagi/libs/{string_similarity/algorithms.py → validate/string_similarity.py} +115 -1
- lionagi/libs/{parse/validate/boolean.py → validate/validate_boolean.py} +42 -3
- lionagi/operations/__init__.py +13 -3
- lionagi/operations/brainstorm/__init__.py +3 -3
- lionagi/operations/brainstorm/brainstorm.py +33 -19
- lionagi/operations/brainstorm/prompt.py +4 -0
- lionagi/operations/plan/__init__.py +4 -0
- lionagi/operations/plan/plan.py +16 -13
- lionagi/operations/plan/prompt.py +4 -0
- lionagi/operations/select/__init__.py +4 -0
- lionagi/operations/select/prompt.py +4 -0
- lionagi/operations/select/select.py +1 -1
- lionagi/operations/select/utils.py +4 -4
- lionagi/{strategies → operations/strategies}/base.py +6 -2
- lionagi/{strategies → operations/strategies}/concurrent.py +8 -5
- lionagi/{strategies → operations/strategies}/concurrent_chunk.py +6 -3
- lionagi/{strategies → operations/strategies}/concurrent_sequential_chunk.py +8 -4
- lionagi/{strategies → operations/strategies}/params.py +10 -6
- lionagi/{strategies → operations/strategies}/sequential.py +6 -2
- lionagi/{strategies → operations/strategies}/sequential_chunk.py +7 -3
- lionagi/{strategies → operations/strategies}/sequential_concurrent_chunk.py +9 -4
- lionagi/{strategies → operations/strategies}/utils.py +6 -3
- lionagi/{core/models/__init__.py → operations/types.py} +3 -1
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +239 -0
- lionagi/operatives/action/request_response_model.py +90 -0
- lionagi/operatives/action/tool.py +141 -0
- lionagi/{protocols/operatives/action.py → operatives/action/utils.py} +52 -90
- lionagi/{core → operatives}/forms/base.py +9 -4
- lionagi/{core → operatives}/forms/form.py +8 -13
- lionagi/{core → operatives}/forms/report.py +5 -3
- lionagi/operatives/instruct/base.py +79 -0
- lionagi/operatives/instruct/instruct.py +105 -0
- lionagi/operatives/instruct/instruct_collection.py +52 -0
- lionagi/operatives/instruct/node.py +13 -0
- lionagi/{protocols/operatives → operatives/instruct}/prompts.py +0 -34
- lionagi/{protocols/operatives → operatives/instruct}/reason.py +14 -7
- lionagi/{integrations/anthropic_/version.py → operatives/manager.py} +5 -1
- lionagi/operatives/models/field_model.py +194 -0
- lionagi/operatives/models/model_params.py +307 -0
- lionagi/{core → operatives}/models/note.py +20 -28
- lionagi/{core → operatives}/models/operable_model.py +153 -71
- lionagi/{core → operatives}/models/schema_model.py +4 -3
- lionagi/{protocols/operatives → operatives}/operative.py +10 -7
- lionagi/{protocols/operatives → operatives}/step.py +67 -26
- lionagi/operatives/types.py +69 -0
- lionagi/protocols/_adapter.py +224 -0
- lionagi/protocols/_concepts.py +94 -0
- lionagi/protocols/generic/element.py +460 -0
- lionagi/protocols/generic/event.py +177 -0
- lionagi/protocols/generic/log.py +237 -0
- lionagi/{core → protocols}/generic/pile.py +172 -131
- lionagi/protocols/generic/processor.py +316 -0
- lionagi/protocols/generic/progression.py +500 -0
- lionagi/protocols/graph/edge.py +166 -0
- lionagi/protocols/graph/graph.py +290 -0
- lionagi/protocols/graph/node.py +109 -0
- lionagi/protocols/mail/exchange.py +116 -0
- lionagi/protocols/mail/mail.py +25 -0
- lionagi/protocols/mail/mailbox.py +47 -0
- lionagi/protocols/mail/manager.py +168 -0
- lionagi/protocols/mail/package.py +55 -0
- lionagi/protocols/messages/action_request.py +165 -0
- lionagi/protocols/messages/action_response.py +132 -0
- lionagi/{core/communication → protocols/messages}/assistant_response.py +55 -79
- lionagi/protocols/messages/base.py +73 -0
- lionagi/protocols/messages/instruction.py +582 -0
- lionagi/protocols/messages/manager.py +429 -0
- lionagi/protocols/messages/message.py +216 -0
- lionagi/protocols/messages/system.py +115 -0
- lionagi/protocols/messages/templates/assistant_response.jinja2 +6 -0
- lionagi/{core/communication → protocols/messages}/templates/instruction_message.jinja2 +2 -2
- lionagi/protocols/types.py +96 -0
- lionagi/service/__init__.py +10 -12
- lionagi/service/endpoints/base.py +517 -0
- lionagi/service/endpoints/chat_completion.py +102 -0
- lionagi/service/endpoints/match_endpoint.py +60 -0
- lionagi/service/endpoints/rate_limited_processor.py +145 -0
- lionagi/service/endpoints/token_calculator.py +209 -0
- lionagi/service/imodel.py +263 -96
- lionagi/service/manager.py +45 -0
- lionagi/service/providers/anthropic_/messages.py +64 -0
- lionagi/service/providers/groq_/chat_completions.py +56 -0
- lionagi/service/providers/openai_/chat_completions.py +62 -0
- lionagi/service/providers/openrouter_/chat_completions.py +62 -0
- lionagi/service/providers/perplexity_/__init__.py +3 -0
- lionagi/service/providers/perplexity_/chat_completions.py +40 -0
- lionagi/session/__init__.py +3 -0
- lionagi/session/branch.py +1287 -0
- lionagi/session/session.py +296 -0
- lionagi/settings.py +62 -118
- lionagi/utils.py +2386 -0
- lionagi/version.py +1 -1
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/METADATA +7 -6
- lionagi-0.6.0.dist-info/RECORD +160 -0
- lionagi/core/action/action_manager.py +0 -289
- lionagi/core/action/base.py +0 -109
- lionagi/core/action/function_calling.py +0 -153
- lionagi/core/action/tool.py +0 -202
- lionagi/core/action/types.py +0 -16
- lionagi/core/communication/action_request.py +0 -163
- lionagi/core/communication/action_response.py +0 -149
- lionagi/core/communication/base_mail.py +0 -49
- lionagi/core/communication/instruction.py +0 -376
- lionagi/core/communication/message.py +0 -286
- lionagi/core/communication/message_manager.py +0 -543
- lionagi/core/communication/system.py +0 -116
- lionagi/core/communication/templates/assistant_response.jinja2 +0 -2
- lionagi/core/communication/types.py +0 -27
- lionagi/core/communication/utils.py +0 -256
- lionagi/core/forms/types.py +0 -13
- lionagi/core/generic/component.py +0 -422
- lionagi/core/generic/edge.py +0 -163
- lionagi/core/generic/element.py +0 -199
- lionagi/core/generic/graph.py +0 -377
- lionagi/core/generic/log.py +0 -151
- lionagi/core/generic/log_manager.py +0 -320
- lionagi/core/generic/node.py +0 -11
- lionagi/core/generic/progression.py +0 -395
- lionagi/core/generic/types.py +0 -23
- lionagi/core/generic/utils.py +0 -53
- lionagi/core/models/base.py +0 -28
- lionagi/core/models/field_model.py +0 -145
- lionagi/core/models/model_params.py +0 -194
- lionagi/core/models/types.py +0 -19
- lionagi/core/session/branch.py +0 -130
- lionagi/core/session/branch_mixins.py +0 -581
- lionagi/core/session/session.py +0 -163
- lionagi/core/session/types.py +0 -8
- lionagi/core/typing/__init__.py +0 -9
- lionagi/core/typing/_concepts.py +0 -173
- lionagi/core/typing/_id.py +0 -104
- lionagi/core/typing/_pydantic.py +0 -33
- lionagi/core/typing/_typing.py +0 -54
- lionagi/integrations/__init__.py +0 -0
- lionagi/integrations/_services.py +0 -17
- lionagi/integrations/anthropic_/AnthropicModel.py +0 -268
- lionagi/integrations/anthropic_/AnthropicService.py +0 -127
- lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml +0 -12
- lionagi/integrations/anthropic_/anthropic_price_data.yaml +0 -34
- lionagi/integrations/anthropic_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/anthropic_/api_endpoints/data_models.py +0 -40
- lionagi/integrations/anthropic_/api_endpoints/match_response.py +0 -119
- lionagi/integrations/anthropic_/api_endpoints/messages/request/message_models.py +0 -14
- lionagi/integrations/anthropic_/api_endpoints/messages/request/request_body.py +0 -74
- lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py +0 -0
- lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py +0 -32
- lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py +0 -101
- lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py +0 -25
- lionagi/integrations/groq_/GroqModel.py +0 -325
- lionagi/integrations/groq_/GroqService.py +0 -156
- lionagi/integrations/groq_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/groq_/api_endpoints/data_models.py +0 -187
- lionagi/integrations/groq_/api_endpoints/groq_request.py +0 -288
- lionagi/integrations/groq_/api_endpoints/match_response.py +0 -106
- lionagi/integrations/groq_/api_endpoints/response_utils.py +0 -105
- lionagi/integrations/groq_/groq_max_output_token_data.yaml +0 -21
- lionagi/integrations/groq_/groq_price_data.yaml +0 -58
- lionagi/integrations/groq_/groq_rate_limits.yaml +0 -105
- lionagi/integrations/groq_/version.py +0 -5
- lionagi/integrations/litellm_/imodel.py +0 -76
- lionagi/integrations/ollama_/OllamaModel.py +0 -244
- lionagi/integrations/ollama_/OllamaService.py +0 -142
- lionagi/integrations/ollama_/api_endpoints/api_request.py +0 -179
- lionagi/integrations/ollama_/api_endpoints/chat_completion/message_models.py +0 -31
- lionagi/integrations/ollama_/api_endpoints/chat_completion/request_body.py +0 -46
- lionagi/integrations/ollama_/api_endpoints/chat_completion/response_body.py +0 -67
- lionagi/integrations/ollama_/api_endpoints/chat_completion/tool_models.py +0 -49
- lionagi/integrations/ollama_/api_endpoints/completion/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/completion/request_body.py +0 -72
- lionagi/integrations/ollama_/api_endpoints/completion/response_body.py +0 -59
- lionagi/integrations/ollama_/api_endpoints/data_models.py +0 -15
- lionagi/integrations/ollama_/api_endpoints/embedding/__init__.py +0 -0
- lionagi/integrations/ollama_/api_endpoints/embedding/request_body.py +0 -33
- lionagi/integrations/ollama_/api_endpoints/embedding/response_body.py +0 -29
- lionagi/integrations/ollama_/api_endpoints/match_data_model.py +0 -62
- lionagi/integrations/ollama_/api_endpoints/match_response.py +0 -190
- lionagi/integrations/ollama_/api_endpoints/model/copy_model.py +0 -13
- lionagi/integrations/ollama_/api_endpoints/model/create_model.py +0 -28
- lionagi/integrations/ollama_/api_endpoints/model/delete_model.py +0 -11
- lionagi/integrations/ollama_/api_endpoints/model/list_model.py +0 -60
- lionagi/integrations/ollama_/api_endpoints/model/pull_model.py +0 -34
- lionagi/integrations/ollama_/api_endpoints/model/push_model.py +0 -35
- lionagi/integrations/ollama_/api_endpoints/model/show_model.py +0 -36
- lionagi/integrations/ollama_/api_endpoints/option_models.py +0 -68
- lionagi/integrations/openai_/OpenAIModel.py +0 -419
- lionagi/integrations/openai_/OpenAIService.py +0 -435
- lionagi/integrations/openai_/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/api_request.py +0 -277
- lionagi/integrations/openai_/api_endpoints/audio/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/audio/speech_models.py +0 -34
- lionagi/integrations/openai_/api_endpoints/audio/transcription_models.py +0 -136
- lionagi/integrations/openai_/api_endpoints/audio/translation_models.py +0 -41
- lionagi/integrations/openai_/api_endpoints/audio/types.py +0 -41
- lionagi/integrations/openai_/api_endpoints/batch/__init__.py +0 -17
- lionagi/integrations/openai_/api_endpoints/batch/batch_models.py +0 -146
- lionagi/integrations/openai_/api_endpoints/batch/cancel_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/create_batch.py +0 -26
- lionagi/integrations/openai_/api_endpoints/batch/list_batch.py +0 -37
- lionagi/integrations/openai_/api_endpoints/batch/request_object_models.py +0 -65
- lionagi/integrations/openai_/api_endpoints/batch/retrieve_batch.py +0 -7
- lionagi/integrations/openai_/api_endpoints/batch/types.py +0 -4
- lionagi/integrations/openai_/api_endpoints/chat_completions/__init__.py +0 -1
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/__init__.py +0 -39
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/message_models.py +0 -121
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/request_body.py +0 -221
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/response_format.py +0 -71
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/stream_options.py +0 -14
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_choice_models.py +0 -17
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/tool_models.py +0 -54
- lionagi/integrations/openai_/api_endpoints/chat_completions/request/types.py +0 -18
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/choice_models.py +0 -62
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/function_models.py +0 -16
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/log_prob_models.py +0 -47
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/message_models.py +0 -25
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/response_body.py +0 -99
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/types.py +0 -8
- lionagi/integrations/openai_/api_endpoints/chat_completions/response/usage_models.py +0 -24
- lionagi/integrations/openai_/api_endpoints/chat_completions/util.py +0 -46
- lionagi/integrations/openai_/api_endpoints/data_models.py +0 -23
- lionagi/integrations/openai_/api_endpoints/embeddings/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/embeddings/request_body.py +0 -79
- lionagi/integrations/openai_/api_endpoints/embeddings/response_body.py +0 -67
- lionagi/integrations/openai_/api_endpoints/files/__init__.py +0 -11
- lionagi/integrations/openai_/api_endpoints/files/delete_file.py +0 -20
- lionagi/integrations/openai_/api_endpoints/files/file_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/files/list_files.py +0 -27
- lionagi/integrations/openai_/api_endpoints/files/retrieve_file.py +0 -9
- lionagi/integrations/openai_/api_endpoints/files/upload_file.py +0 -38
- lionagi/integrations/openai_/api_endpoints/fine_tuning/__init__.py +0 -37
- lionagi/integrations/openai_/api_endpoints/fine_tuning/cancel_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/create_jobs.py +0 -133
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_checkpoint_models.py +0 -58
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_event_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/fine_tuning_job_models.py +0 -140
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_checkpoints.py +0 -51
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_events.py +0 -42
- lionagi/integrations/openai_/api_endpoints/fine_tuning/list_fine_tuning_jobs.py +0 -31
- lionagi/integrations/openai_/api_endpoints/fine_tuning/retrieve_jobs.py +0 -9
- lionagi/integrations/openai_/api_endpoints/fine_tuning/training_format.py +0 -30
- lionagi/integrations/openai_/api_endpoints/images/__init__.py +0 -9
- lionagi/integrations/openai_/api_endpoints/images/image_edit_models.py +0 -69
- lionagi/integrations/openai_/api_endpoints/images/image_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/image_variation_models.py +0 -56
- lionagi/integrations/openai_/api_endpoints/images/response_body.py +0 -30
- lionagi/integrations/openai_/api_endpoints/match_data_model.py +0 -197
- lionagi/integrations/openai_/api_endpoints/match_response.py +0 -336
- lionagi/integrations/openai_/api_endpoints/models/__init__.py +0 -7
- lionagi/integrations/openai_/api_endpoints/models/delete_fine_tuned_model.py +0 -17
- lionagi/integrations/openai_/api_endpoints/models/models_models.py +0 -31
- lionagi/integrations/openai_/api_endpoints/models/retrieve_model.py +0 -9
- lionagi/integrations/openai_/api_endpoints/moderations/__init__.py +0 -3
- lionagi/integrations/openai_/api_endpoints/moderations/request_body.py +0 -20
- lionagi/integrations/openai_/api_endpoints/moderations/response_body.py +0 -139
- lionagi/integrations/openai_/api_endpoints/uploads/__init__.py +0 -19
- lionagi/integrations/openai_/api_endpoints/uploads/add_upload_part.py +0 -11
- lionagi/integrations/openai_/api_endpoints/uploads/cancel_upload.py +0 -7
- lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py +0 -18
- lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py +0 -17
- lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py +0 -52
- lionagi/integrations/openai_/image_token_calculator/__init__.py +0 -0
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +0 -98
- lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml +0 -15
- lionagi/integrations/openai_/openai_max_output_token_data.yaml +0 -12
- lionagi/integrations/openai_/openai_price_data.yaml +0 -26
- lionagi/integrations/openai_/version.py +0 -1
- lionagi/integrations/pandas_/__init__.py +0 -24
- lionagi/integrations/pandas_/extend_df.py +0 -61
- lionagi/integrations/pandas_/read.py +0 -103
- lionagi/integrations/pandas_/remove_rows.py +0 -61
- lionagi/integrations/pandas_/replace_keywords.py +0 -65
- lionagi/integrations/pandas_/save.py +0 -131
- lionagi/integrations/pandas_/search_keywords.py +0 -69
- lionagi/integrations/pandas_/to_df.py +0 -196
- lionagi/integrations/pandas_/update_cells.py +0 -54
- lionagi/integrations/perplexity_/PerplexityModel.py +0 -274
- lionagi/integrations/perplexity_/PerplexityService.py +0 -118
- lionagi/integrations/perplexity_/api_endpoints/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/api_request.py +0 -171
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/request/request_body.py +0 -121
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/__init__.py +0 -0
- lionagi/integrations/perplexity_/api_endpoints/chat_completions/response/response_body.py +0 -146
- lionagi/integrations/perplexity_/api_endpoints/data_models.py +0 -63
- lionagi/integrations/perplexity_/api_endpoints/match_response.py +0 -26
- lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml +0 -3
- lionagi/integrations/perplexity_/perplexity_price_data.yaml +0 -10
- lionagi/integrations/perplexity_/version.py +0 -1
- lionagi/integrations/pydantic_/__init__.py +0 -8
- lionagi/integrations/pydantic_/break_down_annotation.py +0 -81
- lionagi/integrations/pydantic_/new_model.py +0 -208
- lionagi/libs/constants.py +0 -98
- lionagi/libs/file/path.py +0 -301
- lionagi/libs/file/types.py +0 -22
- lionagi/libs/func/__init__.py +0 -0
- lionagi/libs/func/async_calls/__init__.py +0 -24
- lionagi/libs/func/async_calls/alcall.py +0 -210
- lionagi/libs/func/async_calls/bcall.py +0 -130
- lionagi/libs/func/async_calls/mcall.py +0 -134
- lionagi/libs/func/async_calls/pcall.py +0 -149
- lionagi/libs/func/async_calls/rcall.py +0 -217
- lionagi/libs/func/async_calls/tcall.py +0 -114
- lionagi/libs/func/async_calls/ucall.py +0 -85
- lionagi/libs/func/decorators.py +0 -277
- lionagi/libs/func/lcall.py +0 -57
- lionagi/libs/func/params.py +0 -64
- lionagi/libs/func/throttle.py +0 -119
- lionagi/libs/func/types.py +0 -39
- lionagi/libs/func/utils.py +0 -96
- lionagi/libs/package/types.py +0 -26
- lionagi/libs/parse/__init__.py +0 -1
- lionagi/libs/parse/flatten/__init__.py +0 -9
- lionagi/libs/parse/flatten/params.py +0 -52
- lionagi/libs/parse/json/__init__.py +0 -27
- lionagi/libs/parse/json/extract.py +0 -102
- lionagi/libs/parse/json/parse.py +0 -179
- lionagi/libs/parse/json/to_json.py +0 -71
- lionagi/libs/parse/nested/__init__.py +0 -33
- lionagi/libs/parse/nested/to_flat_list.py +0 -64
- lionagi/libs/parse/params.py +0 -0
- lionagi/libs/parse/string_parse/__init__.py +0 -11
- lionagi/libs/parse/type_convert/__init__.py +0 -19
- lionagi/libs/parse/type_convert/params.py +0 -145
- lionagi/libs/parse/type_convert/to_dict.py +0 -333
- lionagi/libs/parse/type_convert/to_list.py +0 -186
- lionagi/libs/parse/type_convert/to_num.py +0 -358
- lionagi/libs/parse/type_convert/to_str.py +0 -195
- lionagi/libs/parse/types.py +0 -9
- lionagi/libs/parse/validate/__init__.py +0 -14
- lionagi/libs/parse/validate/params.py +0 -62
- lionagi/libs/parse/xml/__init__.py +0 -10
- lionagi/libs/parse/xml/convert.py +0 -56
- lionagi/libs/parse/xml/parser.py +0 -93
- lionagi/libs/string_similarity/__init__.py +0 -32
- lionagi/libs/string_similarity/matcher.py +0 -102
- lionagi/libs/string_similarity/utils.py +0 -15
- lionagi/libs/utils.py +0 -266
- lionagi/protocols/adapters/__init__.py +0 -0
- lionagi/protocols/adapters/adapter.py +0 -79
- lionagi/protocols/adapters/json_adapter.py +0 -43
- lionagi/protocols/adapters/pandas_adapter.py +0 -96
- lionagi/protocols/configs/__init__.py +0 -0
- lionagi/protocols/configs/branch_config.py +0 -86
- lionagi/protocols/configs/id_config.py +0 -15
- lionagi/protocols/configs/imodel_config.py +0 -73
- lionagi/protocols/configs/log_config.py +0 -93
- lionagi/protocols/configs/retry_config.py +0 -29
- lionagi/protocols/configs/types.py +0 -15
- lionagi/protocols/operatives/instruct.py +0 -194
- lionagi/protocols/operatives/types.py +0 -19
- lionagi/protocols/registries/_component_registry.py +0 -23
- lionagi/protocols/registries/_pile_registry.py +0 -30
- lionagi/service/complete_request_info.py +0 -11
- lionagi/service/rate_limiter.py +0 -108
- lionagi/service/service.py +0 -41
- lionagi/service/service_match_util.py +0 -131
- lionagi/service/service_util.py +0 -72
- lionagi/service/token_calculator.py +0 -51
- lionagi/strategies/__init__.py +0 -0
- lionagi/strategies/types.py +0 -21
- lionagi-0.5.5.dist-info/RECORD +0 -374
- /lionagi/{core → libs/nested}/__init__.py +0 -0
- /lionagi/{core/action → libs/schema}/__init__.py +0 -0
- /lionagi/{core/communication → libs/validate}/__init__.py +0 -0
- /lionagi/{core/forms → operations/strategies}/__init__.py +0 -0
- /lionagi/{core/generic → operatives}/__init__.py +0 -0
- /lionagi/{core/session → operatives/action}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_ → operatives/forms}/__init__.py +0 -0
- /lionagi/{core → operatives}/forms/utils.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints → operatives/instruct}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages → operatives/models}/__init__.py +0 -0
- /lionagi/{integrations/anthropic_/api_endpoints/messages/request → protocols/generic}/__init__.py +0 -0
- /lionagi/{integrations/groq_ → protocols/graph}/__init__.py +0 -0
- /lionagi/{integrations/litellm_ → protocols/mail}/__init__.py +0 -0
- /lionagi/{integrations/ollama_ → protocols/messages}/__init__.py +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/README.md +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_request.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/action_response.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/system_message.jinja2 +0 -0
- /lionagi/{core/communication → protocols/messages}/templates/tool_schemas.jinja2 +0 -0
- /lionagi/{integrations/ollama_/api_endpoints → service/endpoints}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/chat_completion → service/providers}/__init__.py +0 -0
- /lionagi/{integrations/ollama_/api_endpoints/model → service/providers/anthropic_}/__init__.py +0 -0
- /lionagi/{integrations/perplexity_ → service/providers/groq_}/__init__.py +0 -0
- /lionagi/{protocols/operatives → service/providers/openai_}/__init__.py +0 -0
- /lionagi/{protocols/registries → service/providers/openrouter_}/__init__.py +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,517 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
import asyncio
|
6
|
+
import logging
|
7
|
+
from abc import ABC
|
8
|
+
from typing import Any, Literal
|
9
|
+
|
10
|
+
import aiohttp
|
11
|
+
from aiocache import cached
|
12
|
+
from pydantic import BaseModel, ConfigDict, Field
|
13
|
+
|
14
|
+
from lionagi._errors import ExecutionError, RateLimitError
|
15
|
+
from lionagi.protocols.types import Event, EventStatus
|
16
|
+
from lionagi.settings import Settings
|
17
|
+
|
18
|
+
from .token_calculator import TokenCalculator
|
19
|
+
|
20
|
+
|
21
|
+
class EndpointConfig(BaseModel):
|
22
|
+
"""Represents configuration data for an API endpoint.
|
23
|
+
|
24
|
+
Attributes:
|
25
|
+
provider (str | None):
|
26
|
+
The name of the API provider (e.g., "openai").
|
27
|
+
base_url (str | None):
|
28
|
+
The base URL for the endpoint, if any.
|
29
|
+
endpoint (str):
|
30
|
+
The endpoint path or identifier (e.g., "/v1/chat/completions").
|
31
|
+
endpoint_params (dict | None):
|
32
|
+
Key-value pairs for dynamic endpoint formatting.
|
33
|
+
method (Literal["get","post","put","delete"]):
|
34
|
+
The HTTP method used when calling this endpoint.
|
35
|
+
openai_compatible (bool):
|
36
|
+
If True, indicates that the endpoint expects OpenAI-style requests.
|
37
|
+
required_kwargs (set[str]):
|
38
|
+
The names of required parameters for this endpoint.
|
39
|
+
optional_kwargs (set[str]):
|
40
|
+
The names of optional parameters for this endpoint.
|
41
|
+
deprecated_kwargs (set[str]):
|
42
|
+
The names of parameters that may still be accepted but are
|
43
|
+
deprecated.
|
44
|
+
is_invokeable (bool):
|
45
|
+
Whether this endpoint supports direct invocation.
|
46
|
+
is_streamable (bool):
|
47
|
+
Whether this endpoint supports streaming responses.
|
48
|
+
requires_tokens (bool):
|
49
|
+
Whether tokens must be calculated before sending a request.
|
50
|
+
api_version (str | None):
|
51
|
+
An optional version string for the API.
|
52
|
+
allowed_roles (list[str] | None):
|
53
|
+
If set, only these roles are allowed in message or conversation
|
54
|
+
data.
|
55
|
+
"""
|
56
|
+
|
57
|
+
model_config = ConfigDict(
|
58
|
+
arbitrary_types_allowed=True,
|
59
|
+
extra="allow",
|
60
|
+
populate_by_name=True,
|
61
|
+
use_enum_values=True,
|
62
|
+
)
|
63
|
+
|
64
|
+
provider: str | None = None
|
65
|
+
base_url: str | None = None
|
66
|
+
endpoint: str
|
67
|
+
endpoint_params: dict | None = None
|
68
|
+
method: Literal["get", "post", "put", "delete"] = Field("post")
|
69
|
+
openai_compatible: bool = False
|
70
|
+
required_kwargs: set[str] = Field(default_factory=set)
|
71
|
+
optional_kwargs: set[str] = Field(default_factory=set)
|
72
|
+
deprecated_kwargs: set[str] = Field(default_factory=set)
|
73
|
+
is_invokeable: bool = False
|
74
|
+
is_streamable: bool = False
|
75
|
+
requires_tokens: bool = False
|
76
|
+
api_version: str | None = None
|
77
|
+
allowed_roles: list[str] | None = None
|
78
|
+
|
79
|
+
|
80
|
+
class EndPoint(ABC):
|
81
|
+
"""Abstract base class representing an API endpoint.
|
82
|
+
|
83
|
+
This class wraps an `EndpointConfig` and provides methods for creating and
|
84
|
+
invoking API payloads, optionally with caching or streaming. Concrete
|
85
|
+
implementations should override `_invoke` and `_stream` to perform actual
|
86
|
+
HTTP requests.
|
87
|
+
"""
|
88
|
+
|
89
|
+
def __init__(self, config: dict) -> None:
|
90
|
+
"""Initializes the EndPoint with a given configuration.
|
91
|
+
|
92
|
+
Args:
|
93
|
+
config (dict): Configuration data that matches the EndpointConfig
|
94
|
+
schema.
|
95
|
+
"""
|
96
|
+
self.config = EndpointConfig(**config)
|
97
|
+
|
98
|
+
def update_config(self, **kwargs):
|
99
|
+
config = self.config.model_dump()
|
100
|
+
config.update(kwargs)
|
101
|
+
self.config = EndpointConfig(**config)
|
102
|
+
|
103
|
+
@property
|
104
|
+
def is_streamable(self) -> bool:
|
105
|
+
"""bool: Whether this endpoint supports streaming responses."""
|
106
|
+
return self.config.is_streamable
|
107
|
+
|
108
|
+
@property
|
109
|
+
def requires_tokens(self) -> bool:
|
110
|
+
"""bool: Indicates if token calculation is needed before requests."""
|
111
|
+
return self.config.requires_tokens
|
112
|
+
|
113
|
+
@property
|
114
|
+
def openai_compatible(self) -> bool:
|
115
|
+
"""bool: Whether requests conform to OpenAI's API style."""
|
116
|
+
return self.config.openai_compatible
|
117
|
+
|
118
|
+
@property
|
119
|
+
def is_invokeable(self) -> bool:
|
120
|
+
"""bool: Whether this endpoint supports direct invocation."""
|
121
|
+
return self.config.is_invokeable
|
122
|
+
|
123
|
+
@property
|
124
|
+
def required_kwargs(self) -> set[str]:
|
125
|
+
"""set[str]: A set of parameter names required by this endpoint."""
|
126
|
+
return self.config.required_kwargs
|
127
|
+
|
128
|
+
@property
|
129
|
+
def optional_kwargs(self) -> set[str]:
|
130
|
+
"""set[str]: A set of parameter names optionally accepted."""
|
131
|
+
return self.config.optional_kwargs
|
132
|
+
|
133
|
+
@property
|
134
|
+
def deprecated_kwargs(self) -> set[str]:
|
135
|
+
"""set[str]: A set of deprecated parameter names."""
|
136
|
+
return self.config.deprecated_kwargs
|
137
|
+
|
138
|
+
@property
|
139
|
+
def endpoint_params(self) -> dict | None:
|
140
|
+
"""dict | None: Additional parameters to format the endpoint path."""
|
141
|
+
return self.config.endpoint_params
|
142
|
+
|
143
|
+
@property
|
144
|
+
def method(self) -> str:
|
145
|
+
"""str: The HTTP method used when invoking this endpoint."""
|
146
|
+
return self.config.method
|
147
|
+
|
148
|
+
@property
|
149
|
+
def endpoint(self) -> str:
|
150
|
+
"""str: The endpoint path or identifier."""
|
151
|
+
return self.config.endpoint
|
152
|
+
|
153
|
+
@property
|
154
|
+
def acceptable_kwargs(self) -> set[str]:
|
155
|
+
"""set[str]: All parameters that are not explicitly prohibited."""
|
156
|
+
return (
|
157
|
+
self.required_kwargs
|
158
|
+
| self.optional_kwargs
|
159
|
+
| self.deprecated_kwargs
|
160
|
+
)
|
161
|
+
|
162
|
+
@property
|
163
|
+
def full_url(self) -> str:
|
164
|
+
"""str: The complete URL, including base_url and any parameters."""
|
165
|
+
if self.config.endpoint_params:
|
166
|
+
return self.config.base_url + self.config.endpoint.format(
|
167
|
+
**self.endpoint_params
|
168
|
+
)
|
169
|
+
return self.config.base_url + "/" + self.config.endpoint
|
170
|
+
|
171
|
+
@property
|
172
|
+
def allowed_roles(self) -> list[str] | None:
|
173
|
+
"""list[str] | None: A list of allowed roles, if any."""
|
174
|
+
return self.config.allowed_roles
|
175
|
+
|
176
|
+
@property
|
177
|
+
def sequential_exchange(self) -> bool:
|
178
|
+
"""bool: True if this endpoint requires exactly two roles (e.g., user & assistant)."""
|
179
|
+
if self.allowed_roles:
|
180
|
+
return len(self.allowed_roles) == 2
|
181
|
+
return False
|
182
|
+
|
183
|
+
@property
|
184
|
+
def roled(self) -> bool:
|
185
|
+
"""bool: Indicates if this endpoint uses role-based messages."""
|
186
|
+
return self.allowed_roles is not None
|
187
|
+
|
188
|
+
def create_payload(self, **kwargs) -> dict:
|
189
|
+
"""Generates a request payload (and headers) for this endpoint.
|
190
|
+
|
191
|
+
Args:
|
192
|
+
**kwargs:
|
193
|
+
Arbitrary parameters passed by the caller.
|
194
|
+
|
195
|
+
Returns:
|
196
|
+
dict:
|
197
|
+
A dictionary containing:
|
198
|
+
- "payload": A dict with filtered parameters for the request.
|
199
|
+
- "headers": A dict of additional headers (e.g., `Authorization`).
|
200
|
+
- "is_cached": Whether the request is to be cached.
|
201
|
+
"""
|
202
|
+
payload = {}
|
203
|
+
is_cached = kwargs.get("is_cached", False)
|
204
|
+
headers = kwargs.get("headers", {})
|
205
|
+
for k, v in kwargs.items():
|
206
|
+
if k in self.acceptable_kwargs:
|
207
|
+
payload[k] = v
|
208
|
+
if "api_key" in kwargs:
|
209
|
+
headers["Authorization"] = f"Bearer {kwargs['api_key']}"
|
210
|
+
return {
|
211
|
+
"payload": payload,
|
212
|
+
"headers": headers,
|
213
|
+
"is_cached": is_cached,
|
214
|
+
}
|
215
|
+
|
216
|
+
async def invoke(
|
217
|
+
self,
|
218
|
+
payload: dict,
|
219
|
+
headers: dict,
|
220
|
+
is_cached: bool = False,
|
221
|
+
**kwargs,
|
222
|
+
):
|
223
|
+
"""Invokes this endpoint with the given payload and headers.
|
224
|
+
|
225
|
+
Args:
|
226
|
+
payload (dict):
|
227
|
+
The request data to send.
|
228
|
+
headers (dict):
|
229
|
+
Extra HTTP headers for the request.
|
230
|
+
is_cached (bool):
|
231
|
+
Whether caching should be applied to this request.
|
232
|
+
**kwargs:
|
233
|
+
Additional arguments for the invocation.
|
234
|
+
|
235
|
+
Returns:
|
236
|
+
The result of the `_invoke` or `_cached_invoke` method.
|
237
|
+
"""
|
238
|
+
if is_cached:
|
239
|
+
return await self._cached_invoke(payload, headers, **kwargs)
|
240
|
+
return await self._invoke(payload, headers, **kwargs)
|
241
|
+
|
242
|
+
async def _invoke(self, payload: dict, headers: dict, **kwargs) -> Any:
|
243
|
+
"""Performs the actual HTTP request for non-streaming endpoints.
|
244
|
+
|
245
|
+
Subclasses should implement this to make an HTTP request using
|
246
|
+
`payload` and `headers`.
|
247
|
+
|
248
|
+
Args:
|
249
|
+
payload (dict): The JSON body or form data for the request.
|
250
|
+
headers (dict): Any additional headers (e.g., auth tokens).
|
251
|
+
**kwargs: Additional arguments.
|
252
|
+
|
253
|
+
Returns:
|
254
|
+
Any: The response data from the API.
|
255
|
+
|
256
|
+
Raises:
|
257
|
+
NotImplementedError: If the subclass has not overridden this method.
|
258
|
+
"""
|
259
|
+
raise NotImplementedError
|
260
|
+
|
261
|
+
async def _stream(self, payload: dict, headers: dict, **kwargs) -> Any:
|
262
|
+
"""Streams data from the endpoint if supported.
|
263
|
+
|
264
|
+
Subclasses should implement this if streaming is supported.
|
265
|
+
|
266
|
+
Args:
|
267
|
+
payload (dict): The data to send.
|
268
|
+
headers (dict): Additional headers.
|
269
|
+
|
270
|
+
Raises:
|
271
|
+
NotImplementedError:
|
272
|
+
If the subclass has not overridden this for streaming endpoints.
|
273
|
+
"""
|
274
|
+
raise NotImplementedError
|
275
|
+
|
276
|
+
@cached(**Settings.API.CACHED_CONFIG)
|
277
|
+
async def _cached_invoke(self, payload: dict, headers: dict, **kwargs):
|
278
|
+
"""Cached version of `_invoke` using aiocache.
|
279
|
+
|
280
|
+
Args:
|
281
|
+
payload (dict): The data to send in the request.
|
282
|
+
headers (dict): Extra headers to include.
|
283
|
+
**kwargs: Additional arguments for `_invoke`.
|
284
|
+
|
285
|
+
Returns:
|
286
|
+
Any: Cached or newly obtained response data.
|
287
|
+
"""
|
288
|
+
return await self._invoke(payload, headers, **kwargs)
|
289
|
+
|
290
|
+
def calculate_tokens(self, payload: dict) -> int:
|
291
|
+
"""Calculates the number of tokens needed for a request.
|
292
|
+
|
293
|
+
Uses the `TokenCalculator` if the endpoint requires token counting.
|
294
|
+
|
295
|
+
Args:
|
296
|
+
payload (dict):
|
297
|
+
The request data, possibly containing "messages" for chat
|
298
|
+
or an "embed" request.
|
299
|
+
|
300
|
+
Returns:
|
301
|
+
int: The estimated number of tokens used.
|
302
|
+
"""
|
303
|
+
if self.requires_tokens:
|
304
|
+
if "messages" in payload:
|
305
|
+
return TokenCalculator.calculate_message_tokens(
|
306
|
+
payload["messages"]
|
307
|
+
)
|
308
|
+
if "embed" in self.full_url:
|
309
|
+
return TokenCalculator.calcualte_embed_token(**payload)
|
310
|
+
return 0
|
311
|
+
|
312
|
+
|
313
|
+
class APICalling(Event):
|
314
|
+
"""Represents an API call event, storing payload, headers, and endpoint info.
|
315
|
+
|
316
|
+
This class extends `Event` and provides methods to invoke or stream the
|
317
|
+
request asynchronously. It also can track token usage and stores the
|
318
|
+
result or any errors in `execution`.
|
319
|
+
|
320
|
+
Attributes:
|
321
|
+
payload (dict):
|
322
|
+
The body or parameters for the API request.
|
323
|
+
headers (dict):
|
324
|
+
Additional headers (excluded from serialization).
|
325
|
+
endpoint (EndPoint):
|
326
|
+
The endpoint to which this request will be sent.
|
327
|
+
is_cached (bool):
|
328
|
+
Whether to use cached responses.
|
329
|
+
should_invoke_endpoint (bool):
|
330
|
+
If False, the request may not actually call the API.
|
331
|
+
"""
|
332
|
+
|
333
|
+
payload: dict
|
334
|
+
headers: dict = Field(exclude=True)
|
335
|
+
endpoint: EndPoint = Field(exclude=True)
|
336
|
+
is_cached: bool = Field(default=False, exclude=True)
|
337
|
+
should_invoke_endpoint: bool = Field(default=True, exclude=True)
|
338
|
+
|
339
|
+
@property
|
340
|
+
def required_tokens(self) -> int | None:
|
341
|
+
"""int | None: The number of tokens required for this request."""
|
342
|
+
if self.endpoint.requires_tokens:
|
343
|
+
return self.endpoint.calculate_tokens(self.payload)
|
344
|
+
return None
|
345
|
+
|
346
|
+
async def _inner(self, **kwargs) -> Any:
|
347
|
+
"""Performs a direct HTTP call using aiohttp, ignoring caching logic.
|
348
|
+
|
349
|
+
Args:
|
350
|
+
**kwargs: Additional parameters for the aiohttp request
|
351
|
+
(e.g., "headers", "json", etc.).
|
352
|
+
|
353
|
+
Returns:
|
354
|
+
Any: The JSON response from the API, if successful.
|
355
|
+
|
356
|
+
Raises:
|
357
|
+
ValueError:
|
358
|
+
If required endpoint parameters are missing.
|
359
|
+
ExecutionError:
|
360
|
+
If the response indicates a non-rate-limit error.
|
361
|
+
RateLimitError:
|
362
|
+
If a rate-limit error is encountered.
|
363
|
+
"""
|
364
|
+
if not self.endpoint.required_kwargs.issubset(
|
365
|
+
set(self.payload.keys())
|
366
|
+
):
|
367
|
+
raise ValueError(
|
368
|
+
f"Required kwargs not fully provided: {self.endpoint.required_kwargs}"
|
369
|
+
)
|
370
|
+
|
371
|
+
for k in list(self.payload.keys()):
|
372
|
+
if k not in self.endpoint.acceptable_kwargs:
|
373
|
+
self.payload.pop(k)
|
374
|
+
|
375
|
+
async def retry_in():
|
376
|
+
async with aiohttp.ClientSession() as session:
|
377
|
+
try:
|
378
|
+
if (
|
379
|
+
_m := getattr(session, self.endpoint.method, None)
|
380
|
+
) is not None:
|
381
|
+
async with _m(
|
382
|
+
self.endpoint.full_url, **kwargs
|
383
|
+
) as response:
|
384
|
+
response_json = await response.json()
|
385
|
+
if "error" not in response_json:
|
386
|
+
return response_json
|
387
|
+
if "Rate limit" in response_json["error"].get(
|
388
|
+
"message", ""
|
389
|
+
):
|
390
|
+
await asyncio.sleep(5)
|
391
|
+
raise RateLimitError(
|
392
|
+
f"Rate limit exceeded. Error: {response_json['error']}"
|
393
|
+
)
|
394
|
+
raise ExecutionError(
|
395
|
+
"API call failed with error: ",
|
396
|
+
response_json["error"],
|
397
|
+
)
|
398
|
+
else:
|
399
|
+
raise ValueError(
|
400
|
+
f"Invalid HTTP method: {self.endpoint.method}"
|
401
|
+
)
|
402
|
+
except aiohttp.ClientError as e:
|
403
|
+
logging.error(
|
404
|
+
f"API call to {self.endpoint.full_url} failed: {e}"
|
405
|
+
)
|
406
|
+
return None
|
407
|
+
|
408
|
+
for i in range(3):
|
409
|
+
try:
|
410
|
+
return await retry_in()
|
411
|
+
except RateLimitError | ExecutionError as e:
|
412
|
+
if i == 2:
|
413
|
+
raise e
|
414
|
+
else:
|
415
|
+
wait = 2 ** (i + 1) * 0.5
|
416
|
+
logging.warning(
|
417
|
+
f"API call to {self.endpoint.full_url} failed: {e}"
|
418
|
+
f"retrying in {wait} seconds."
|
419
|
+
)
|
420
|
+
await asyncio.sleep(wait)
|
421
|
+
|
422
|
+
@cached(**Settings.API.CACHED_CONFIG)
|
423
|
+
async def _cached_inner(self, **kwargs) -> Any:
|
424
|
+
"""Cached version of `_inner` using aiocache.
|
425
|
+
|
426
|
+
Args:
|
427
|
+
**kwargs: Passed to `_inner`.
|
428
|
+
|
429
|
+
Returns:
|
430
|
+
Any: The result of `_inner`, possibly from cache.
|
431
|
+
"""
|
432
|
+
return await self._inner(**kwargs)
|
433
|
+
|
434
|
+
async def stream(self, **kwargs):
|
435
|
+
"""Performs a streaming request, if supported by the endpoint.
|
436
|
+
|
437
|
+
Args:
|
438
|
+
**kwargs: Additional parameters for the streaming call.
|
439
|
+
|
440
|
+
Yields:
|
441
|
+
The streamed chunks of data, if any.
|
442
|
+
|
443
|
+
Raises:
|
444
|
+
ValueError: If the endpoint does not support streaming.
|
445
|
+
"""
|
446
|
+
start = asyncio.get_event_loop().time()
|
447
|
+
response = []
|
448
|
+
if not self.endpoint.is_streamable:
|
449
|
+
raise ValueError(
|
450
|
+
f"Endpoint {self.endpoint.endpoint} is not streamable."
|
451
|
+
)
|
452
|
+
|
453
|
+
async for i in self.endpoint._stream(
|
454
|
+
self.payload, self.headers, **kwargs
|
455
|
+
):
|
456
|
+
content = i.choices[0].delta.content
|
457
|
+
if content is not None:
|
458
|
+
print(content, end="", flush=True)
|
459
|
+
response.append(i)
|
460
|
+
yield i
|
461
|
+
|
462
|
+
self.execution.duration = asyncio.get_event_loop().time() - start
|
463
|
+
self.execution.response = response
|
464
|
+
self.execution.status = EventStatus.COMPLETED
|
465
|
+
|
466
|
+
async def invoke(self) -> None:
|
467
|
+
"""Invokes the API call, updating the execution state with results.
|
468
|
+
|
469
|
+
Raises:
|
470
|
+
Exception: If any error occurs, the status is set to FAILED and
|
471
|
+
the error is logged.
|
472
|
+
"""
|
473
|
+
start = asyncio.get_event_loop().time()
|
474
|
+
kwargs = {"headers": self.headers, "json": self.payload}
|
475
|
+
|
476
|
+
try:
|
477
|
+
response = None
|
478
|
+
if self.should_invoke_endpoint and self.endpoint.is_invokeable:
|
479
|
+
response = await self.endpoint.invoke(
|
480
|
+
payload=self.payload,
|
481
|
+
headers=self.headers,
|
482
|
+
is_cached=self.is_cached,
|
483
|
+
)
|
484
|
+
else:
|
485
|
+
if self.is_cached:
|
486
|
+
response = await self._cached_inner(**kwargs)
|
487
|
+
else:
|
488
|
+
response = await self._inner(**kwargs)
|
489
|
+
|
490
|
+
self.execution.duration = asyncio.get_event_loop().time() - start
|
491
|
+
self.execution.response = response
|
492
|
+
self.execution.status = EventStatus.COMPLETED
|
493
|
+
except Exception as e:
|
494
|
+
self.execution.duration = asyncio.get_event_loop().time() - start
|
495
|
+
self.execution.error = str(e)
|
496
|
+
self.execution.status = EventStatus.FAILED
|
497
|
+
logging.error(f"API call to {self.endpoint.full_url} failed: {e}")
|
498
|
+
|
499
|
+
def __str__(self) -> str:
|
500
|
+
return (
|
501
|
+
f"APICalling(id={self.id}, status={self.status}, duration="
|
502
|
+
f"{self.execution.duration}, response={self.execution.response}"
|
503
|
+
f", error={self.execution.error})"
|
504
|
+
)
|
505
|
+
|
506
|
+
__repr__ = __str__
|
507
|
+
|
508
|
+
@property
|
509
|
+
def request(self) -> dict:
|
510
|
+
"""dict: A partial dictionary with data about the request (e.g. tokens).
|
511
|
+
|
512
|
+
Returns:
|
513
|
+
dict: Contains 'required_tokens' if applicable.
|
514
|
+
"""
|
515
|
+
return {
|
516
|
+
"required_tokens": self.required_tokens,
|
517
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from collections.abc import AsyncGenerator
|
6
|
+
|
7
|
+
from .base import EndPoint
|
8
|
+
|
9
|
+
CHAT_COMPLETION_CONFIG = {
|
10
|
+
"endpoint": "chat/completions",
|
11
|
+
"method": "post",
|
12
|
+
"requires_tokens": True,
|
13
|
+
"openai_compatible": True,
|
14
|
+
"is_invokeable": True,
|
15
|
+
"is_streamable": True,
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
class ChatCompletionEndPoint(EndPoint):
|
20
|
+
|
21
|
+
def __init__(self, config: dict = CHAT_COMPLETION_CONFIG):
|
22
|
+
super().__init__(config)
|
23
|
+
|
24
|
+
async def _invoke(
|
25
|
+
self,
|
26
|
+
payload: dict,
|
27
|
+
headers: dict,
|
28
|
+
**kwargs,
|
29
|
+
):
|
30
|
+
import litellm
|
31
|
+
|
32
|
+
litellm.drop_params = True
|
33
|
+
from litellm import acompletion
|
34
|
+
|
35
|
+
provider = self.config.provider
|
36
|
+
|
37
|
+
if not provider in payload["model"]:
|
38
|
+
payload["model"] = f"{provider}/{payload['model']}"
|
39
|
+
|
40
|
+
api_key = None
|
41
|
+
|
42
|
+
if "Authorization" in headers:
|
43
|
+
api_key = headers.pop("Authorization").replace("Bearer ", "")
|
44
|
+
|
45
|
+
if "x-api-key" in headers:
|
46
|
+
api_key = headers.pop("x-api-key")
|
47
|
+
|
48
|
+
params = {
|
49
|
+
"api_key": api_key,
|
50
|
+
"base_url": self.config.base_url,
|
51
|
+
**payload,
|
52
|
+
**kwargs,
|
53
|
+
}
|
54
|
+
if headers:
|
55
|
+
params["extra_headers"] = headers
|
56
|
+
if not self.openai_compatible:
|
57
|
+
params.pop("base_url")
|
58
|
+
|
59
|
+
return await acompletion(**params)
|
60
|
+
|
61
|
+
async def _stream(
|
62
|
+
self,
|
63
|
+
payload: dict,
|
64
|
+
headers: dict,
|
65
|
+
**kwargs,
|
66
|
+
) -> AsyncGenerator:
|
67
|
+
import litellm
|
68
|
+
|
69
|
+
litellm.drop_params = True
|
70
|
+
from litellm import acompletion
|
71
|
+
|
72
|
+
provider = self.config.provider
|
73
|
+
|
74
|
+
if not provider in payload["model"]:
|
75
|
+
payload["model"] = f"{provider}/{payload['model']}"
|
76
|
+
|
77
|
+
api_key = None
|
78
|
+
|
79
|
+
if "Authorization" in headers:
|
80
|
+
api_key = headers.pop("Authorization").replace("Bearer ", "")
|
81
|
+
|
82
|
+
if "x-api-key" in headers:
|
83
|
+
api_key = headers.pop("x-api-key")
|
84
|
+
|
85
|
+
params = {
|
86
|
+
"api_key": api_key,
|
87
|
+
"base_url": self.config.base_url,
|
88
|
+
**payload,
|
89
|
+
**kwargs,
|
90
|
+
}
|
91
|
+
if headers:
|
92
|
+
params["extra_headers"] = headers
|
93
|
+
if not self.openai_compatible:
|
94
|
+
params.pop("base_url")
|
95
|
+
|
96
|
+
params["stream"] = True
|
97
|
+
async for i in await acompletion(**params):
|
98
|
+
yield i
|
99
|
+
|
100
|
+
@property
|
101
|
+
def allowed_roles(self):
|
102
|
+
return ["system", "user", "assistant"]
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from .chat_completion import EndPoint
|
6
|
+
|
7
|
+
|
8
|
+
def match_endpoint(
|
9
|
+
provider: str,
|
10
|
+
base_url: str,
|
11
|
+
endpoint: str,
|
12
|
+
endpoint_params: list[str] | None = None,
|
13
|
+
) -> EndPoint:
|
14
|
+
if endpoint not in ["chat/completions", "chat", "messages"]:
|
15
|
+
raise ValueError(
|
16
|
+
"Invalid endpoint, must be one of 'chat/completions' (openai compatible), 'chat' (an alias), 'messages' (anthropic), other endpoints are not supported yet"
|
17
|
+
)
|
18
|
+
from ..providers.openai_.chat_completions import (
|
19
|
+
OpenAIChatCompletionEndPoint,
|
20
|
+
)
|
21
|
+
|
22
|
+
if provider == "openai":
|
23
|
+
return OpenAIChatCompletionEndPoint()
|
24
|
+
|
25
|
+
if provider == "anthropic":
|
26
|
+
from ..providers.anthropic_.messages import (
|
27
|
+
AnthropicChatCompletionEndPoint,
|
28
|
+
)
|
29
|
+
|
30
|
+
return AnthropicChatCompletionEndPoint()
|
31
|
+
|
32
|
+
if provider == "groq":
|
33
|
+
from ..providers.groq_.chat_completions import (
|
34
|
+
GroqChatCompletionEndPoint,
|
35
|
+
)
|
36
|
+
|
37
|
+
return GroqChatCompletionEndPoint()
|
38
|
+
|
39
|
+
if provider == "perplexity":
|
40
|
+
from ..providers.perplexity_.chat_completions import (
|
41
|
+
PerplexityChatCompletionEndPoint,
|
42
|
+
)
|
43
|
+
|
44
|
+
return PerplexityChatCompletionEndPoint()
|
45
|
+
|
46
|
+
if provider == "openrouter":
|
47
|
+
from ..providers.openrouter_.chat_completions import (
|
48
|
+
OpenRouterChatCompletionEndPoint,
|
49
|
+
)
|
50
|
+
|
51
|
+
return OpenRouterChatCompletionEndPoint()
|
52
|
+
|
53
|
+
return OpenAIChatCompletionEndPoint(
|
54
|
+
config={
|
55
|
+
"provider": provider,
|
56
|
+
"base_url": base_url,
|
57
|
+
"endpoint": endpoint,
|
58
|
+
"endpoint_params": endpoint_params,
|
59
|
+
}
|
60
|
+
)
|