lionagi 0.13.5__py3-none-any.whl → 0.13.7__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.
- lionagi/_types.py +1 -0
- lionagi/fields/base.py +0 -1
- lionagi/libs/schema/load_pydantic_model_from_schema.py +4 -6
- lionagi/operations/ReAct/ReAct.py +0 -2
- lionagi/operations/ReAct/utils.py +1 -9
- lionagi/operations/flow.py +7 -21
- lionagi/operations/operate/operate.py +0 -3
- lionagi/operations/utils.py +3 -1
- lionagi/service/connections/endpoint_config.py +12 -1
- lionagi/session/branch.py +0 -4
- lionagi/session/prompts.py +0 -1
- lionagi/version.py +1 -1
- {lionagi-0.13.5.dist-info → lionagi-0.13.7.dist-info}/METADATA +4 -1
- {lionagi-0.13.5.dist-info → lionagi-0.13.7.dist-info}/RECORD +16 -16
- {lionagi-0.13.5.dist-info → lionagi-0.13.7.dist-info}/WHEEL +0 -0
- {lionagi-0.13.5.dist-info → lionagi-0.13.7.dist-info}/licenses/LICENSE +0 -0
lionagi/_types.py
CHANGED
lionagi/fields/base.py
CHANGED
@@ -13,18 +13,16 @@ from pydantic import BaseModel, PydanticUserError
|
|
13
13
|
|
14
14
|
from lionagi.utils import is_import_installed
|
15
15
|
|
16
|
-
_HAS_DATAMODEL_CODE_GENERATOR = is_import_installed("
|
16
|
+
_HAS_DATAMODEL_CODE_GENERATOR = is_import_installed("datamodel_code_generator")
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
from datamodel_code_generator import (
|
18
|
+
try:
|
19
|
+
from datamodel_code_generator import ( # type: ignore[import]
|
21
20
|
DataModelType,
|
22
21
|
InputFileType,
|
23
22
|
PythonVersion,
|
24
23
|
generate,
|
25
24
|
)
|
26
|
-
|
27
|
-
# Create dummy objects for when package is not installed
|
25
|
+
except ImportError:
|
28
26
|
DataModelType = None
|
29
27
|
InputFileType = None
|
30
28
|
PythonVersion = None
|
@@ -285,8 +285,6 @@ async def ReActStream(
|
|
285
285
|
operate_kwargs["include_token_usage_to_model"] = (
|
286
286
|
include_token_usage_to_model
|
287
287
|
)
|
288
|
-
if analysis.action_batch_size:
|
289
|
-
operate_kwargs["action_batch_size"] = analysis.action_batch_size
|
290
288
|
if irfm:
|
291
289
|
operate_kwargs["field_models"] = operate_kwargs.get(
|
292
290
|
"field_models", []
|
@@ -94,20 +94,12 @@ class ReActAnalysis(HashableModel):
|
|
94
94
|
),
|
95
95
|
)
|
96
96
|
|
97
|
-
action_strategy: Literal["sequential", "concurrent"
|
97
|
+
action_strategy: Literal["sequential", "concurrent"] = Field(
|
98
98
|
"concurrent",
|
99
99
|
description=(
|
100
100
|
"Specifies how to invoke the planned actions:\n"
|
101
101
|
"'sequential' => Each action is run in order, \n"
|
102
102
|
"'concurrent' => All actions run in parallel, \n"
|
103
|
-
"'batch' => Divide actions into async batches of N (if reasonable)."
|
104
|
-
),
|
105
|
-
)
|
106
|
-
|
107
|
-
action_batch_size: int | None = Field(
|
108
|
-
None,
|
109
|
-
description=(
|
110
|
-
"provide if and only if action_strategy is 'batch', this specifies the number of actions to run in parallel per batch."
|
111
103
|
),
|
112
104
|
)
|
113
105
|
|
lionagi/operations/flow.py
CHANGED
@@ -3,10 +3,12 @@
|
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
4
4
|
|
5
5
|
import asyncio
|
6
|
+
import contextlib
|
6
7
|
from typing import Any
|
7
8
|
|
8
9
|
from lionagi.operations.node import Operation
|
9
|
-
from lionagi.
|
10
|
+
from lionagi.operations.utils import prepare_session
|
11
|
+
from lionagi.protocols.types import ID, Edge, Graph, Node
|
10
12
|
from lionagi.session.branch import Branch
|
11
13
|
from lionagi.session.session import Session
|
12
14
|
from lionagi.utils import to_dict
|
@@ -44,19 +46,10 @@ async def flow(
|
|
44
46
|
if not graph.is_acyclic():
|
45
47
|
raise ValueError("Graph must be acyclic for flow execution")
|
46
48
|
|
47
|
-
|
49
|
+
session, branch = prepare_session(session, branch)
|
48
50
|
if not parallel or max_concurrent == 1:
|
49
51
|
return await _execute_sequential(branch, graph, context, verbose)
|
50
52
|
|
51
|
-
# Parallel execution using session
|
52
|
-
if session is None:
|
53
|
-
# Create temporary session for this flow
|
54
|
-
from lionagi.session.session import Session
|
55
|
-
|
56
|
-
session = Session()
|
57
|
-
session.branches.include(branch)
|
58
|
-
session.default_branch = branch
|
59
|
-
|
60
53
|
return await _execute_parallel(
|
61
54
|
session, graph, context, max_concurrent, verbose
|
62
55
|
)
|
@@ -167,7 +160,7 @@ async def _execute_parallel(
|
|
167
160
|
|
168
161
|
# Process nodes in dependency order
|
169
162
|
remaining_nodes = {node.id for node in operation_nodes}
|
170
|
-
executing_tasks = {}
|
163
|
+
executing_tasks: dict[ID[Operation], asyncio.Task] = {}
|
171
164
|
blocked_nodes = set() # Nodes that have been checked and found blocked
|
172
165
|
|
173
166
|
max_iterations = 1000 # Prevent infinite loops
|
@@ -392,7 +385,7 @@ async def _dependencies_satisfied_async(
|
|
392
385
|
) -> bool:
|
393
386
|
"""Check if node dependencies are satisfied and edge conditions pass."""
|
394
387
|
# Get all incoming edges to this node
|
395
|
-
incoming_edges = []
|
388
|
+
incoming_edges: list[Edge] = []
|
396
389
|
for edge in graph.internal_edges:
|
397
390
|
if edge.tail == node.id:
|
398
391
|
incoming_edges.append(edge)
|
@@ -406,10 +399,6 @@ async def _dependencies_satisfied_async(
|
|
406
399
|
for edge in incoming_edges:
|
407
400
|
# Check if predecessor is completed
|
408
401
|
if edge.head not in completed:
|
409
|
-
# If edge has no condition, we need to wait for predecessor
|
410
|
-
if not edge.condition:
|
411
|
-
continue
|
412
|
-
# If edge has condition but predecessor not complete, skip
|
413
402
|
continue
|
414
403
|
|
415
404
|
# Predecessor is completed
|
@@ -423,12 +412,9 @@ async def _dependencies_satisfied_async(
|
|
423
412
|
result_value = to_dict(result_value, recursive=True)
|
424
413
|
|
425
414
|
ctx = {"result": result_value, "context": execution_context or {}}
|
426
|
-
|
415
|
+
with contextlib.suppress(Exception):
|
427
416
|
if await edge.condition.apply(ctx):
|
428
417
|
at_least_one_satisfied = True
|
429
|
-
except Exception as e:
|
430
|
-
# Condition evaluation failed
|
431
|
-
continue
|
432
418
|
else:
|
433
419
|
# No condition, edge is satisfied
|
434
420
|
at_least_one_satisfied = True
|
@@ -51,7 +51,6 @@ async def operate(
|
|
51
51
|
action_strategy: Literal[
|
52
52
|
"sequential", "concurrent", "batch"
|
53
53
|
] = "concurrent",
|
54
|
-
action_batch_size: int = None,
|
55
54
|
verbose_action: bool = False,
|
56
55
|
field_models: list[FieldModel] = None,
|
57
56
|
exclude_fields: list | dict | None = None,
|
@@ -194,8 +193,6 @@ async def operate(
|
|
194
193
|
if instruct.action_strategy
|
195
194
|
else action_kwargs.get("strategy", "concurrent")
|
196
195
|
)
|
197
|
-
if action_batch_size:
|
198
|
-
action_kwargs["batch_size"] = action_batch_size
|
199
196
|
|
200
197
|
action_response_models = await branch.act(
|
201
198
|
response_model.action_requests,
|
lionagi/operations/utils.py
CHANGED
@@ -7,7 +7,9 @@ from lionagi.session.session import Branch, Session
|
|
7
7
|
|
8
8
|
|
9
9
|
def prepare_session(
|
10
|
-
session
|
10
|
+
session: Session | None = None,
|
11
|
+
branch: Branch | None = None,
|
12
|
+
branch_kwargs=None,
|
11
13
|
) -> tuple[Session, Branch]:
|
12
14
|
if session is not None:
|
13
15
|
if branch is not None:
|
@@ -2,6 +2,7 @@
|
|
2
2
|
#
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
4
4
|
|
5
|
+
import logging
|
5
6
|
import os
|
6
7
|
from typing import Any, TypeVar
|
7
8
|
|
@@ -17,6 +18,9 @@ from pydantic import (
|
|
17
18
|
|
18
19
|
from .header_factory import AUTH_TYPES
|
19
20
|
|
21
|
+
logger = logging.getLogger(__name__)
|
22
|
+
|
23
|
+
|
20
24
|
B = TypeVar("B", bound=type[BaseModel])
|
21
25
|
|
22
26
|
|
@@ -32,7 +36,7 @@ class EndpointConfig(BaseModel):
|
|
32
36
|
auth_type: AUTH_TYPES = "bearer"
|
33
37
|
default_headers: dict = {}
|
34
38
|
request_options: B | None = None
|
35
|
-
api_key: str | SecretStr | None = None
|
39
|
+
api_key: str | SecretStr | None = Field(None, exclude=True)
|
36
40
|
timeout: int = 300
|
37
41
|
max_retries: int = 3
|
38
42
|
openai_compatible: bool = False
|
@@ -98,9 +102,16 @@ class EndpointConfig(BaseModel):
|
|
98
102
|
return v.__class__
|
99
103
|
if isinstance(v, dict | str):
|
100
104
|
from lionagi.libs.schema.load_pydantic_model_from_schema import (
|
105
|
+
_HAS_DATAMODEL_CODE_GENERATOR,
|
101
106
|
load_pydantic_model_from_schema,
|
102
107
|
)
|
103
108
|
|
109
|
+
if not _HAS_DATAMODEL_CODE_GENERATOR:
|
110
|
+
logger.warning(
|
111
|
+
"datamodel-code-generator is not installed, "
|
112
|
+
"request_options will not be validated"
|
113
|
+
)
|
114
|
+
return None
|
104
115
|
return load_pydantic_model_from_schema(v)
|
105
116
|
except Exception as e:
|
106
117
|
raise ValueError("Invalid request options") from e
|
lionagi/session/branch.py
CHANGED
@@ -920,7 +920,6 @@ class Branch(Element, Communicatable, Relational):
|
|
920
920
|
action_strategy: Literal[
|
921
921
|
"sequential", "concurrent", "batch"
|
922
922
|
] = "concurrent",
|
923
|
-
action_batch_size: int = None,
|
924
923
|
verbose_action: bool = False,
|
925
924
|
field_models: list[FieldModel] = None,
|
926
925
|
exclude_fields: list | dict | None = None,
|
@@ -990,8 +989,6 @@ class Branch(Element, Communicatable, Relational):
|
|
990
989
|
Additional parameters for the `branch.act()` call if tools are invoked.
|
991
990
|
action_strategy (Literal["sequential","concurrent","batch"], optional):
|
992
991
|
The strategy for invoking tools (default: "concurrent").
|
993
|
-
action_batch_size (int, optional):
|
994
|
-
The batch size for concurrent tool invocation if `action_strategy="batch"`.
|
995
992
|
verbose_action (bool, optional):
|
996
993
|
If `True`, logs detailed information about tool invocation.
|
997
994
|
field_models (list[FieldModel] | None, optional):
|
@@ -1041,7 +1038,6 @@ class Branch(Element, Communicatable, Relational):
|
|
1041
1038
|
reason=reason,
|
1042
1039
|
action_kwargs=action_kwargs,
|
1043
1040
|
action_strategy=action_strategy,
|
1044
|
-
action_batch_size=action_batch_size,
|
1045
1041
|
verbose_action=verbose_action,
|
1046
1042
|
field_models=field_models,
|
1047
1043
|
exclude_fields=exclude_fields,
|
lionagi/session/prompts.py
CHANGED
@@ -42,7 +42,6 @@ Actions are invoked by providing the tool function name and the required paramet
|
|
42
42
|
and choose the appropriate action strategy.
|
43
43
|
- 'sequential': execute actions in sequence
|
44
44
|
- 'concurrent': execute all actions concurrently
|
45
|
-
- 'batch': execute all actions in batch, each batch is concurrent
|
46
45
|
|
47
46
|
---
|
48
47
|
## Note:
|
lionagi/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.13.
|
1
|
+
__version__ = "0.13.7"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: lionagi
|
3
|
-
Version: 0.13.
|
3
|
+
Version: 0.13.7
|
4
4
|
Summary: An Intelligence Operating System.
|
5
5
|
Author-email: HaiyangLi <quantocean.li@gmail.com>, Liangbingyan Luo <llby_luo@outlook.com>
|
6
6
|
License: Apache License
|
@@ -235,6 +235,7 @@ Requires-Dist: tiktoken>=0.8.0
|
|
235
235
|
Requires-Dist: toml>=0.9.0
|
236
236
|
Provides-Extra: all
|
237
237
|
Requires-Dist: claude-code-sdk>=0.0.14; extra == 'all'
|
238
|
+
Requires-Dist: datamodel-code-generator>=0.31.2; extra == 'all'
|
238
239
|
Requires-Dist: docling>=2.15.1; extra == 'all'
|
239
240
|
Requires-Dist: fastmcp>=2.10.5; extra == 'all'
|
240
241
|
Requires-Dist: ollama>=0.4.0; extra == 'all'
|
@@ -257,6 +258,8 @@ Provides-Extra: reader
|
|
257
258
|
Requires-Dist: docling>=2.15.1; extra == 'reader'
|
258
259
|
Provides-Extra: rich
|
259
260
|
Requires-Dist: rich>=13.0.0; extra == 'rich'
|
261
|
+
Provides-Extra: schema
|
262
|
+
Requires-Dist: datamodel-code-generator>=0.31.2; extra == 'schema'
|
260
263
|
Provides-Extra: test
|
261
264
|
Requires-Dist: pytest-asyncio>=1.0.0; extra == 'test'
|
262
265
|
Requires-Dist: pytest>=8.3.4; extra == 'test'
|
@@ -1,15 +1,15 @@
|
|
1
1
|
lionagi/__init__.py,sha256=x_DLjvYZp15u2L3pjIKrUDvvdDBzf7VmrhYVzbsACjU,725
|
2
2
|
lionagi/_class_registry.py,sha256=pfUO1DjFZIqr3OwnNMkFqL_fiEBrrf8-swkGmP_KDLE,3112
|
3
3
|
lionagi/_errors.py,sha256=S02keQTY2IMkTvpLe00v7P7b8QNJ0PrZ1KWmQWCEQAA,500
|
4
|
-
lionagi/_types.py,sha256=
|
4
|
+
lionagi/_types.py,sha256=9cKKDMl0l5DLGhHzDAtnlKT2XqLv1IeynmhFYBno2_k,185
|
5
5
|
lionagi/config.py,sha256=Dxs5FA9UCv1YX5H54qOJcPsDrIF9wFokWEPZ212eH-k,3715
|
6
6
|
lionagi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
lionagi/settings.py,sha256=HDuKCEJCpc4HudKodBnhoQUGuTGhRHdlIFhbtf3VBtY,1633
|
8
8
|
lionagi/utils.py,sha256=8zCdJHKbDJv2WSzAAiFnMSpvfyZb9RnmfSNaMEqdTJE,79003
|
9
|
-
lionagi/version.py,sha256=
|
9
|
+
lionagi/version.py,sha256=YilxH0DSMK7mdSphWpemdLgoy2nZkSlwrns9E36XZrw,23
|
10
10
|
lionagi/fields/__init__.py,sha256=yrn9NDAM6_v73kK7aJeb-Pvqigeu8WASaV-My-6CDsc,939
|
11
11
|
lionagi/fields/action.py,sha256=OziEpbaUeEVo34KdtbzDxXJBgkf3QLxlcKIQAfHe4O0,5791
|
12
|
-
lionagi/fields/base.py,sha256=
|
12
|
+
lionagi/fields/base.py,sha256=mvgqxLonCROszMjnG8QWt00l-MvIr_mnGvCtaH-SQ_k,3814
|
13
13
|
lionagi/fields/code.py,sha256=TFym51obzaSfCmeRoHZJyBtjfDI4tvl9F-1sjFc9rMw,7713
|
14
14
|
lionagi/fields/file.py,sha256=DhQ_HE0RvTNzkvBGQHRgbMYSokDkzE8GEu814i6jw5Q,7297
|
15
15
|
lionagi/fields/instruct.py,sha256=sMbCxEv0HQLa31JkJDmdrWWEzIfeKbcmN2hYOehz3Q0,4773
|
@@ -46,7 +46,7 @@ lionagi/libs/schema/extract_code_block.py,sha256=PuJbJj1JnqR5fSZudowPcVPpEoKISLr
|
|
46
46
|
lionagi/libs/schema/extract_docstring.py,sha256=uWyUevXS4JSN60tfouoBBAyE4_jyE-fz45CiS-fvKeI,5714
|
47
47
|
lionagi/libs/schema/function_to_schema.py,sha256=XAB031WbYu3a7eFJyYjXVMAjmtWYSYr5kC_DYgjiuyM,5604
|
48
48
|
lionagi/libs/schema/json_schema.py,sha256=cuHcaMr748O9g6suNGmRx4tRXcidd5-c7AMGjTIZyHM,7670
|
49
|
-
lionagi/libs/schema/load_pydantic_model_from_schema.py,sha256=
|
49
|
+
lionagi/libs/schema/load_pydantic_model_from_schema.py,sha256=p4UTgGcb2Tmxc9tLznHPSOWXnHeztJLpl6XTSDcIZ90,10078
|
50
50
|
lionagi/libs/token_transform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
lionagi/libs/token_transform/base.py,sha256=LBnaDgi4HNgaJJGwIzWcQjVMdu49i_93rRvOvMU22Rw,1545
|
52
52
|
lionagi/libs/token_transform/llmlingua.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
@@ -84,14 +84,14 @@ lionagi/models/operable_model.py,sha256=fXbcpBjO-SoaeF8fn-F1_KIcYw9_L73VIUM1BDg5
|
|
84
84
|
lionagi/models/schema_model.py,sha256=ghRIM8aBNaToAknwNlhQKpuKXcwzyCw5pDE31bVKxs0,667
|
85
85
|
lionagi/operations/__init__.py,sha256=L22n8rRls9oVdzHoDlznHFGiKJMNw3ZhbwVQbm1Fn6M,584
|
86
86
|
lionagi/operations/builder.py,sha256=6OEPQuONlJuC7bkrmaxOrurMdygjSsvwEX_Zsqf1EmM,20300
|
87
|
-
lionagi/operations/flow.py,sha256=
|
87
|
+
lionagi/operations/flow.py,sha256=o_o_UTXvW1MRvsCwbIXG5pbJPEvLA0d3Qb7Fk3wRHF4,14627
|
88
88
|
lionagi/operations/manager.py,sha256=7KD6NMWqYJHCPI2LumDRwGinF8WYKFjrr3bsNUi9xzI,564
|
89
89
|
lionagi/operations/node.py,sha256=JNJpn_LUP_46F7C8DcvwAg6rzlaRKzs9RcVGQakARyU,3066
|
90
90
|
lionagi/operations/types.py,sha256=fM8HphnbBifMzhoKKvdl3JxGCBHlEGPJEYkLWj9b7vE,704
|
91
|
-
lionagi/operations/utils.py,sha256=
|
92
|
-
lionagi/operations/ReAct/ReAct.py,sha256=
|
91
|
+
lionagi/operations/utils.py,sha256=b8HmpF5vRgmf6PTzg3_fZCIKMnhoGa0HCyOlX6JCz7g,1263
|
92
|
+
lionagi/operations/ReAct/ReAct.py,sha256=UzW3MClv9_w1AqrZIuATOZ9ASTb8HPD0Rlotlp0mYOg,13388
|
93
93
|
lionagi/operations/ReAct/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
94
|
-
lionagi/operations/ReAct/utils.py,sha256=
|
94
|
+
lionagi/operations/ReAct/utils.py,sha256=mBKii3zIxVg-l18fXUfDqGTK0h0JX_DcM2jO_YwRRu4,4117
|
95
95
|
lionagi/operations/_act/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
96
96
|
lionagi/operations/_act/act.py,sha256=LfN4UqTTHVvO1h9tqmDhVfVafVUOry4YGEivIZbmLqc,2810
|
97
97
|
lionagi/operations/brainstorm/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
@@ -106,7 +106,7 @@ lionagi/operations/instruct/instruct.py,sha256=7pxhyP5jxwpgqjmQNb1rnGF4QAVlbMENp
|
|
106
106
|
lionagi/operations/interpret/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
107
107
|
lionagi/operations/interpret/interpret.py,sha256=yl1NSp2iOm3dbycVLEcnV3absnqKoubfH15v6lQgySU,1500
|
108
108
|
lionagi/operations/operate/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
109
|
-
lionagi/operations/operate/operate.py,sha256=
|
109
|
+
lionagi/operations/operate/operate.py,sha256=G-VGjvhKxxgQLyoxigOYcYHMOazyM1ESQMfbrM33SPM,7233
|
110
110
|
lionagi/operations/parse/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
111
111
|
lionagi/operations/parse/parse.py,sha256=xS9uIxBzHLGD-1VpBVgGUhxF-tQDkF2KLmIpErM47RQ,6661
|
112
112
|
lionagi/operations/plan/__init__.py,sha256=yGBPll6lOqVjadbTvDLGrTlMx3FfBW-e00z7AMvg7Uo,156
|
@@ -175,7 +175,7 @@ lionagi/service/types.py,sha256=6zavqBxK1Fj0nB9eZgJn3JICxmdT-n0nn8YWZFzM5LU,508
|
|
175
175
|
lionagi/service/connections/__init__.py,sha256=yHQZ7OJpCftd6CStYR8inbxjJydYdmv9kCvbUBhJ2zU,362
|
176
176
|
lionagi/service/connections/api_calling.py,sha256=XetCrjMhOHNKGGv-NzHhBhVS7XjKPalrS_iExzU-4S4,8005
|
177
177
|
lionagi/service/connections/endpoint.py,sha256=yNIjq9wETMnytynGbq3qY_dkyaMlaHrcfiZjS-tnmLg,14756
|
178
|
-
lionagi/service/connections/endpoint_config.py,sha256=
|
178
|
+
lionagi/service/connections/endpoint_config.py,sha256=7u5HDWe-4nttG2cDXtx_OxPzAI4DAA0bPtjJ6BA4gk8,5162
|
179
179
|
lionagi/service/connections/header_factory.py,sha256=22sG4ian3MiNklF6SdQqkEYgtWKOZik_yDE0Lna6BiE,1754
|
180
180
|
lionagi/service/connections/match_endpoint.py,sha256=K3I4vU6GH6utlEArlyDFUmNdnp94CEPxqKrehAx29J4,2410
|
181
181
|
lionagi/service/connections/providers/__init__.py,sha256=3lzOakDoBWmMaNnT2g-YwktPKa_Wme4lnPRSmOQfayY,105
|
@@ -193,8 +193,8 @@ lionagi/service/third_party/exa_models.py,sha256=G_hnekcy-DillPLzMoDQ8ZisVAL8Mp7
|
|
193
193
|
lionagi/service/third_party/openai_models.py,sha256=sF-fQ726CnaDBgLY_r2NdPqc3GicPKhZjh5F8IfjBO0,501904
|
194
194
|
lionagi/service/third_party/pplx_models.py,sha256=Nkm1ftESBa_NwP9ITBUNqLmAZ3Jh92aL732g_i6T8LQ,5947
|
195
195
|
lionagi/session/__init__.py,sha256=kDypY6L3kGPnatAw7YNQAykgg-9MlIBnlhHExaXvt-c,202
|
196
|
-
lionagi/session/branch.py,sha256=
|
197
|
-
lionagi/session/prompts.py,sha256=
|
196
|
+
lionagi/session/branch.py,sha256=bMNZQhCB7s_vWCOqQ3X1w2gZ9mhkDUMf21OvJGMWOyM,69713
|
197
|
+
lionagi/session/prompts.py,sha256=GPr0jibyAAqS3awDzGC8SoCL6aWJLLCCbXY0JUuxOC0,3170
|
198
198
|
lionagi/session/session.py,sha256=otln9YGw-YBxkeW7N2qlhFztO9PpPP-erIW86_rSAzg,10770
|
199
199
|
lionagi/tools/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
200
200
|
lionagi/tools/base.py,sha256=cld32pyjaTUdyiqZ8hNyJjWKAhcJ8RQNhgImI7R8b-E,1940
|
@@ -202,7 +202,7 @@ lionagi/tools/types.py,sha256=XtJLY0m-Yi_ZLWhm0KycayvqMCZd--HxfQ0x9vFUYDE,230
|
|
202
202
|
lionagi/tools/file/__init__.py,sha256=5y5joOZzfFWERl75auAcNcKC3lImVJ5ZZGvvHZUFCJM,112
|
203
203
|
lionagi/tools/file/reader.py,sha256=0TdnfVGVCKuM58MmGM-NyVjhU9BFoitkNYEepdc0z_Y,9529
|
204
204
|
lionagi/tools/memory/tools.py,sha256=zTGBenVsF8Wuh303kWntmQSGlAFKonHNdh5ePuQ26KE,15948
|
205
|
-
lionagi-0.13.
|
206
|
-
lionagi-0.13.
|
207
|
-
lionagi-0.13.
|
208
|
-
lionagi-0.13.
|
205
|
+
lionagi-0.13.7.dist-info/METADATA,sha256=T36rPnR5fYVnSIh2kR6NbYLgzIjtKNvtwR3knFT9fs0,20818
|
206
|
+
lionagi-0.13.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
207
|
+
lionagi-0.13.7.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
|
208
|
+
lionagi-0.13.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|