lionagi 0.5.5__py3-none-any.whl → 0.6.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/__init__.py +18 -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 +19 -16
- 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 +2 -2
- 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 +26 -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/operations/types.py +13 -0
- lionagi/operations/utils.py +6 -3
- lionagi/operatives/action/function_calling.py +136 -0
- lionagi/operatives/action/manager.py +236 -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/{core/models/__init__.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/_concepts.py +94 -0
- lionagi/protocols/adapters/adapter.py +23 -7
- lionagi/protocols/adapters/json_adapter.py +72 -14
- lionagi/protocols/adapters/pandas_/csv_adapter.py +50 -0
- lionagi/protocols/adapters/pandas_/excel_adapter.py +52 -0
- lionagi/protocols/adapters/pandas_/pd_dataframe_adapter.py +31 -0
- lionagi/protocols/adapters/pandas_/pd_series_adapter.py +17 -0
- lionagi/protocols/adapters/types.py +18 -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 +193 -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 +125 -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 +1 -16
- 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 +146 -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/service/types.py +18 -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.1.dist-info}/METADATA +10 -9
- lionagi-0.6.1.dist-info/RECORD +169 -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/_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/anthropic_/version.py +0 -5
- 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/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 → protocols/adapters/pandas_}/__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.1.dist-info}/WHEEL +0 -0
- {lionagi-0.5.5.dist-info → lionagi-0.6.1.dist-info}/licenses/LICENSE +0 -0
lionagi/service/imodel.py
CHANGED
@@ -1,130 +1,297 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
import os
|
1
6
|
import warnings
|
2
7
|
|
3
|
-
from
|
4
|
-
from
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
+
from .endpoints.base import APICalling, EndPoint
|
9
|
+
from .endpoints.match_endpoint import match_endpoint
|
10
|
+
from .endpoints.rate_limited_processor import RateLimitedAPIExecutor
|
11
|
+
|
12
|
+
warnings.filterwarnings(
|
13
|
+
"ignore",
|
14
|
+
message=".*Valid config keys have changed in V2.*",
|
15
|
+
category=UserWarning,
|
16
|
+
module="pydantic._internal._config",
|
8
17
|
)
|
9
18
|
|
10
19
|
|
11
20
|
class iModel:
|
21
|
+
"""Manages API calls for a specific provider with optional rate-limiting.
|
22
|
+
|
23
|
+
The iModel class encapsulates a specific endpoint configuration (e.g.,
|
24
|
+
chat or completion endpoints). It determines and sets the necessary
|
25
|
+
API key based on the provider and uses a RateLimitedAPIExecutor to
|
26
|
+
handle queuing and throttling requests.
|
27
|
+
|
28
|
+
Attributes:
|
29
|
+
endpoint (EndPoint):
|
30
|
+
The chosen endpoint object (constructed via `match_endpoint` if
|
31
|
+
none is provided).
|
32
|
+
should_invoke_endpoint (bool):
|
33
|
+
If True, the endpoint is called for real. If False, calls might
|
34
|
+
be mocked or cached.
|
35
|
+
kwargs (dict):
|
36
|
+
Any additional keyword arguments passed to initialize and
|
37
|
+
configure the iModel (e.g., `model`, `api_key`).
|
38
|
+
executor (RateLimitedAPIExecutor):
|
39
|
+
The rate-limited executor that queues and runs API calls in a
|
40
|
+
controlled fashion.
|
41
|
+
"""
|
12
42
|
|
13
43
|
def __init__(
|
14
44
|
self,
|
15
|
-
provider: str
|
16
|
-
|
17
|
-
|
45
|
+
provider: str = None,
|
46
|
+
base_url: str = None,
|
47
|
+
endpoint: str | EndPoint = "chat",
|
48
|
+
endpoint_params: list[str] | None = None,
|
18
49
|
api_key: str = None,
|
19
|
-
|
20
|
-
|
21
|
-
|
50
|
+
queue_capacity: int = 100,
|
51
|
+
capacity_refresh_time: float = 60,
|
52
|
+
interval: float | None = None,
|
53
|
+
limit_requests: int = None,
|
54
|
+
limit_tokens: int = None,
|
55
|
+
invoke_with_endpoint: bool = True,
|
22
56
|
**kwargs,
|
23
|
-
):
|
24
|
-
|
25
|
-
api_key = api_key
|
26
|
-
elif api_key_schema is not None:
|
27
|
-
api_key = api_key_schema
|
57
|
+
) -> None:
|
58
|
+
"""Initializes the iModel instance.
|
28
59
|
|
29
|
-
|
60
|
+
Args:
|
61
|
+
provider (str, optional):
|
62
|
+
Name of the provider (e.g., 'openai', 'anthropic').
|
63
|
+
base_url (str, optional):
|
64
|
+
Base URL for the API (if a custom endpoint is needed).
|
65
|
+
endpoint (str | EndPoint, optional):
|
66
|
+
Either a string representing the endpoint type (e.g., 'chat')
|
67
|
+
or an `EndPoint` instance.
|
68
|
+
endpoint_params (list[str] | None, optional):
|
69
|
+
Additional parameters for the endpoint (e.g., 'v1' or other).
|
70
|
+
api_key (str, optional):
|
71
|
+
An explicit API key. If not given, tries to load one from
|
72
|
+
environment variables based on the provider.
|
73
|
+
queue_capacity (int, optional):
|
74
|
+
Maximum number of requests allowed in the queue before
|
75
|
+
executing them.
|
76
|
+
capacity_refresh_time (float, optional):
|
77
|
+
Time interval (in seconds) after which the queue capacity
|
78
|
+
is refreshed.
|
79
|
+
interval (float | None, optional):
|
80
|
+
Interval in seconds to check or process requests in
|
81
|
+
the queue. If None, defaults to capacity_refresh_time.
|
82
|
+
limit_requests (int | None, optional):
|
83
|
+
Maximum number of requests allowed per cycle, if any.
|
84
|
+
limit_tokens (int | None, optional):
|
85
|
+
Maximum number of tokens allowed per cycle, if any.
|
86
|
+
invoke_with_endpoint (bool, optional):
|
87
|
+
If True, the endpoint is actually invoked. If False,
|
88
|
+
calls might be mocked or cached.
|
89
|
+
**kwargs:
|
90
|
+
Additional keyword arguments, such as `model`, or any other
|
91
|
+
provider-specific fields.
|
92
|
+
"""
|
93
|
+
if api_key is None:
|
30
94
|
match provider:
|
31
95
|
case "openai":
|
32
|
-
|
96
|
+
api_key = "OPENAI_API_KEY"
|
33
97
|
case "anthropic":
|
34
|
-
|
35
|
-
case "
|
36
|
-
|
98
|
+
api_key = "ANTHROPIC_API_KEY"
|
99
|
+
case "openrouter":
|
100
|
+
api_key = "OPENROUTER_API_KEY"
|
37
101
|
case "perplexity":
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
)
|
102
|
+
api_key = "PERPLEXITY_API_KEY"
|
103
|
+
case "groq":
|
104
|
+
api_key = "GROQ_API_KEY"
|
105
|
+
|
106
|
+
if os.getenv(api_key, None) is not None:
|
107
|
+
self.api_key_scheme = api_key
|
108
|
+
api_key = os.getenv(api_key)
|
109
|
+
|
110
|
+
kwargs["api_key"] = api_key
|
111
|
+
model = kwargs.get("model", None)
|
112
|
+
if model:
|
113
|
+
if not provider:
|
114
|
+
if "/" in model:
|
115
|
+
provider = model.split("/")[0]
|
116
|
+
model = model.replace(provider + "/", "")
|
117
|
+
kwargs["model"] = model
|
118
|
+
else:
|
119
|
+
raise ValueError("Provider must be provided")
|
120
|
+
|
121
|
+
if isinstance(endpoint, EndPoint):
|
122
|
+
self.endpoint = endpoint
|
60
123
|
else:
|
61
|
-
|
62
|
-
|
124
|
+
self.endpoint = match_endpoint(
|
125
|
+
provider=provider,
|
126
|
+
base_url=base_url,
|
127
|
+
endpoint=endpoint,
|
128
|
+
endpoint_params=endpoint_params,
|
63
129
|
)
|
130
|
+
if provider:
|
131
|
+
self.endpoint.config.provider = provider
|
132
|
+
if base_url:
|
133
|
+
self.endpoint.config.base_url = base_url
|
64
134
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
135
|
+
self.should_invoke_endpoint = invoke_with_endpoint
|
136
|
+
self.kwargs = kwargs
|
137
|
+
self.executor = RateLimitedAPIExecutor(
|
138
|
+
queue_capacity=queue_capacity,
|
139
|
+
capacity_refresh_time=capacity_refresh_time,
|
140
|
+
interval=interval,
|
141
|
+
limit_requests=limit_requests,
|
142
|
+
limit_tokens=limit_tokens,
|
143
|
+
)
|
144
|
+
|
145
|
+
def create_api_calling(self, **kwargs) -> APICalling:
|
146
|
+
"""Constructs an `APICalling` object from endpoint-specific payload.
|
147
|
+
|
148
|
+
Args:
|
149
|
+
**kwargs:
|
150
|
+
Additional arguments used to generate the payload (merged
|
151
|
+
with self.kwargs).
|
152
|
+
|
153
|
+
Returns:
|
154
|
+
APICalling:
|
155
|
+
An `APICalling` instance with the constructed payload,
|
156
|
+
headers, and the selected endpoint.
|
157
|
+
"""
|
158
|
+
kwargs.update(self.kwargs)
|
159
|
+
payload = self.endpoint.create_payload(**kwargs)
|
160
|
+
return APICalling(
|
161
|
+
payload=payload["payload"],
|
162
|
+
headers=payload["headers"],
|
163
|
+
endpoint=self.endpoint,
|
164
|
+
is_cached=payload.get("is_cached", False),
|
165
|
+
should_invoke_endpoint=self.should_invoke_endpoint,
|
79
166
|
)
|
167
|
+
|
168
|
+
async def process_chunk(self, chunk) -> None:
|
169
|
+
"""Processes a chunk of streaming data.
|
170
|
+
|
171
|
+
Override this method in subclasses if you need custom handling
|
172
|
+
of streaming responses from the API.
|
173
|
+
|
174
|
+
Args:
|
175
|
+
chunk:
|
176
|
+
A portion of the streamed data returned by the API.
|
177
|
+
"""
|
178
|
+
pass
|
179
|
+
|
180
|
+
async def stream(self, **kwargs) -> APICalling | None:
|
181
|
+
"""Performs a streaming API call with the given arguments.
|
182
|
+
|
183
|
+
Args:
|
184
|
+
**kwargs:
|
185
|
+
Arguments for the request, merged with self.kwargs.
|
186
|
+
|
187
|
+
Returns:
|
188
|
+
`APICalling` | None:
|
189
|
+
An APICalling instance upon success, or None if something
|
190
|
+
goes wrong.
|
191
|
+
"""
|
80
192
|
try:
|
81
|
-
|
193
|
+
kwargs["stream"] = True
|
194
|
+
api_call = self.create_api_calling(**kwargs)
|
195
|
+
async for i in api_call.stream():
|
196
|
+
await self.process_chunk(i)
|
197
|
+
return api_call
|
82
198
|
except Exception as e:
|
83
|
-
raise ValueError(
|
84
|
-
f"{self.task} requires the following to be provided as input: {e}."
|
85
|
-
)
|
199
|
+
raise ValueError(f"Failed to stream API call: {e}")
|
86
200
|
|
87
|
-
|
88
|
-
|
201
|
+
async def invoke(self, **kwargs) -> APICalling | None:
|
202
|
+
"""Invokes a rate-limited API call with the given arguments.
|
89
203
|
|
90
|
-
|
204
|
+
Args:
|
205
|
+
**kwargs:
|
206
|
+
Arguments for the request, merged with self.kwargs.
|
91
207
|
|
92
|
-
|
208
|
+
Returns:
|
209
|
+
APICalling | None:
|
210
|
+
The `APICalling` object if successfully invoked and
|
211
|
+
completed; otherwise None.
|
93
212
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
213
|
+
Raises:
|
214
|
+
ValueError:
|
215
|
+
If the call fails or if an error occurs during invocation.
|
216
|
+
"""
|
217
|
+
try:
|
218
|
+
kwargs.pop("stream", None)
|
219
|
+
api_call = self.create_api_calling(**kwargs)
|
220
|
+
if (
|
221
|
+
self.executor.processor is None
|
222
|
+
or self.executor.processor.is_stopped()
|
223
|
+
):
|
224
|
+
await self.executor.start()
|
99
225
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
if key in data_model.model_fields:
|
107
|
-
data_model_dict[key] = self.configs[key]
|
108
|
-
for key in kwargs:
|
109
|
-
if key in data_model.model_fields:
|
110
|
-
data_model_dict[key] = kwargs[key]
|
111
|
-
output[invoke_param] = data_model(**data_model_dict)
|
112
|
-
return output
|
226
|
+
await self.executor.append(api_call)
|
227
|
+
await self.executor.forward()
|
228
|
+
if api_call.id in self.executor.completed_events:
|
229
|
+
return self.executor.pile.pop(api_call.id)
|
230
|
+
except Exception as e:
|
231
|
+
raise ValueError(f"Failed to invoke API call: {e}")
|
113
232
|
|
114
|
-
|
115
|
-
|
233
|
+
@property
|
234
|
+
def allowed_roles(self) -> set[str]:
|
235
|
+
"""list[str]: Roles that are permissible for this endpoint.
|
116
236
|
|
117
|
-
|
118
|
-
|
237
|
+
Returns:
|
238
|
+
If the endpoint has an `allowed_roles` attribute, returns that;
|
239
|
+
otherwise, defaults to `{"system", "user", "assistant"}`.
|
240
|
+
"""
|
241
|
+
if hasattr(self.endpoint, "allowed_roles"):
|
242
|
+
return self.endpoint.allowed_roles
|
243
|
+
return {"system", "user", "assistant"}
|
119
244
|
|
120
245
|
@property
|
121
|
-
def
|
122
|
-
|
246
|
+
def sequential_exchange(self) -> bool:
|
247
|
+
"""bool: Indicates whether requests must occur in a strict sequence.
|
123
248
|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
249
|
+
Returns:
|
250
|
+
True if the endpoint requires sequential handling of
|
251
|
+
messages; False otherwise.
|
252
|
+
"""
|
253
|
+
return self.endpoint.sequential_exchange
|
254
|
+
|
255
|
+
def to_dict(self):
|
256
|
+
kwargs = self.kwargs
|
257
|
+
if "kwargs" in self.kwargs:
|
258
|
+
kwargs = self.kwargs["kwargs"]
|
259
|
+
return {
|
260
|
+
"provider": self.endpoint.config.provider,
|
261
|
+
"endpoint": self.endpoint.config.model_dump(),
|
262
|
+
"api_key": (
|
263
|
+
self.api_key_scheme
|
264
|
+
if hasattr(self, "api_key_scheme")
|
265
|
+
else None
|
266
|
+
),
|
267
|
+
"processor_config": self.executor.config,
|
268
|
+
"invoke_with_endpoint": self.should_invoke_endpoint,
|
269
|
+
**{k: v for k, v in kwargs.items() if k != "api_key"},
|
270
|
+
}
|
128
271
|
|
272
|
+
@classmethod
|
273
|
+
def from_dict(cls, data: dict):
|
274
|
+
provider = data.pop("provider", None)
|
275
|
+
base_url = data.pop("base_url", None)
|
276
|
+
api_key = data.pop("api_key", None)
|
277
|
+
processor_config = data.pop("processor_config", {})
|
129
278
|
|
130
|
-
|
279
|
+
endpoint_config_params = data.pop("endpoint", {})
|
280
|
+
endpoint_ = endpoint_config_params.pop("endpoint", None)
|
281
|
+
endpoint_params = endpoint_config_params.get("endpoint_params", None)
|
282
|
+
|
283
|
+
endpoint = match_endpoint(
|
284
|
+
provider=provider,
|
285
|
+
base_url=base_url,
|
286
|
+
endpoint=endpoint_,
|
287
|
+
endpoint_params=endpoint_params,
|
288
|
+
)
|
289
|
+
endpoint.update_config(**endpoint_config_params)
|
290
|
+
return cls(
|
291
|
+
provider=provider,
|
292
|
+
base_url=base_url,
|
293
|
+
endpoint=endpoint,
|
294
|
+
api_key=api_key,
|
295
|
+
**data,
|
296
|
+
**processor_config,
|
297
|
+
)
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from lionagi.protocols._concepts import Manager
|
6
|
+
from lionagi.utils import is_same_dtype
|
7
|
+
|
8
|
+
from .endpoints.chat_completion import ChatCompletionEndPoint
|
9
|
+
from .imodel import iModel
|
10
|
+
|
11
|
+
|
12
|
+
class iModelManager(Manager):
|
13
|
+
|
14
|
+
def __init__(self, *args: iModel, **kwargs):
|
15
|
+
super().__init__()
|
16
|
+
|
17
|
+
self.registry: dict[str, iModel] = {}
|
18
|
+
if args:
|
19
|
+
if not is_same_dtype(args, iModel):
|
20
|
+
raise TypeError("Input models are not instances of iModel")
|
21
|
+
for model in args:
|
22
|
+
self.register_imodel(model.endpoint.endpoint, model)
|
23
|
+
|
24
|
+
if kwargs:
|
25
|
+
for name, model in kwargs.items():
|
26
|
+
self.register_imodel(name, model)
|
27
|
+
|
28
|
+
@property
|
29
|
+
def chat(self) -> iModel | None:
|
30
|
+
return self.registry.get("chat", None)
|
31
|
+
|
32
|
+
@property
|
33
|
+
def parse(self) -> iModel | None:
|
34
|
+
return self.registry.get("parse", None)
|
35
|
+
|
36
|
+
def register_imodel(self, name: str, model: iModel):
|
37
|
+
if isinstance(model.endpoint, ChatCompletionEndPoint):
|
38
|
+
if name != "parse":
|
39
|
+
self.registry["chat"] = model
|
40
|
+
else:
|
41
|
+
self.registry["parse"] = model
|
42
|
+
elif isinstance(model, iModel):
|
43
|
+
self.registry[name] = model
|
44
|
+
else:
|
45
|
+
raise TypeError("Input model is not an instance of iModel")
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from lionagi.service.endpoints.chat_completion import ChatCompletionEndPoint
|
6
|
+
|
7
|
+
CHAT_COMPLETION_CONFIG = {
|
8
|
+
"provider": "anthropic",
|
9
|
+
"endpoint": "messages",
|
10
|
+
"method": "post",
|
11
|
+
"requires_tokens": True,
|
12
|
+
"openai_compatible": False,
|
13
|
+
"is_invokeable": True,
|
14
|
+
"is_streamable": True,
|
15
|
+
"base_url": "https://api.anthropic.com/v1",
|
16
|
+
"api_version": "2023-06-01",
|
17
|
+
"required_kwargs": {
|
18
|
+
"messages",
|
19
|
+
"model",
|
20
|
+
"max_tokens",
|
21
|
+
},
|
22
|
+
"optional_kwargs": {
|
23
|
+
"metadata",
|
24
|
+
"stop_sequences",
|
25
|
+
"stream",
|
26
|
+
"system",
|
27
|
+
"temperature",
|
28
|
+
"tool_choice",
|
29
|
+
"tools",
|
30
|
+
"top_p",
|
31
|
+
"top_k",
|
32
|
+
},
|
33
|
+
"allowed_roles": ["user", "assistant"],
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
class AnthropicChatCompletionEndPoint(ChatCompletionEndPoint):
|
38
|
+
"""
|
39
|
+
Documentation: https://docs.anthropic.com/en/api/
|
40
|
+
"""
|
41
|
+
|
42
|
+
def __init__(self, config: dict = CHAT_COMPLETION_CONFIG):
|
43
|
+
super().__init__(config)
|
44
|
+
|
45
|
+
def create_payload(self, **kwargs) -> dict:
|
46
|
+
payload = {}
|
47
|
+
cached = kwargs.get("cached", False)
|
48
|
+
headers = kwargs.get("headers", {})
|
49
|
+
for k, v in kwargs.items():
|
50
|
+
if k in self.acceptable_kwargs:
|
51
|
+
payload[k] = v
|
52
|
+
if "api_key" in kwargs:
|
53
|
+
headers["x-api-key"] = kwargs["api_key"]
|
54
|
+
headers["anthropic-version"] = kwargs.pop(
|
55
|
+
"api_version", self.config.api_version
|
56
|
+
)
|
57
|
+
if "content-type" not in kwargs:
|
58
|
+
headers["content-type"] = "application/json"
|
59
|
+
|
60
|
+
return {
|
61
|
+
"payload": payload,
|
62
|
+
"headers": headers,
|
63
|
+
"cached": cached,
|
64
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from lionagi.service.endpoints.chat_completion import ChatCompletionEndPoint
|
6
|
+
|
7
|
+
CHAT_COMPLETION_CONFIG = {
|
8
|
+
"provider": "groq",
|
9
|
+
"base_url": "https://api.groq.com/openai/v1",
|
10
|
+
"endpoint": "chat/completions",
|
11
|
+
"method": "post",
|
12
|
+
"openai_compatible": True,
|
13
|
+
"is_invokeable": True,
|
14
|
+
"requires_tokens": True,
|
15
|
+
"is_streamable": True,
|
16
|
+
"required_kwargs": {
|
17
|
+
"messages",
|
18
|
+
"model",
|
19
|
+
},
|
20
|
+
"deprecated_kwargs": {
|
21
|
+
"max_tokens",
|
22
|
+
"function_call",
|
23
|
+
"functions",
|
24
|
+
},
|
25
|
+
"optional_kwargs": {
|
26
|
+
"store",
|
27
|
+
"reasoning_effort",
|
28
|
+
"metadata",
|
29
|
+
"frequency_penalty",
|
30
|
+
"max_completion_tokens",
|
31
|
+
"modalities",
|
32
|
+
"prediction",
|
33
|
+
"audio",
|
34
|
+
"presence_penalty",
|
35
|
+
"seed",
|
36
|
+
"service_tier",
|
37
|
+
"stop",
|
38
|
+
"stream",
|
39
|
+
"stream_options",
|
40
|
+
"temperature",
|
41
|
+
"top_p",
|
42
|
+
"tools",
|
43
|
+
"tool_choice",
|
44
|
+
"parallel_tool_calls",
|
45
|
+
"user",
|
46
|
+
},
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
class GroqChatCompletionEndPoint(ChatCompletionEndPoint):
|
51
|
+
"""
|
52
|
+
Documentation: https://console.groq.com/docs/overview
|
53
|
+
"""
|
54
|
+
|
55
|
+
def __init__(self, config: dict = CHAT_COMPLETION_CONFIG):
|
56
|
+
super().__init__(config)
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
|
2
|
+
#
|
3
|
+
# SPDX-License-Identifier: Apache-2.0
|
4
|
+
|
5
|
+
from lionagi.service.endpoints.chat_completion import ChatCompletionEndPoint
|
6
|
+
|
7
|
+
CHAT_COMPLETION_CONFIG = {
|
8
|
+
"provider": "openai",
|
9
|
+
"base_url": "https://api.openai.com/v1",
|
10
|
+
"endpoint": "chat/completions",
|
11
|
+
"method": "post",
|
12
|
+
"openai_compatible": True,
|
13
|
+
"is_invokeable": True,
|
14
|
+
"requires_tokens": True,
|
15
|
+
"is_streamable": True,
|
16
|
+
"required_kwargs": {
|
17
|
+
"messages",
|
18
|
+
"model",
|
19
|
+
},
|
20
|
+
"deprecated_kwargs": {
|
21
|
+
"max_tokens",
|
22
|
+
"function_call",
|
23
|
+
"functions",
|
24
|
+
},
|
25
|
+
"optional_kwargs": {
|
26
|
+
"store",
|
27
|
+
"reasoning_effort",
|
28
|
+
"metadata",
|
29
|
+
"frequency_penalty",
|
30
|
+
"logit_bias",
|
31
|
+
"logprobs",
|
32
|
+
"top_logprobs",
|
33
|
+
"max_completion_tokens",
|
34
|
+
"n",
|
35
|
+
"modalities",
|
36
|
+
"prediction",
|
37
|
+
"audio",
|
38
|
+
"presence_penalty",
|
39
|
+
"response_format",
|
40
|
+
"seed",
|
41
|
+
"service_tier",
|
42
|
+
"stop",
|
43
|
+
"stream",
|
44
|
+
"stream_options",
|
45
|
+
"temperature",
|
46
|
+
"top_p",
|
47
|
+
"tools",
|
48
|
+
"tool_choice",
|
49
|
+
"parallel_tool_calls",
|
50
|
+
"user",
|
51
|
+
},
|
52
|
+
"allowed_roles": ["user", "assistant", "system"],
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
class OpenAIChatCompletionEndPoint(ChatCompletionEndPoint):
|
57
|
+
"""
|
58
|
+
Documentation: https://platform.openai.com/docs/api-reference/chat/create
|
59
|
+
"""
|
60
|
+
|
61
|
+
def __init__(self, config: dict = CHAT_COMPLETION_CONFIG):
|
62
|
+
super().__init__(config)
|