lionagi 0.5.1__py3-none-any.whl → 0.5.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. lionagi/__init__.py +0 -1
  2. lionagi/core/action/tool.py +3 -5
  3. lionagi/core/communication/action_request.py +3 -3
  4. lionagi/core/communication/message.py +3 -3
  5. lionagi/core/communication/utils.py +3 -3
  6. lionagi/core/generic/component.py +4 -4
  7. lionagi/core/generic/element.py +51 -47
  8. lionagi/core/generic/graph.py +1 -1
  9. lionagi/core/generic/log.py +2 -2
  10. lionagi/core/generic/pile.py +10 -11
  11. lionagi/core/generic/progression.py +19 -12
  12. lionagi/core/generic/utils.py +6 -3
  13. lionagi/core/models/base.py +11 -68
  14. lionagi/core/models/field_model.py +42 -19
  15. lionagi/core/models/{new_model_params.py → model_params.py} +5 -6
  16. lionagi/core/models/note.py +2 -2
  17. lionagi/core/models/operable_model.py +8 -4
  18. lionagi/core/models/schema_model.py +9 -31
  19. lionagi/core/models/types.py +15 -6
  20. lionagi/core/session/branch.py +10 -7
  21. lionagi/core/session/branch_mixins.py +11 -12
  22. lionagi/core/session/session.py +1 -2
  23. lionagi/core/typing/__init__.py +4 -4
  24. lionagi/core/typing/{concepts.py → _concepts.py} +43 -2
  25. lionagi/core/typing/_id.py +104 -0
  26. lionagi/integrations/anthropic_/AnthropicModel.py +8 -3
  27. lionagi/integrations/groq_/GroqModel.py +11 -4
  28. lionagi/integrations/litellm_/imodel.py +6 -8
  29. lionagi/integrations/openai_/OpenAIModel.py +8 -3
  30. lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py +14 -8
  31. lionagi/integrations/perplexity_/PerplexityModel.py +8 -3
  32. lionagi/libs/func/async_calls/__init__.py +6 -3
  33. lionagi/libs/func/async_calls/alcall.py +46 -0
  34. lionagi/libs/func/async_calls/bcall.py +49 -1
  35. lionagi/libs/func/async_calls/rcall.py +32 -0
  36. lionagi/libs/utils.py +12 -1
  37. lionagi/operations/brainstorm/brainstorm.py +3 -3
  38. lionagi/operations/plan/plan.py +3 -3
  39. lionagi/protocols/__init__.py +3 -0
  40. lionagi/protocols/configs/__init__.py +0 -15
  41. lionagi/protocols/configs/branch_config.py +1 -1
  42. lionagi/protocols/configs/imodel_config.py +2 -2
  43. lionagi/protocols/configs/log_config.py +1 -1
  44. lionagi/protocols/configs/types.py +15 -0
  45. lionagi/protocols/operatives/__init__.py +3 -15
  46. lionagi/protocols/operatives/action.py +4 -0
  47. lionagi/protocols/operatives/instruct.py +6 -2
  48. lionagi/protocols/operatives/operative.py +9 -21
  49. lionagi/protocols/operatives/prompts.py +4 -0
  50. lionagi/protocols/operatives/reason.py +4 -0
  51. lionagi/protocols/operatives/step.py +11 -23
  52. lionagi/protocols/operatives/types.py +19 -0
  53. lionagi/protocols/registries/__init__.py +3 -0
  54. lionagi/protocols/registries/_component_registry.py +4 -0
  55. lionagi/protocols/registries/_pile_registry.py +4 -0
  56. lionagi/service/__init__.py +3 -0
  57. lionagi/service/service_match_util.py +4 -4
  58. lionagi/settings.py +10 -18
  59. lionagi/strategies/base.py +4 -5
  60. lionagi/strategies/concurrent.py +4 -3
  61. lionagi/strategies/concurrent_chunk.py +3 -3
  62. lionagi/strategies/concurrent_sequential_chunk.py +3 -3
  63. lionagi/strategies/params.py +7 -4
  64. lionagi/version.py +1 -1
  65. {lionagi-0.5.1.dist-info → lionagi-0.5.2.dist-info}/METADATA +4 -2
  66. {lionagi-0.5.1.dist-info → lionagi-0.5.2.dist-info}/RECORD +71 -70
  67. lionagi/core/typing/config.py +0 -15
  68. lionagi/core/typing/id.py +0 -221
  69. /lionagi/core/typing/{pydantic_.py → _pydantic.py} +0 -0
  70. /lionagi/core/typing/{typing_.py → _typing.py} +0 -0
  71. /lionagi/integrations/{services.py → _services.py} +0 -0
  72. {lionagi-0.5.1.dist-info → lionagi-0.5.2.dist-info}/WHEEL +0 -0
  73. {lionagi-0.5.1.dist-info → lionagi-0.5.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,23 +1,11 @@
1
- """
2
- Copyright 2024 HaiyangLi
3
-
4
- Licensed under the Apache License, Version 2.0 (the "License");
5
- you may not use this file except in compliance with the License.
6
- You may obtain a copy of the License at
7
-
8
- http://www.apache.org/licenses/LICENSE-2.0
9
-
10
- Unless required by applicable law or agreed to in writing, software
11
- distributed under the License is distributed on an "AS IS" BASIS,
12
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- See the License for the specific language governing permissions and
14
- limitations under the License.
15
- """
1
+ # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
16
4
 
17
5
  from pydantic import BaseModel
18
6
  from pydantic.fields import FieldInfo
19
7
 
20
- from lionagi.core.typing import FieldModel, NewModelParams
8
+ from lionagi.core.typing import FieldModel, ModelParams
21
9
  from lionagi.protocols.operatives.operative import Operative
22
10
 
23
11
  from .action import (
@@ -54,7 +42,7 @@ class Step:
54
42
  operative_name: str | None = None,
55
43
  reason: bool = False,
56
44
  actions: bool = False,
57
- request_params: NewModelParams | None = None,
45
+ request_params: ModelParams | None = None,
58
46
  parameter_fields: dict[str, FieldInfo] | None = None,
59
47
  base_type: type[BaseModel] | None = None,
60
48
  field_models: list[FieldModel] | None = None,
@@ -72,7 +60,7 @@ class Step:
72
60
  operative_name (str, optional): Name of the operative.
73
61
  reason (bool, optional): Whether to include reason field.
74
62
  actions (bool, optional): Whether to include action fields.
75
- request_params (NewModelParams, optional): Parameters for the new model.
63
+ request_params (ModelParams, optional): Parameters for the new model.
76
64
  parameter_fields (dict[str, FieldInfo], optional): Parameter fields for the model.
77
65
  base_type (type[BaseModel], optional): Base type for the model.
78
66
  field_models (list[FieldModel], optional): List of field models.
@@ -100,7 +88,7 @@ class Step:
100
88
  ACTION_REQUIRED_FIELD,
101
89
  ]
102
90
  )
103
- request_params = request_params or NewModelParams(
91
+ request_params = request_params or ModelParams(
104
92
  parameter_fields=parameter_fields,
105
93
  base_type=base_type,
106
94
  field_models=field_models,
@@ -119,7 +107,7 @@ class Step:
119
107
  *,
120
108
  operative: Operative,
121
109
  additional_data: dict | None = None,
122
- response_params: NewModelParams | None = None,
110
+ response_params: ModelParams | None = None,
123
111
  field_models: list[FieldModel] | None = None,
124
112
  frozen_response: bool = False,
125
113
  response_config_dict: dict | None = None,
@@ -131,7 +119,7 @@ class Step:
131
119
  Args:
132
120
  operative (Operative): The operative instance to update.
133
121
  additional_data (dict | None, optional): Additional data to include in the response.
134
- response_params (NewModelParams | None, optional): Parameters for the response model.
122
+ response_params (ModelParams | None, optional): Parameters for the response model.
135
123
  field_models (list[FieldModel] | None, optional): List of field models.
136
124
  frozen_response (bool, optional): Whether the response model is frozen.
137
125
  response_config_dict (dict | None, optional): Configuration dictionary for the response.
@@ -162,7 +150,7 @@ class Step:
162
150
  @staticmethod
163
151
  def _create_response_type(
164
152
  operative: Operative,
165
- response_params: NewModelParams | None = None,
153
+ response_params: ModelParams | None = None,
166
154
  response_validators: dict | None = None,
167
155
  frozen_response: bool = False,
168
156
  response_config_dict: dict | None = None,
@@ -174,7 +162,7 @@ class Step:
174
162
 
175
163
  Args:
176
164
  operative (Operative): The operative instance.
177
- response_params (NewModelParams | None, optional): Parameters for the response model.
165
+ response_params (ModelParams | None, optional): Parameters for the response model.
178
166
  response_validators (dict | None, optional): Validators for the response model.
179
167
  frozen_response (bool, optional): Whether the response model is frozen.
180
168
  response_config_dict (dict | None, optional): Configuration dictionary for the response.
@@ -0,0 +1,19 @@
1
+ # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ from .action import ActionRequestModel, ActionResponseModel
6
+ from .instruct import Instruct
7
+ from .operative import Operative
8
+ from .reason import ReasonModel
9
+ from .step import Step, StepModel
10
+
11
+ __all__: list[str] = [
12
+ "Operative",
13
+ "Step",
14
+ "ActionRequestModel",
15
+ "ActionResponseModel",
16
+ "StepModel",
17
+ "Instruct",
18
+ "ReasonModel",
19
+ ]
@@ -0,0 +1,3 @@
1
+ # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
@@ -1,3 +1,7 @@
1
+ # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
1
5
  from lionagi.protocols.adapters.adapter import AdapterRegistry
2
6
  from lionagi.protocols.adapters.json_adapter import (
3
7
  JsonAdapter,
@@ -1,3 +1,7 @@
1
+ # Copyright (c) 2023 - 2024, HaiyangLi <quantocean.li at gmail dot com>
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
1
5
  from lionagi.protocols.adapters.adapter import AdapterRegistry
2
6
  from lionagi.protocols.adapters.json_adapter import (
3
7
  JsonAdapter,
@@ -1,3 +1,5 @@
1
+ from lionagi.integrations.litellm_.imodel import LiteiModel
2
+
1
3
  from .imodel import iModel
2
4
  from .rate_limiter import RateLimiter, RateLimitError
3
5
  from .service import Service, register_service
@@ -10,4 +12,5 @@ __all__ = [
10
12
  "RateLimitError",
11
13
  "invoke_retry",
12
14
  "iModel",
15
+ "LiteiModel",
13
16
  ]
@@ -19,7 +19,7 @@ def match_service(service_name: str, **kwargs):
19
19
  return key1 == key2
20
20
 
21
21
  if service_name == "openai":
22
- from lionagi.integrations.services import OpenAIService
22
+ from lionagi.integrations._services import OpenAIService
23
23
 
24
24
  api_key = kwargs.get("api_key")
25
25
  openai_organization = kwargs.get("openai_organization")
@@ -44,7 +44,7 @@ def match_service(service_name: str, **kwargs):
44
44
  )
45
45
 
46
46
  elif service_name == "anthropic":
47
- from lionagi.integrations.services import AnthropicService
47
+ from lionagi.integrations._services import AnthropicService
48
48
 
49
49
  api_key = kwargs.get("api_key")
50
50
  api_version = kwargs.get("api_version", "2023-06-01")
@@ -63,7 +63,7 @@ def match_service(service_name: str, **kwargs):
63
63
  )
64
64
 
65
65
  elif service_name == "perplexity":
66
- from lionagi.integrations.services import PerplexityService
66
+ from lionagi.integrations._services import PerplexityService
67
67
 
68
68
  api_key = kwargs.get("api_key")
69
69
  api_version = kwargs.get("api_version", "2023-06-01")
@@ -77,7 +77,7 @@ def match_service(service_name: str, **kwargs):
77
77
  return PerplexityService(api_key=api_key)
78
78
 
79
79
  elif service_name == "groq":
80
- from lionagi.integrations.services import GroqService
80
+ from lionagi.integrations._services import GroqService
81
81
 
82
82
  api_key = kwargs.get("api_key")
83
83
  for service in ServiceSetting.services.values():
lionagi/settings.py CHANGED
@@ -1,19 +1,18 @@
1
1
  from datetime import timezone
2
2
  from enum import Enum
3
3
 
4
- from lionagi.protocols.configs import (
4
+ from lionagi.protocols.configs.types import (
5
5
  BranchConfig,
6
- LionIDConfig,
6
+ LogConfig,
7
7
  MessageConfig,
8
8
  RetryConfig,
9
9
  TimedFuncCallConfig,
10
10
  iModelConfig,
11
11
  )
12
- from lionagi.protocols.configs.log_config import LogConfig
13
12
 
14
13
 
15
14
  class BaseSystemFields(str, Enum):
16
- ln_id = "ln_id"
15
+ LN_ID = "ln_id"
17
16
  TIMESTAMP = "timestamp"
18
17
  METADATA = "metadata"
19
18
  EXTRA_FIELDS = "extra_fields"
@@ -22,15 +21,8 @@ class BaseSystemFields(str, Enum):
22
21
  EMBEDDING = "embedding"
23
22
 
24
23
 
25
- DEFAULT_ID_CONFIG = LionIDConfig(
26
- n=36,
27
- random_hyphen=True,
28
- num_hyphens=4,
29
- hyphen_start_index=6,
30
- hyphen_end_index=-6,
31
- prefix="ao",
32
- postfix="",
33
- )
24
+ UUID_VERSION = 4
25
+
34
26
 
35
27
  DEFAULT_TIMED_FUNC_CALL_CONFIG = TimedFuncCallConfig(
36
28
  initial_delay=0,
@@ -61,7 +53,7 @@ DEFAULT_CHAT_CONFIG = iModelConfig(
61
53
  )
62
54
 
63
55
 
64
- DEFAULT_RETRY_iMODEL_CONFIG = iModelConfig(
56
+ DEFAULT_PARSE_CONFIG = iModelConfig(
65
57
  provider="openai",
66
58
  task="chat",
67
59
  model="gpt-4o-mini",
@@ -109,7 +101,7 @@ DEFAULT_BRANCH_CONFIG = BranchConfig(
109
101
  auto_register_tools=True,
110
102
  action_call_config=DEFAULT_TIMED_FUNC_CALL_CONFIG,
111
103
  imodel_config=DEFAULT_CHAT_CONFIG,
112
- retry_imodel_config=DEFAULT_RETRY_iMODEL_CONFIG,
104
+ retry_imodel_config=DEFAULT_PARSE_CONFIG,
113
105
  )
114
106
 
115
107
 
@@ -120,7 +112,7 @@ BASE_LION_FIELDS = set(BaseSystemFields.__members__.values())
120
112
  class Settings:
121
113
 
122
114
  class Config:
123
- ID: LionIDConfig = DEFAULT_ID_CONFIG
115
+ UUID_VERSION: int = UUID_VERSION
124
116
  RETRY: RetryConfig = DEFAULT_RETRY_CONFIG
125
117
  TIMED_CALL: TimedFuncCallConfig = DEFAULT_TIMED_FUNC_CALL_CONFIG
126
118
  TIMEZONE: timezone = DEFAULT_TIMEZONE
@@ -129,8 +121,8 @@ class Settings:
129
121
  BRANCH: BranchConfig = DEFAULT_BRANCH_CONFIG
130
122
 
131
123
  class iModel:
132
- CHAT: dict = {"model": "openai/gpt-4o"}
133
- PARSE: iModelConfig = DEFAULT_CHAT_CONFIG
124
+ CHAT: iModelConfig = DEFAULT_CHAT_CONFIG
125
+ PARSE: iModelConfig = DEFAULT_PARSE_CONFIG
134
126
 
135
127
 
136
128
  # File: autoos/setting.py
@@ -1,15 +1,14 @@
1
1
  from typing import ClassVar
2
2
 
3
- from pydantic import model_validator
3
+ from pydantic import BaseModel, model_validator
4
4
 
5
- from lionagi.fields.instruct import Instruct, InstructResponse
5
+ from lionagi.core.session.types import Branch, Session
6
+ from lionagi.protocols.operatives.instruct import Instruct, InstructResponse
6
7
 
7
- from ..protocols.types import BaseLionModel
8
- from ..session.types import Branch, Session
9
8
  from .params import StrategyParams
10
9
 
11
10
 
12
- class StrategyExecutor(BaseLionModel):
11
+ class StrategyExecutor(BaseModel):
13
12
  """Base class for different execution strategies.
14
13
 
15
14
  Each concrete executor should implement `execute()` to run instructions
@@ -1,6 +1,7 @@
1
- from lionagi.fields.instruct import Instruct, InstructResponse
2
- from lionagi.session.types import Branch
3
- from lionagi.utils import alcall, to_list
1
+ from lionagi.core.session.types import Branch
2
+ from lionagi.libs.func.types import alcall
3
+ from lionagi.libs.parse.types import to_list
4
+ from lionagi.protocols.operatives.instruct import Instruct, InstructResponse
4
5
 
5
6
  from .base import StrategyExecutor
6
7
 
@@ -1,9 +1,9 @@
1
1
  from typing import ClassVar
2
2
 
3
- from lionagi.fields.instruct import Instruct, InstructResponse
4
- from lionagi.utils import to_list
3
+ from lionagi.libs.func.types import bcall
4
+ from lionagi.libs.parse.types import to_list
5
+ from lionagi.protocols.operatives.instruct import Instruct, InstructResponse
5
6
 
6
- from ..libs.async_utils import bcall
7
7
  from .concurrent import ConcurrentExecutor
8
8
  from .params import ChunkStrategyParams
9
9
 
@@ -1,8 +1,8 @@
1
1
  from pydantic import model_validator
2
2
 
3
- from lionagi.fields.instruct import Instruct, InstructResponse
4
- from lionagi.session.types import Branch, Session
5
- from lionagi.utils import alcall
3
+ from lionagi.core.session.types import Branch, Session
4
+ from lionagi.libs.func.types import alcall
5
+ from lionagi.protocols.operatives.instruct import Instruct, InstructResponse
6
6
 
7
7
  from .base import StrategyExecutor
8
8
  from .params import HybridStrategyParams
@@ -2,10 +2,13 @@ from typing import Any, Literal
2
2
 
3
3
  from pydantic import Field, field_validator, model_validator
4
4
 
5
- from lionagi.fields.instruct import INSTRUCT_FIELD_MODEL, Instruct
6
- from lionagi.libs.async_utils import RCallParams
7
- from lionagi.protocols.types import FieldModel, SchemaModel
8
- from lionagi.session.types import Branch, Session
5
+ from lionagi.core.models.types import FieldModel, SchemaModel
6
+ from lionagi.core.session.types import Branch, Session
7
+ from lionagi.libs.func.types import RCallParams
8
+ from lionagi.protocols.operatives.instruct import (
9
+ INSTRUCT_FIELD_MODEL,
10
+ Instruct,
11
+ )
9
12
 
10
13
 
11
14
  class StrategyParams(SchemaModel):
lionagi/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.5.1"
1
+ __version__ = "0.5.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lionagi
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: An AGentic Intelligence Operating System.
5
5
  Author-email: HaiyangLi <quantocean.li@gmail.com>
6
6
  License: Apache License
@@ -218,10 +218,12 @@ Classifier: Programming Language :: Python :: 3.11
218
218
  Classifier: Programming Language :: Python :: 3.12
219
219
  Classifier: Programming Language :: Python :: 3.13
220
220
  Requires-Python: >=3.11
221
+ Requires-Dist: aiohttp>=3.11.10
221
222
  Requires-Dist: jinja2>=3.1.4
222
- Requires-Dist: litellm>=1.55.2
223
+ Requires-Dist: litellm>=1.55.3
223
224
  Requires-Dist: pandas>=2.0.0
224
225
  Requires-Dist: pillow>=11.0.0
226
+ Requires-Dist: pydantic>=2.10.3
225
227
  Requires-Dist: python-dotenv>=1.0.1
226
228
  Description-Content-Type: text/markdown
227
229
 
@@ -1,25 +1,25 @@
1
- lionagi/__init__.py,sha256=kIVZqqp61CFddL5BbYynIPwRlg3oUbSVTnWh6QOyhaM,495
2
- lionagi/settings.py,sha256=r3G-ihH5ehIKwsUdqSGKRwxKpXFj9v6kIaElZKQd7R4,2953
3
- lionagi/version.py,sha256=eZ1bOun1DDVV0YLOBW4wj2FP1ajReLjbIrGmzN7ASBw,22
1
+ lionagi/__init__.py,sha256=TGvl3bsM1uF2XANOQxClkDGdDt_u5MxXFMEvwEvaYDw,442
2
+ lionagi/settings.py,sha256=BOjxRV4N9zQJervvajPhbaHmgZ-nhbCy7AaQJi3Avug,2726
3
+ lionagi/version.py,sha256=isJrmDBLRag7Zc2UK9ZovWGOv7ji1Oh-zJtJMNJFkXw,22
4
4
  lionagi/core/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
5
5
  lionagi/core/_class_registry.py,sha256=srSWefqCS9EZrMvyA8zCrZ9KFvzAhTIj8g6mJG5KlIc,1982
6
6
  lionagi/core/action/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
7
7
  lionagi/core/action/action_manager.py,sha256=8yNWV5x8YtaoL2A_U_5xjJdruqwWw8TLPAtq3f3DC7M,10143
8
8
  lionagi/core/action/base.py,sha256=M2K3irxpp7fDwczefzZdUsHhGd_21l1xhFT9iNSbiK0,4110
9
9
  lionagi/core/action/function_calling.py,sha256=7N5UFLbHPy6yvPrR6RH9SNSwt73s0X_3iAnOV8YMy0Q,6001
10
- lionagi/core/action/tool.py,sha256=DEjfc1tABP0rPOblcKhgml9OLUQWedN7raiRuLqGxMI,6910
10
+ lionagi/core/action/tool.py,sha256=pDiyttx0obu0qDskz7POHxbyqTwHuD7HCeE31LkzRMg,6884
11
11
  lionagi/core/action/types.py,sha256=KqW5ZHXssfxuf1kIiIUoj-r3KIZEoQ_GkZ04tL6fUPQ,388
12
12
  lionagi/core/communication/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
13
- lionagi/core/communication/action_request.py,sha256=qvrJtCmGnFLYxA9OWskygzkCSU_1lNibYYAqNQeJIz0,5000
13
+ lionagi/core/communication/action_request.py,sha256=gicqQIs7VLOhnkQYsUuRmSLGittODiG3Pk74FayPSeM,5006
14
14
  lionagi/core/communication/action_response.py,sha256=QONcRtvV7Ympbzkdg5gnV0DqCC97Y-gvaA0D7EkjswM,4505
15
15
  lionagi/core/communication/assistant_response.py,sha256=WTQjBxAckMILocaZEsOP6u1mfKr3DhYVt4K8TyAh7Ek,5760
16
16
  lionagi/core/communication/base_mail.py,sha256=Et-WrHlw2x75mLIKy-wMUj3YlGGL_2BF9r1REuiZtM8,1704
17
17
  lionagi/core/communication/instruction.py,sha256=Iy3G1sp0lPuA4Ak9pLobIipou4ePLsMdGGvRq6L58UU,12454
18
- lionagi/core/communication/message.py,sha256=Truhh6NVi0bQmOqls20Y2NKM-6QIlBFfNj3Kd0EPHjU,8565
18
+ lionagi/core/communication/message.py,sha256=60yaub4C_JFnMR76D_DeYfQ_mQYoZ0eBF9Vqk2UadUw,8550
19
19
  lionagi/core/communication/message_manager.py,sha256=RnSYJUnKOKBS8dfY2804Zq2sD-C5qDvBXNxXRsMfRe0,16987
20
20
  lionagi/core/communication/system.py,sha256=5DoDODZePy4EDpE3oI5RpkzBXVp9WC2Mf4B3fPImItI,3824
21
21
  lionagi/core/communication/types.py,sha256=rBGMpE3NW0SGKc-wJdJvT-VrO3wpjwjQhoWzSC2Dqh0,745
22
- lionagi/core/communication/utils.py,sha256=vi9CCjS2b5JFQ91h2v_JP8xLjyy96c743GysOUUcb-0,6953
22
+ lionagi/core/communication/utils.py,sha256=9kaBLH2eA2XqhW_aQvqziwm__z-WlBKSM0pwWX4BFjk,6959
23
23
  lionagi/core/communication/templates/README.md,sha256=Ch4JrKSjd85fLitAYO1OhZjNOGKHoEwaKQlcV16jiUI,1286
24
24
  lionagi/core/communication/templates/action_request.jinja2,sha256=d6OmxHKyvvNDSK4bnBM3TGSUk_HeE_Q2EtLAQ0ZBEJg,120
25
25
  lionagi/core/communication/templates/action_response.jinja2,sha256=Mg0UxmXlIvtP_KPB0GcJxE1TP6lml9BwdPkW1PZxkg8,142
@@ -34,39 +34,38 @@ lionagi/core/forms/report.py,sha256=FXu8sQnGMF_nCHUJ4NrXoiptHQ2ON2a356RBGJDZmag,
34
34
  lionagi/core/forms/types.py,sha256=5k8RNj87c0lHlSPrqnz4aY6--Lopg3u80qgKyRNuhuY,247
35
35
  lionagi/core/forms/utils.py,sha256=sCjYRy-EJIh1py9qIb04LVgALy2YiPHbhXhNyDNwvoQ,701
36
36
  lionagi/core/generic/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
37
- lionagi/core/generic/component.py,sha256=_U9S8vRbbA7dwsdFbqi0V1bEunq9CIYjQz-DG8gb4w8,13773
37
+ lionagi/core/generic/component.py,sha256=3y0t-fyLR2n2E8ooa7_VI5bx_lV1S82wOAp2pn7qAzA,13801
38
38
  lionagi/core/generic/edge.py,sha256=E0uw1nbviepTtmhxZjIieksE5utZo2Yk1Wn28tmRf1k,4972
39
- lionagi/core/generic/element.py,sha256=lzAH42pqfO4-N8H03fjcKMy1prRI4tZMEDXG_Bc09zU,5722
40
- lionagi/core/generic/graph.py,sha256=Pw-RcZyfzO6d8fKcZlsklyCVso5Ntkwb---GZG1xNuU,11916
41
- lionagi/core/generic/log.py,sha256=6d1Zs9S_C6TxeJvAAIgrzupEwZ1x8M40Z6uGsmeFjyU,4960
39
+ lionagi/core/generic/element.py,sha256=PAqL_7PQPb9PcGHTBz7qZMuN-gcjClSCkQllcBP1pyc,5851
40
+ lionagi/core/generic/graph.py,sha256=5uFU5rEHzzIQRtQrY2BO75wv5ekrFZskTnUK0GnuZJo,11921
41
+ lionagi/core/generic/log.py,sha256=QQfgDSrw6YwHRjYV3kRc6ztnJHTLx0IdV-fjymrmZmQ,4976
42
42
  lionagi/core/generic/log_manager.py,sha256=MLlY2s3_xlDTwntQPdrQOrdbc0V1qwrKpMheSU7Tt3E,10426
43
43
  lionagi/core/generic/node.py,sha256=GYlc2CKVuNLns2_DL7YS2e8Z3CYGDSWsablQSHuUN3Q,236
44
- lionagi/core/generic/pile.py,sha256=Z1u7unyJsQ5wFzRjwjJMIf8H8okr8vOdo567eX7RLFg,29501
45
- lionagi/core/generic/progression.py,sha256=1iPOjkcjY5SaEsNvnd3y6P9t2Bb6mN8pPYtpdlNDvkM,11520
44
+ lionagi/core/generic/pile.py,sha256=wzN6M8XISsnvZs2dsswnRBqwS0CP5VNQ4pmC8BUcd8U,29452
45
+ lionagi/core/generic/progression.py,sha256=mrR9K-q3R5DJ9LtUCHwJ1T8NFdMwuz6vTmG11pX5vLE,11784
46
46
  lionagi/core/generic/types.py,sha256=vcMgOD3puTETk5hpWQBYq1p31e0JnvcqAyKu8zslIdU,615
47
- lionagi/core/generic/utils.py,sha256=PiHSrC1_0zx5R7jjPuU9GfGSKfvNTuRVDbtnXtfg0X8,1407
47
+ lionagi/core/generic/utils.py,sha256=RE_CE1HALogxBDz72tAubVBTvUCUmtox-GdWPkOSvLw,1548
48
48
  lionagi/core/models/__init__.py,sha256=O7nV0tedpUe7_OlUWmCcduGPFtqtzWZcR_SIOnjLsro,134
49
- lionagi/core/models/base.py,sha256=xragc2IBqSYtIoOBJVRc2g8C3GR0gV1ipiFxclkdZWM,2554
50
- lionagi/core/models/field_model.py,sha256=Tdj6c-w78XRtqYxftLB2MeK0-8wE2_TUCr4xYfQ6qQU,4171
51
- lionagi/core/models/new_model_params.py,sha256=i_uVdlPZ7BeLPQhW-d1M3gunZ1ii_HWHYdNg7Gb73VY,6906
52
- lionagi/core/models/note.py,sha256=NeEP3boq4GZqvhOZ_XvbVgSSJT87sQwh8c7KdND-nkw,9424
53
- lionagi/core/models/operable_model.py,sha256=XhwoamKwZUMc2WympWukNvly4ssR-e58kcRMFc5gIDQ,11837
54
- lionagi/core/models/schema_model.py,sha256=1GNCStg10VWyhqjN4ojxs9mt60T5o8I8_ZX7DupJZro,1383
55
- lionagi/core/models/types.py,sha256=I8khSl0c-O2UgYLMss5akvIFscogjfgKTE2sT6Tg50I,270
49
+ lionagi/core/models/base.py,sha256=t1tI1mwcla2YLwKGpKGm1uUH--GQ0W9qrqzZ1SQlZ5k,818
50
+ lionagi/core/models/field_model.py,sha256=iB0UUEY2P7rv25f7CfVlSQDT8ddgPvB-FqYQYwnK5nc,4941
51
+ lionagi/core/models/model_params.py,sha256=iXrNalt6UAY5SH9HSrYBK9Ia-73ZBc6K48btcQNditc,6900
52
+ lionagi/core/models/note.py,sha256=7O8kXxoXeVHHYzmlbLoW0Rd99pYngPZbOpEszIX_fos,9424
53
+ lionagi/core/models/operable_model.py,sha256=zuXDjoNI2-jLFxp3XWITtzIv0-CQ6FO6DQydXZIv0J4,11913
54
+ lionagi/core/models/schema_model.py,sha256=H2tSX3r0U6MDNi929rWmAZy3nUKMP47RG-Ma0O-QYNY,667
55
+ lionagi/core/models/types.py,sha256=elcUuz_9dx4AhZddnICF-Cs62VJWIBqMET7MiRe4c1I,447
56
56
  lionagi/core/session/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
57
- lionagi/core/session/branch.py,sha256=MZXmE7Ne8_CGxgS_Jo5Qak3wJdvut4ZXgF2j8zPMstc,4241
58
- lionagi/core/session/branch_mixins.py,sha256=OvN29nHieren4YQQ47VQ3ZfxKPBwIR7_lrxcefSwJLc,19766
59
- lionagi/core/session/session.py,sha256=0DW8HoU_Eqki4UeKIaEuXWBb08N_OkxoDWQyH211M9g,5195
57
+ lionagi/core/session/branch.py,sha256=KxdfUnwxLUZlDN5axEmyel86UZDQ6mK_-NB1EQvy6jY,4320
58
+ lionagi/core/session/branch_mixins.py,sha256=C9lGHmD1AmXAePw0kGIeuZjZ7SzOrFcIwV6rVaGhoGg,19623
59
+ lionagi/core/session/session.py,sha256=Uup50oMqs00ZH6zgEiqtk0pG_ANByHW_Ael07dfbT1M,5122
60
60
  lionagi/core/session/types.py,sha256=MUGTSa2HWK79p7z-CG22RFP07N5AKnPVNXZwZt_wIvU,202
61
- lionagi/core/typing/__init__.py,sha256=THyLLjX2WgKkycQPNxXWWl1BVh7XCrQMuAh8WE4UhP8,226
62
- lionagi/core/typing/concepts.py,sha256=UBsX9ZD6IpWt-roHn7Q8-2Iw6JMHfZkYFrfhmku1sqg,2709
63
- lionagi/core/typing/config.py,sha256=AxvPxVHwxXHH3WNXRf4rf2VIgGBeaW9MUJASL63bVyg,332
64
- lionagi/core/typing/id.py,sha256=gIftkjFxEBLiRsn3g_p9Bo-rq6yxHwOp_12QyVn_1OE,6704
65
- lionagi/core/typing/pydantic_.py,sha256=xMNyT0rDhSpKkEDfzj6GHobqlTtRn48svhmA75LP6gs,653
66
- lionagi/core/typing/typing_.py,sha256=VJj5W6y-JGK1ZzSbyDs4qAuq0cA5wp5HtRgZUsZ50E0,869
61
+ lionagi/core/typing/__init__.py,sha256=Y9BK1OUXzjQgIo3epCVwWqUYhFwQQ_ayhRwI1UOmINg,228
62
+ lionagi/core/typing/_concepts.py,sha256=uIzqfwtPBsIREhvT7NDAowc4i-u-69n_DRzLHzvHZO4,3730
63
+ lionagi/core/typing/_id.py,sha256=6BLrpYxfeb8ZVByc-v3EvAjyidYHY55l3BL_Ndc7mSE,2651
64
+ lionagi/core/typing/_pydantic.py,sha256=xMNyT0rDhSpKkEDfzj6GHobqlTtRn48svhmA75LP6gs,653
65
+ lionagi/core/typing/_typing.py,sha256=VJj5W6y-JGK1ZzSbyDs4qAuq0cA5wp5HtRgZUsZ50E0,869
67
66
  lionagi/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- lionagi/integrations/services.py,sha256=qxffUaPKvp2Bb_LI3Uiyokm7l6ZAbRi0xKxZXCYs67c,498
69
- lionagi/integrations/anthropic_/AnthropicModel.py,sha256=SOqO0xlmOZ9CMl7aEmQylXjDnHJ3c5oyR7POQLrWWGc,9064
67
+ lionagi/integrations/_services.py,sha256=qxffUaPKvp2Bb_LI3Uiyokm7l6ZAbRi0xKxZXCYs67c,498
68
+ lionagi/integrations/anthropic_/AnthropicModel.py,sha256=3Mzw7g6KjCZMzRgURH1AgqUJvmS3AqZaF5k_q4f77j8,9228
70
69
  lionagi/integrations/anthropic_/AnthropicService.py,sha256=Z6fGD2nLEKOm3cDK4Gy0_Vl289KAxX1wswCWsEDpp4E,3656
71
70
  lionagi/integrations/anthropic_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
72
71
  lionagi/integrations/anthropic_/anthropic_max_output_token_data.yaml,sha256=u_CT9UAXoNpbAWuPHMxH9g4erZW7XUwY4vdSXyE86t4,203
@@ -84,7 +83,7 @@ lionagi/integrations/anthropic_/api_endpoints/messages/response/__init__.py,sha2
84
83
  lionagi/integrations/anthropic_/api_endpoints/messages/response/content_models.py,sha256=4J40thUbg3leKZKRy7v_YmS-trW1KVXpLzevt7v3IZ8,1033
85
84
  lionagi/integrations/anthropic_/api_endpoints/messages/response/response_body.py,sha256=96e2GAAiTGkExRullvAsAOGhPPHNByhnv6DK_wz1j40,3213
86
85
  lionagi/integrations/anthropic_/api_endpoints/messages/response/usage_models.py,sha256=s6oe5iOU027M7YPS10upnvcPsuFbTV1ZM00lInHPKvA,695
87
- lionagi/integrations/groq_/GroqModel.py,sha256=8vIHjzcYoIeRvzXQpBDd-ASx6gXckr5qhmUqJJ9UL1g,11721
86
+ lionagi/integrations/groq_/GroqModel.py,sha256=y2KaFe8GmlTBnBRvB09dNjYYhNEjq2wujYfB8YzGNHI,11950
88
87
  lionagi/integrations/groq_/GroqService.py,sha256=v3bn04njIwV7ysOlfLCmapOhHZJy3bNUTr0i12tFqME,4644
89
88
  lionagi/integrations/groq_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
90
89
  lionagi/integrations/groq_/groq_max_output_token_data.yaml,sha256=Y0PbyZ7pyyV1zi7ZJSJGVPsZDhSeN2JMOyghzkqqoKc,559
@@ -97,7 +96,7 @@ lionagi/integrations/groq_/api_endpoints/groq_request.py,sha256=u-GJuu0ZsY7jMWaX
97
96
  lionagi/integrations/groq_/api_endpoints/match_response.py,sha256=95vRKsR1QYPPmBY36dC5azdKn5UlXNRrTQqTUZro_YM,3756
98
97
  lionagi/integrations/groq_/api_endpoints/response_utils.py,sha256=P5kRsGHe-Rx9xejfRcU8q680yotcWLTSaSUuqXATcho,3710
99
98
  lionagi/integrations/litellm_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
100
- lionagi/integrations/litellm_/imodel.py,sha256=8TalouW9bb1TBlbPeRJjySHrR6u9Chgru43qmYTIYBE,2183
99
+ lionagi/integrations/litellm_/imodel.py,sha256=YBaG5f8BavbhooVv7xQXC68K6N7AxPMcUAhgJ1TlYNw,2227
101
100
  lionagi/integrations/ollama_/OllamaModel.py,sha256=5kBYIWShsSpQpSgOxdbRk2_4jmss6Y8iISjUcS3KoWw,8341
102
101
  lionagi/integrations/ollama_/OllamaService.py,sha256=bJ4kk1FPjn_kecLzxTJgVj05KZPzF5FclHoDA3jdAlg,4080
103
102
  lionagi/integrations/ollama_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
@@ -126,7 +125,7 @@ lionagi/integrations/ollama_/api_endpoints/model/list_model.py,sha256=OrGdJa0evj
126
125
  lionagi/integrations/ollama_/api_endpoints/model/pull_model.py,sha256=fiZJcQSRn73SJA9GdlfPBG5RiMISQwBc0y7S_zAlOGA,923
127
126
  lionagi/integrations/ollama_/api_endpoints/model/push_model.py,sha256=yDOMVu3ajdNFT1cuzb4R_3qDxlk0qT4aM2oget3aHZ4,961
128
127
  lionagi/integrations/ollama_/api_endpoints/model/show_model.py,sha256=CclV6pEmm5iYM25ePnMAiicVJmZzolDim7BsQoEJAw0,864
129
- lionagi/integrations/openai_/OpenAIModel.py,sha256=TOQtliWIV_LsfkfmVK8BHVNMnni-jh60EBN1uj73lCI,15816
128
+ lionagi/integrations/openai_/OpenAIModel.py,sha256=4SYgSlz5ZMcpEGf_epF8n4emd7ze1UutTjKDJvZDYcQ,15980
130
129
  lionagi/integrations/openai_/OpenAIService.py,sha256=P0sGnxeWPKe15_KndqCgEdM74AKVJ6NJsgFGORqqlrk,13507
131
130
  lionagi/integrations/openai_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
131
  lionagi/integrations/openai_/openai_max_output_token_data.yaml,sha256=3gd8TGnFjy4AdHzvsV9wZjK_r_o26pe3Th75n5eN2zs,263
@@ -207,7 +206,7 @@ lionagi/integrations/openai_/api_endpoints/uploads/complete_upload.py,sha256=elP
207
206
  lionagi/integrations/openai_/api_endpoints/uploads/create_upload.py,sha256=1RxKMgeAJxnVUz7-EtTK5c0nbMm5AQD-cj_W1Bo4rSI,479
208
207
  lionagi/integrations/openai_/api_endpoints/uploads/uploads_models.py,sha256=QzmbGiuDejCD8Zxqt92fztGy8ROQS3GmlFouXsWvcik,1561
209
208
  lionagi/integrations/openai_/image_token_calculator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
- lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py,sha256=XH5RgB1ZEIGnU9Epbg4x1hO2prO0wUMun-U-iXz4u-s,3022
209
+ lionagi/integrations/openai_/image_token_calculator/image_token_calculator.py,sha256=4ubm_89-v6WTZwbnRMNUDoflhT2PsiBcnNXt556JO6Y,3302
211
210
  lionagi/integrations/openai_/image_token_calculator/openai_image_token_data.yaml,sha256=xKmjPoJGYepK9_zGMTJgjHZiFNc0MuGLm2DF3o9tv70,204
212
211
  lionagi/integrations/pandas_/__init__.py,sha256=DlYvunk0IwQxpLGcro69crklbACEA9sgRLBE79yVGrs,639
213
212
  lionagi/integrations/pandas_/extend_df.py,sha256=G-IpoZFE5v3bZyVl9d06lMeU7pQOqvWrjCurAoEwDiM,2261
@@ -218,7 +217,7 @@ lionagi/integrations/pandas_/save.py,sha256=HBFdPoOJG9cTC_quWw7REWvM1ino_nTD8gSQ
218
217
  lionagi/integrations/pandas_/search_keywords.py,sha256=AJfN8QVu6rUni6As8AOTnzne_rDrsXp-YUduBF1f4wE,2241
219
218
  lionagi/integrations/pandas_/to_df.py,sha256=3vAOCj0Ib2PZNCblg1oA20PjRIrUXR86FHICQLNhLu0,5757
220
219
  lionagi/integrations/pandas_/update_cells.py,sha256=7X1bGcPvnEINrLM_zFCWUXIkrFdMGV3TjoEYBq_SThs,1658
221
- lionagi/integrations/perplexity_/PerplexityModel.py,sha256=FfOR3WwOgZZEw97mai3D9PJS5C1jsZii2tAX5n0IR8s,9171
220
+ lionagi/integrations/perplexity_/PerplexityModel.py,sha256=06kURklzmc3f-TPwdB3a2zbYttfBTSlBrgZG_Tkw680,9335
222
221
  lionagi/integrations/perplexity_/PerplexityService.py,sha256=q5Ruy60H3cL2a4LOUjB2JI6bkMwKiWVSlrjpATREwqM,3641
223
222
  lionagi/integrations/perplexity_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
224
223
  lionagi/integrations/perplexity_/perplexity_max_output_token_data.yaml,sha256=SY6nDrDRhI_HzEBYHaANR_Mc5GRa0SY9Pw_wRuVBlV4,121
@@ -238,7 +237,7 @@ lionagi/integrations/pydantic_/break_down_annotation.py,sha256=q9zjhoJkvYjjpfLH_
238
237
  lionagi/integrations/pydantic_/new_model.py,sha256=MtlQ86kYeYApAxPLvsXVCDNMKQsFVUvIEcHqbY3SQ7o,6576
239
238
  lionagi/libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
239
  lionagi/libs/constants.py,sha256=nxZbZVo2msiYDsWMRth_VuqVLaa4CbqaM4CAn0zYXcM,2199
241
- lionagi/libs/utils.py,sha256=2gyPZBDMw8Zqqy4X6lxbeImdVoSmf0gZSl34mVmXH6M,7447
240
+ lionagi/libs/utils.py,sha256=dr-UxZw_XUoNUdvy2HGHWaW3YzTsR23fVkD4Hv-oJtU,7652
242
241
  lionagi/libs/compress/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
242
  lionagi/libs/compress/models.py,sha256=AX6BElvEnnYnCnZzTlJUXknhVGrSTpDHO7DBkSKH0v8,1773
244
243
  lionagi/libs/compress/utils.py,sha256=-U54mWr9_u19BYaS_VNCPCRQQ4kDgB4x4_WNr1WGR8U,2289
@@ -257,12 +256,12 @@ lionagi/libs/func/params.py,sha256=y9duFaU7yQ_2cHHln8wbEGhwrKRHhjLwjHhpduEm8Rs,1
257
256
  lionagi/libs/func/throttle.py,sha256=iOOmS6i81NGRCClf4WaIhMMXwPt_rZ6WXYBqMJ_weEE,3418
258
257
  lionagi/libs/func/types.py,sha256=wdjGNmY82pVACQBuDMUt3XJO0G9_wKHR7VesOeMxo_A,831
259
258
  lionagi/libs/func/utils.py,sha256=-LMdUEjksXP6JjjcUBh0XEQiXF30Zmv3xpKbmXjfya8,2674
260
- lionagi/libs/func/async_calls/__init__.py,sha256=CuMBwJxb9wzq9vcmt72LTlOqmXnBYxDY47R9Ks-6uO8,397
261
- lionagi/libs/func/async_calls/alcall.py,sha256=9yxLmlXPh_ScfMF9H52qoIapvntvA4NLYmd51GSRLak,5825
262
- lionagi/libs/func/async_calls/bcall.py,sha256=7lFLl39sSurK3-Tmtv_QKvhEaBrEV9pLTzKK-t90Nrs,2902
259
+ lionagi/libs/func/async_calls/__init__.py,sha256=qDHIkH7B-Ka5NJqeeyu_YL3TY36xL8kBwTjtCR4H8AU,495
260
+ lionagi/libs/func/async_calls/alcall.py,sha256=U8-lWwqNwhe50Q07kzyW4YVcbx_LkUN5X1K1zvFg7i0,7283
261
+ lionagi/libs/func/async_calls/bcall.py,sha256=gwfKpRZkExjVn-1YGZfaboFES8RqUgyaBrdpNtz1IdY,4436
263
262
  lionagi/libs/func/async_calls/mcall.py,sha256=9O5gWbBT4iIqXfcdZjgAdqsOSLWrNS4_tt6ou231ozA,4607
264
263
  lionagi/libs/func/async_calls/pcall.py,sha256=6u3RJPV-3yOkWxC9iSoVFl1veFfZFJpR0QRyGtfBODI,5831
265
- lionagi/libs/func/async_calls/rcall.py,sha256=8EtcnFYF2oQHn6Vs_zS7q-5MgfE4qWbSeyEZEBq9rj0,6188
264
+ lionagi/libs/func/async_calls/rcall.py,sha256=pe4flHq88mpalMxloal72GbczALI4PlyixppaA5JxyY,7127
266
265
  lionagi/libs/func/async_calls/tcall.py,sha256=3Kz30kiSts6smZ_x_RRY1gBxpo8p5GwqEMnoamEbWXk,4033
267
266
  lionagi/libs/func/async_calls/ucall.py,sha256=PuV4YZeSMUaSiW8lkHpeA4W-TKU2YH7KZYqx1E6O0y8,2655
268
267
  lionagi/libs/package/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -318,56 +317,58 @@ lionagi/libs/string_similarity/utils.py,sha256=NdD0qF5tuytWBsm0WMrH0gRBBSxw2p4-m
318
317
  lionagi/operations/__init__.py,sha256=Dt7o6DFP7zVR-uxZ4xsGHQcse3XVlF6S8Y9NhaUTn_4,68
319
318
  lionagi/operations/utils.py,sha256=kn5SkZRczl1aQ-vJBeVPlMdeyUUD0s5iyuAW4P6KOvQ,1164
320
319
  lionagi/operations/brainstorm/__init__.py,sha256=amsoH65wepsx58DfgH-TRTN1wDH5TC24qYI_f02zkVg,61
321
- lionagi/operations/brainstorm/brainstorm.py,sha256=zrwGlIapbwGC34rFNzLcjg4b60W3uxQT_diV36c3zdA,6273
320
+ lionagi/operations/brainstorm/brainstorm.py,sha256=fLTO5RFXHzGf7TDJXMV2tuPSYblPYtI52BCJnhHUoao,6273
322
321
  lionagi/operations/brainstorm/prompt.py,sha256=95t8SEEzaaEj0x0l5H5HsWaHSiPn-YqH9GaxaQYX0Dw,459
323
322
  lionagi/operations/plan/__init__.py,sha256=SVqoVmlSGz9lsLztm487H2qOLwgyFxSi2yZ8ubn-bgE,43
324
- lionagi/operations/plan/plan.py,sha256=SzQ2mRDlz1qvVSYpeMQhGvDtyaweuQQlhyJCoLh3w9A,5611
323
+ lionagi/operations/plan/plan.py,sha256=Ui8fFdRNLiD3RJmnKCwfY48yj0Fxxw2LBye0egYttWE,5611
325
324
  lionagi/operations/plan/prompt.py,sha256=ze79yFvZ_mBz4m-nS5ly9IK2PC43xl87_hfbwfj5jkw,763
326
325
  lionagi/operations/select/__init__.py,sha256=dUd-KS1l404_ueYlIQsVNhS9jAqjn5pJbtUEbbh6KlI,49
327
326
  lionagi/operations/select/prompt.py,sha256=wbmuDC96fcQ4LFKjqmeErOQwVRpGWRqcwUeLTWnbeNs,186
328
327
  lionagi/operations/select/select.py,sha256=2lQ8el8bQV1kaUF-r5IBfgaGhD2bvrLd9zwfqvcWYgk,3164
329
328
  lionagi/operations/select/utils.py,sha256=JYx-AwR9m9KyUmCwfNm3NAQ6NKYzc3Ti_mV6_f8G_MI,3258
330
- lionagi/protocols/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
+ lionagi/protocols/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
331
330
  lionagi/protocols/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
331
  lionagi/protocols/adapters/adapter.py,sha256=pOnp30ND8rGdotJTIItXG9EDwqJuFO9zp5ShyiqPezk,2250
333
332
  lionagi/protocols/adapters/json_adapter.py,sha256=yCt_GgR6WJfjFWBqeCb6HPtJ0slfepBJi8O0VUeEW8Y,936
334
333
  lionagi/protocols/adapters/pandas_adapter.py,sha256=-ypnH2XAROyIjTv9yrzFpPgqwur67hWAOEubI24Ncpk,2679
335
- lionagi/protocols/configs/__init__.py,sha256=8CFN8Lv6F0aJ4Xy7pslnpNTe18dBFaddvzOrAsZuOp0,383
336
- lionagi/protocols/configs/branch_config.py,sha256=gUcbT0l1lh2wMoiM1RvmBYma3YdhrsF-oso3cbb9hbU,2727
334
+ lionagi/protocols/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
+ lionagi/protocols/configs/branch_config.py,sha256=ypsIQycjDSTcGxAfp1k3gSnkvuFJOCJxdUY2ZloRTb4,2727
337
336
  lionagi/protocols/configs/id_config.py,sha256=hkYNorTUfgD3t-kGCQuxi6RGIqsUAn-0RXXxzGCiXxs,360
338
- lionagi/protocols/configs/imodel_config.py,sha256=WEelayVt3GbgDgna-EjgQlXgJZzQOx1AlGcMrWJ2OBg,2317
339
- lionagi/protocols/configs/log_config.py,sha256=ZPi_D2DFyVTgzoA2yEfqWXkpB0bdkf9dHZstqeNkWAE,2995
337
+ lionagi/protocols/configs/imodel_config.py,sha256=ctZ9RisIEJe-EpwXg-co15MY4UEvHBmAVQokfSHe4Cc,2317
338
+ lionagi/protocols/configs/log_config.py,sha256=Zfrh0DTem-PrTHgXyFepXsz34bEwlwH5I59iqSekqGY,2995
340
339
  lionagi/protocols/configs/retry_config.py,sha256=pZwV-iV7YoyPpJgSJTbIXYjOKQjzudnZ7dsSOuy3ZSw,843
341
- lionagi/protocols/operatives/__init__.py,sha256=SZElTB0uORZ8EvGpSf6thJGCbKgKjiKx9Bl8zbBUfYM,350
342
- lionagi/protocols/operatives/action.py,sha256=BtV9MY544TxXLxskyC1Hj8Rz1dxbfcSpmFW5p8nxlIg,4741
343
- lionagi/protocols/operatives/instruct.py,sha256=ZTxaFep2XUtv2Dgb3hwD4qf-IVPKHrBHsvXHYPJxcak,5198
344
- lionagi/protocols/operatives/operative.py,sha256=ejoOBEnxUOgPx_tj-cAm_al-mH3MWF5D5sXJ0SAlDGM,7111
345
- lionagi/protocols/operatives/prompts.py,sha256=1H22Xyv-HQzaZq54v10d_iwdLR7hy5X4lobBdU2aXZY,8871
346
- lionagi/protocols/operatives/reason.py,sha256=rVTMuDzwqSr3wYXsPXYY5pU7iQNy9qeBkcYGZN-Z-ZU,1328
347
- lionagi/protocols/operatives/step.py,sha256=gX-ahLbsaHPvrIINnOH19IUx2BBXt14n1GpMjeSaZ2I,8652
348
- lionagi/protocols/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
- lionagi/protocols/registries/_component_registry.py,sha256=MRA8bAgmjqNsFUnzq1I7JuqOGQa1WZrkzWeHq59pY_I,453
350
- lionagi/protocols/registries/_pile_registry.py,sha256=iHiQsd0dapzu7L2YA-VPo7qAw6gjWdDETKe_zh1zhHk,543
351
- lionagi/service/__init__.py,sha256=xuMab03l9QSeBmq0GXjkTE-Oh2R10l0aful5swKrjas,296
340
+ lionagi/protocols/configs/types.py,sha256=8CFN8Lv6F0aJ4Xy7pslnpNTe18dBFaddvzOrAsZuOp0,383
341
+ lionagi/protocols/operatives/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
342
+ lionagi/protocols/operatives/action.py,sha256=cWIyehhB750Sp1w9jPTV-DXcQRLhCFNp2TXHysQvGLU,4854
343
+ lionagi/protocols/operatives/instruct.py,sha256=WRtFi-bxgmymVNBU-nw6wpM2qcWcU7btCf2MFEC3Pq8,5311
344
+ lionagi/protocols/operatives/operative.py,sha256=jGsnPSn7LeJE9H-fGjHYIY2N_QgclZpmch8tlshUMcg,6620
345
+ lionagi/protocols/operatives/prompts.py,sha256=-ZGLS1Cbv1ll9-I-GIyAuqT01PRMwOhxcn4z3Ek3ibA,8984
346
+ lionagi/protocols/operatives/reason.py,sha256=i5iIr0xdMISbrJ_u6fQO4MZy0aceX8nYcETVfHILh-8,1441
347
+ lionagi/protocols/operatives/step.py,sha256=ePFmRyuJ0v_X9BVgzkFAv8afqnic6Zmjt4MGzlCeLpk,8155
348
+ lionagi/protocols/operatives/types.py,sha256=SPFX2EHHoJF2ZMgxoJrNlf02QlcAk7ijup6kY5GhrK0,463
349
+ lionagi/protocols/registries/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
350
+ lionagi/protocols/registries/_component_registry.py,sha256=C04oie1-CQJCoXsjZ6hYAIMRySriAFzROA9CPfO0Isg,566
351
+ lionagi/protocols/registries/_pile_registry.py,sha256=l2RbkjW6OGOHsgPIq9OitIi27r8Fk0vziMI8N_tP3nQ,656
352
+ lionagi/service/__init__.py,sha256=AQS0ezBCtjZOUbT_QEH-Ev5l41-Pk0_KgmKHUgf_Y_A,375
352
353
  lionagi/service/complete_request_info.py,sha256=V9cWqmQ-fo952EWCooAvezaM_xuxYU4Xy0Jo_0XJnug,301
353
354
  lionagi/service/imodel.py,sha256=laiwc4FvO0jHpf7Q9GrL0VIABCIInkn0ld8XUcbabKo,4191
354
355
  lionagi/service/rate_limiter.py,sha256=1cCtKfpOo_8h4ZN-oX5HXtnq0iGjF1rxi8htyu65kMU,3746
355
356
  lionagi/service/service.py,sha256=58FPZzLM85fNm4WgSzmZRwbHHuLUW1K0VagKZ7A2ZAs,1077
356
- lionagi/service/service_match_util.py,sha256=Re2zJgqsBV9LnDcn5N9pUGMQB_O8-jCTR3ZH6-nxFds,4301
357
+ lionagi/service/service_match_util.py,sha256=gjGzfQeQqkyxMrKx8aINS47r3Pmugbcx8JjmvbEBg7Y,4305
357
358
  lionagi/service/service_util.py,sha256=z0tU_wAgWq_gDfm_QeNfDbrsmseumoNxVQ1bEpOCBzg,2985
358
359
  lionagi/service/token_calculator.py,sha256=6FQ7GvCq4nBo_7QbNyekYJmQrVIzL0CNwiztK3QSR3M,1486
359
360
  lionagi/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
- lionagi/strategies/base.py,sha256=xDsX5-LOypAJ65F1_Tk9Gqows7DFxgL_xoXvNUC7OwU,1723
361
- lionagi/strategies/concurrent.py,sha256=_prVllDu6WRreUn9nqBHclOXf8NrvfrewTAqH2nGLwI,2592
362
- lionagi/strategies/concurrent_chunk.py,sha256=NhJBbt83pQvhS9GDyRknr9PprGGb2KcPEQZhQdDj5Ro,1582
363
- lionagi/strategies/concurrent_sequential_chunk.py,sha256=eTOdbOIlkfwiX-CYyEtJ9_-o0F6I19ORN7IyIQxrzIE,3529
364
- lionagi/strategies/params.py,sha256=aHfeoaOiyIYx-CXbbo_NbWdyoeC4kU8lzpBPMT2N4So,4826
361
+ lionagi/strategies/base.py,sha256=l8ZQDHOW9eWrWJrsQFvci3PKuog9S697ulwO3o-y30M,1711
362
+ lionagi/strategies/concurrent.py,sha256=mrpRfxIxsC0u7JCx2P39Kcnlp7x20cLAdFD4k03hETw,2657
363
+ lionagi/strategies/concurrent_chunk.py,sha256=V4Ydg4IWe91OXLJAxc3yhQN8gVySj3tpotwvmeOQxmY,1612
364
+ lionagi/strategies/concurrent_sequential_chunk.py,sha256=iN0tPj5II1vg1XvM1--zi1hgALi1mz1GTjfLs1v8a1w,3558
365
+ lionagi/strategies/params.py,sha256=KsPtRcX-tM1aphyfLZdDnjnkT6fZHQ5ZewWtf4_Ch4U,4859
365
366
  lionagi/strategies/sequential.py,sha256=pd6MQwCeHDJzC9cNwC6LDtPmrutD_gAo46sOlO_CJR0,822
366
367
  lionagi/strategies/sequential_chunk.py,sha256=jG_WZXG-Ra3yd30CmX4b3XeCNAUrZGA2-i8pSPZGZy0,3032
367
368
  lionagi/strategies/sequential_concurrent_chunk.py,sha256=H7GShaqYlD5XxNJMG2GdOR4Vl8JHDhZb5jxNq8zY0hI,3365
368
369
  lionagi/strategies/types.py,sha256=fEvE4d1H4SeCcXcd2dz3q4k8jFIBtxYzjxDN7eJRLtI,769
369
370
  lionagi/strategies/utils.py,sha256=DX1dvxia8cNRqEJJbssJ3mgRzo7kgWCTA4y5DYLCCZE,1281
370
- lionagi-0.5.1.dist-info/METADATA,sha256=FkuZDqqzBAOOQ-y96QXAK_E__O5tbVZAhxIsQggkL7U,22672
371
- lionagi-0.5.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
372
- lionagi-0.5.1.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
373
- lionagi-0.5.1.dist-info/RECORD,,
371
+ lionagi-0.5.2.dist-info/METADATA,sha256=V8Q9Mtjss6_gk1rH4myIQa-HMUw66XV4S3GRa54p9WY,22736
372
+ lionagi-0.5.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
373
+ lionagi-0.5.2.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
374
+ lionagi-0.5.2.dist-info/RECORD,,