lionagi 0.7.2__py3-none-any.whl → 0.7.4__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/__init__.py CHANGED
@@ -2,12 +2,12 @@
2
2
  #
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
- from lionagi.operations import types as op
6
- from lionagi.operatives import types as ops_types
7
- from lionagi.protocols import types as types
8
- from lionagi.service.imodel import iModel
9
- from lionagi.session.session import Branch, Session
10
- from lionagi.version import __version__
5
+ from . import _types as types
6
+ from .operations import types as op
7
+ from .operatives import types as ops_types # deprecated
8
+ from .service.imodel import iModel
9
+ from .session.session import Branch, Session
10
+ from .version import __version__
11
11
 
12
12
  LiteiModel = iModel
13
13
 
lionagi/_types.py ADDED
@@ -0,0 +1,2 @@
1
+ from .operatives.types import *
2
+ from .protocols.types import *
@@ -151,12 +151,7 @@ async def chat(
151
151
  kwargs["messages"] = [i.chat_msg for i in messages]
152
152
  imodel = imodel or branch.chat_model
153
153
 
154
- api_call = None
155
- if kwargs.get("stream", None) is True:
156
- api_call = await imodel.stream(**kwargs)
157
- else:
158
- api_call = await imodel.invoke(**kwargs)
159
-
154
+ api_call = await imodel.invoke(**kwargs)
160
155
  branch._log_manager.log(Log.create(api_call))
161
156
 
162
157
  if return_ins_res_message:
@@ -3,9 +3,10 @@
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import asyncio
6
- from typing import Any, Self
6
+ from typing import Any
7
7
 
8
8
  from pydantic import Field, model_validator
9
+ from typing_extensions import Self
9
10
 
10
11
  from lionagi.protocols.generic.event import Event, EventStatus
11
12
  from lionagi.utils import is_coro_func
@@ -10,9 +10,10 @@ type aliases for function references.
10
10
 
11
11
  import inspect
12
12
  from collections.abc import Callable
13
- from typing import Any, Self, TypeAlias
13
+ from typing import Any, TypeAlias
14
14
 
15
15
  from pydantic import Field, field_validator, model_validator
16
+ from typing_extensions import Self
16
17
 
17
18
  from lionagi.libs.schema.function_to_schema import function_to_schema
18
19
  from lionagi.libs.validate.common_field_validators import validate_callable
@@ -3,10 +3,11 @@
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  from collections.abc import Callable
6
- from typing import Any, Self
6
+ from typing import Any
7
7
 
8
8
  from pydantic import ConfigDict, Field, field_validator, model_validator
9
9
  from pydantic.fields import FieldInfo
10
+ from typing_extensions import Self
10
11
 
11
12
  from lionagi.libs.validate.common_field_validators import (
12
13
  validate_callable,
@@ -4,7 +4,6 @@
4
4
 
5
5
  import inspect
6
6
  from collections.abc import Callable
7
- from typing import Self
8
7
 
9
8
  from pydantic import (
10
9
  BaseModel,
@@ -15,6 +14,7 @@ from pydantic import (
15
14
  model_validator,
16
15
  )
17
16
  from pydantic.fields import FieldInfo
17
+ from typing_extensions import Self
18
18
 
19
19
  from lionagi.libs.validate.common_field_validators import (
20
20
  validate_boolean_field,
@@ -3,9 +3,10 @@
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  from collections.abc import ItemsView, Iterator, ValuesView
6
- from typing import Any, TypeAlias, override
6
+ from typing import Any, TypeAlias
7
7
 
8
8
  from pydantic import BaseModel, ConfigDict, Field, field_serializer
9
+ from typing_extensions import override
9
10
 
10
11
  from lionagi.libs.nested.flatten import flatten
11
12
  from lionagi.libs.nested.nget import nget
@@ -2,12 +2,12 @@
2
2
  #
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
- from typing import Any, Self, TypeVar
5
+ from typing import Any, TypeVar
6
6
 
7
7
  from pydantic import ConfigDict, Field, field_validator, model_validator
8
8
  from pydantic.fields import FieldInfo
9
9
  from pydantic_core import PydanticUndefined
10
- from typing_extensions import override
10
+ from typing_extensions import Self, override
11
11
 
12
12
  from lionagi.utils import UNDEFINED, HashableModel, is_same_dtype
13
13
 
@@ -2,10 +2,9 @@
2
2
  #
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
- from typing import Self
6
-
7
5
  from pydantic import BaseModel, Field, PrivateAttr, model_validator
8
6
  from pydantic.fields import FieldInfo
7
+ from typing_extensions import Self
9
8
 
10
9
  from lionagi.libs.validate.fuzzy_match_keys import fuzzy_match_keys
11
10
  from lionagi.operatives.models.schema_model import SchemaModel
@@ -5,7 +5,6 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  import asyncio
8
- import json
9
8
  import threading
10
9
  from collections import deque
11
10
  from collections.abc import (
@@ -17,12 +16,12 @@ from collections.abc import (
17
16
  )
18
17
  from functools import wraps
19
18
  from pathlib import Path
20
- from typing import Any, ClassVar, Generic, Self, TypeVar
19
+ from typing import Any, ClassVar, Generic, TypeVar
21
20
 
22
21
  import pandas as pd
23
22
  from pydantic import Field, field_serializer
24
23
  from pydantic.fields import FieldInfo
25
- from typing_extensions import override
24
+ from typing_extensions import Self, override
26
25
 
27
26
  from lionagi._errors import ItemExistsError, ItemNotFoundError
28
27
  from lionagi.utils import UNDEFINED, is_same_dtype, to_list
@@ -4,9 +4,10 @@
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
- from typing import Any, Generic, Self, TypeVar
7
+ from typing import Any, Generic, TypeVar
8
8
 
9
9
  from pydantic import Field, field_serializer, field_validator
10
+ from typing_extensions import Self
10
11
 
11
12
  from lionagi._errors import ItemNotFoundError
12
13
 
@@ -3,9 +3,10 @@
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  from collections import deque
6
- from typing import Any, Literal, Self
6
+ from typing import Any, Literal
7
7
 
8
8
  from pydantic import Field, model_validator
9
+ from typing_extensions import Self
9
10
 
10
11
  from lionagi._errors import ItemExistsError, RelationError
11
12
  from lionagi.protocols._concepts import Relational
@@ -7,9 +7,10 @@ Defines the `Instruction` class, representing user commands or instructions
7
7
  sent to the system. Supports optional context, images, and schema requests.
8
8
  """
9
9
 
10
- from typing import Any, Literal, override
10
+ from typing import Any, Literal
11
11
 
12
12
  from pydantic import BaseModel, JsonValue, field_serializer
13
+ from typing_extensions import override
13
14
 
14
15
  from lionagi.utils import UNDEFINED, breakdown_pydantic_annotation, copy
15
16
 
@@ -8,10 +8,10 @@ settings that guide the AI's behavior from a privileged role.
8
8
  """
9
9
 
10
10
  from datetime import datetime
11
- from typing import Any, NoReturn, Self
11
+ from typing import Any, NoReturn
12
12
 
13
13
  from pydantic import JsonValue
14
- from typing_extensions import override
14
+ from typing_extensions import Self, override
15
15
 
16
16
  from .base import SenderRecipient
17
17
  from .message import MessageRole, RoledMessage, Template, jinja_env
@@ -4,9 +4,8 @@
4
4
 
5
5
  import asyncio
6
6
  import logging
7
- from typing import Self
8
7
 
9
- from typing_extensions import override
8
+ from typing_extensions import Self, override
10
9
 
11
10
  from lionagi.protocols.generic.processor import Executor, Processor
12
11
 
lionagi/session/branch.py CHANGED
@@ -611,6 +611,24 @@ class Branch(Element, Communicatable, Relational):
611
611
  # Remove placeholders (UNDEFINED) so we don't incorrectly assign them
612
612
  return cls(**{k: v for k, v in params.items() if v is not UNDEFINED})
613
613
 
614
+ def dump_logs(self, clear: bool = True, persist_path=None):
615
+ """
616
+ Dumps the log to a file or clears it.
617
+
618
+ Args:
619
+ clear (bool, optional):
620
+ If `True`, clears the log after dumping.
621
+ persist_path (str, optional):
622
+ The file path to save the log to.
623
+ """
624
+ self._log_manager.dump(clear=clear, persist_path=persist_path)
625
+
626
+ async def adump_logs(self, clear: bool = True, persist_path=None):
627
+ """
628
+ Asynchronously dumps the log to a file or clears it.
629
+ """
630
+ await self._log_manager.adump(clear=clear, persist_path=persist_path)
631
+
614
632
  # -------------------------------------------------------------------------
615
633
  # Asynchronous Operations (chat, parse, operate, etc.)
616
634
  # -------------------------------------------------------------------------
@@ -4,10 +4,10 @@
4
4
 
5
5
  from collections.abc import Callable
6
6
  from functools import partial
7
- from typing import Self
8
7
 
9
8
  import pandas as pd
10
9
  from pydantic import Field, JsonValue, model_validator
10
+ from typing_extensions import Self
11
11
 
12
12
  from lionagi.operatives.types import ActionManager, Tool
13
13
  from lionagi.protocols.mail.exchange import Exchange
lionagi/utils.py CHANGED
@@ -33,7 +33,6 @@ from pathlib import Path
33
33
  from typing import (
34
34
  Any,
35
35
  Literal,
36
- Self,
37
36
  TypedDict,
38
37
  TypeVar,
39
38
  get_args,
@@ -43,6 +42,7 @@ from typing import (
43
42
 
44
43
  from pydantic import BaseModel, model_validator
45
44
  from pydantic_core import PydanticUndefinedType
45
+ from typing_extensions import Self
46
46
 
47
47
  from .settings import Settings
48
48
 
lionagi/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.7.2"
1
+ __version__ = "0.7.4"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lionagi
3
- Version: 0.7.2
4
- Summary: An AGentic Intelligence Operating System.
3
+ Version: 0.7.4
4
+ Summary: An Intelligence Operating System.
5
5
  Author-email: HaiyangLi <quantocean.li@gmail.com>
6
6
  License: Apache License
7
7
  Version 2.0, January 2004
@@ -1,9 +1,10 @@
1
- lionagi/__init__.py,sha256=sBS47lQGuXNAdfSoVLW8szKbCfDWrfAceMMUVYNK3IU,541
1
+ lionagi/__init__.py,sha256=Z_cWmXAAYFrUDQsB9xJR8SqCrc7fKShllJFQd1N11BI,505
2
2
  lionagi/_class_registry.py,sha256=dutMsw-FQNqVV5gGH-NEIv90uBkSr8fERJ_x3swbb-s,3112
3
3
  lionagi/_errors.py,sha256=wNKdnVQvE_CHEstK7htrrj334RA_vbGcIds-3pUiRkc,455
4
+ lionagi/_types.py,sha256=9g7iytvSj3UjZxD-jL06_fxuNfgZyWT3Qnp0XYp1wQU,63
4
5
  lionagi/settings.py,sha256=k9zRJXv57TveyfHO3Vr9VGiKrSwlRUUVKt5zf6v9RU4,1627
5
- lionagi/utils.py,sha256=nwbr9mDOmmLmf5wq4sTZieCbu74GwHcXYrNjFV4-4LQ,73096
6
- lionagi/version.py,sha256=lcrcqfPdVkkAQSUY7-6U3m2gooWLXX_neDSS8dIuHdc,22
6
+ lionagi/utils.py,sha256=X12H-O8Lx9tUOKGtjpoxHjRsKYHRqty0qD9i2W12kpI,73121
7
+ lionagi/version.py,sha256=A6fZ_oURo3l_Fa_K29LgV21A4Onqu3NquwGYzL05E1Y,22
7
8
  lionagi/libs/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
8
9
  lionagi/libs/parse.py,sha256=tpEbmIRGuHhLCJlUlm6fjmqm_Z6XJLAXGNFHNuk422I,1011
9
10
  lionagi/libs/file/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
@@ -55,7 +56,7 @@ lionagi/operations/brainstorm/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh
55
56
  lionagi/operations/brainstorm/brainstorm.py,sha256=88Cq2IBrUs5du9q_8rf_VmhLYBfGKJv4rCeDTcJ07_g,17196
56
57
  lionagi/operations/brainstorm/prompt.py,sha256=f-Eh6pO606dT2TrX9BFv_einRDpYwFi6Gep9Strd1cM,610
57
58
  lionagi/operations/chat/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
58
- lionagi/operations/chat/chat.py,sha256=ug3bFTByNVwa5Rlb1qWY1vf1cCMDpX8sX1tGR6ElYIs,5356
59
+ lionagi/operations/chat/chat.py,sha256=Ji3covyt64EFoBFbvPhxAGl8bGMwRQqmHtb7tY9jP54,5229
59
60
  lionagi/operations/communicate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
61
  lionagi/operations/communicate/communicate.py,sha256=1PzBpzgATcAdBog0EUxtj5_uJGixNV93D4PYR12w_ec,2962
61
62
  lionagi/operations/instruct/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
@@ -76,14 +77,14 @@ lionagi/operations/translate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
76
77
  lionagi/operations/translate/translate.py,sha256=6eBVoQRarGEJ8Tfcl6Z__PLHQTTIbM5MaPVYNeKHRIs,1397
77
78
  lionagi/operatives/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
78
79
  lionagi/operatives/manager.py,sha256=pFGKSOIkXayHfDHCMJJwZXBhx3O02UlYK5mZ_-53AVg,190
79
- lionagi/operatives/operative.py,sha256=WZeg1XHS8iuzs4I3-va9FS9tOWu0XZ7xnOVzHthvEUQ,6724
80
+ lionagi/operatives/operative.py,sha256=Pahhjlav-Y1rCYwUZkWNrw6nIOpR9zrqXwuHTYcbjMc,6734
80
81
  lionagi/operatives/step.py,sha256=DevwisZc2q88ynUiiSu7VBEY2A_G4Q5iRLrVgVLHNJU,9843
81
82
  lionagi/operatives/types.py,sha256=8krpGIeJL2GkO580ePOuAZfGc7vUVPIanemoA77tbVY,1697
82
83
  lionagi/operatives/action/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
83
- lionagi/operatives/action/function_calling.py,sha256=VHUq8qebCAAdaWcPJQCZNI-P6zC_P1kp9o-d7nhZf_0,4602
84
+ lionagi/operatives/action/function_calling.py,sha256=dHWxnWj-YD2PkYoRO_iOI1dryb8tThuPDX1OMI0y8GM,4631
84
85
  lionagi/operatives/action/manager.py,sha256=FXfWhQMSFE5qJNZPpgdz4ePvthLafZfnmak2PImCrsc,8824
85
86
  lionagi/operatives/action/request_response_model.py,sha256=mCyKub_WoEttJ_mqLhGoOoPVBQHOhr7sswy_jN6-620,3378
86
- lionagi/operatives/action/tool.py,sha256=Fl47hS_RXWlkQYLBeRSLQ0iwtb7TaTrfTA0sPCzyi4k,5188
87
+ lionagi/operatives/action/tool.py,sha256=CVCNd154XDxRvinmfO_2y72RsCn3UfZEecY7QG2qIjE,5217
87
88
  lionagi/operatives/action/utils.py,sha256=vUe7Aysuzbg16rAfe2Ttp5QUz5_L6mMedBVAWzGAHwk,4330
88
89
  lionagi/operatives/forms/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
89
90
  lionagi/operatives/forms/base.py,sha256=ALPREgOkRcY2wtRG0JpTXztlohkRjyCiwoleQfGCpSg,7207
@@ -98,10 +99,10 @@ lionagi/operatives/instruct/node.py,sha256=0g7g2jsLO8L8VlD-L1mFmjcFTwWy39moWCDtL
98
99
  lionagi/operatives/instruct/prompts.py,sha256=g16IooxpAJfNvv1jdRe7nLQ28mO9UezRS2SDQE8Lnus,1729
99
100
  lionagi/operatives/instruct/reason.py,sha256=1DYviNf5D_3DH0lnguXYGEyFycYzRjoyLob-BnIpmSA,1679
100
101
  lionagi/operatives/models/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
101
- lionagi/operatives/models/field_model.py,sha256=hksMP7GR-sSWpKTuYXMj35ZWVo18kKcqRSI6KgNzZI4,6054
102
- lionagi/operatives/models/model_params.py,sha256=yElYJ0el2CFykdVlBHhpVG77PO_q6Zq77hbjIx-LZdk,9642
103
- lionagi/operatives/models/note.py,sha256=8TS0Zi0eSo1fmVoqBMWB6ChSrXKb36ozAM70o7P4kTU,9495
104
- lionagi/operatives/models/operable_model.py,sha256=mnTIAXJHJecXjqKNZWSch5w6x3U3Fl_9mUK4RudnM64,15573
102
+ lionagi/operatives/models/field_model.py,sha256=yfRRBbfQ5llPGIt_QkyLrIrmNwNQ14aUXA-llHeER4M,6083
103
+ lionagi/operatives/models/model_params.py,sha256=UnugiT0GDFzB9igYeCvN6pcq01bqTpZuAHom0yCBSdk,9653
104
+ lionagi/operatives/models/note.py,sha256=KUaMf6j1BzbR_r7RCTYoCDagNbfdkIR6vAVyxj6xlmQ,9524
105
+ lionagi/operatives/models/operable_model.py,sha256=Br9vCo_Z3iqqE8Zdfy_n4fqu7xfIovyzzrhm4y99U1g,15573
105
106
  lionagi/operatives/models/schema_model.py,sha256=-BeCwW_1Rle--w-f7MajbOYH7t_8SPWw0_qK0fpTsRg,666
106
107
  lionagi/operatives/strategies/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
107
108
  lionagi/operatives/strategies/base.py,sha256=cfZXUZYPypW-hFZJj7HDtTPc-x99XB6dO_S5os1srTk,1820
@@ -129,12 +130,12 @@ lionagi/protocols/generic/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQp
129
130
  lionagi/protocols/generic/element.py,sha256=6RPUqs3FOdSC65QOwnfBD9yKVsWnmb878kmfas0m928,14169
130
131
  lionagi/protocols/generic/event.py,sha256=SjR9N4Egr5_oqOBSKVsxQjsn6MlqNcwf48bee-qIT6Y,4879
131
132
  lionagi/protocols/generic/log.py,sha256=xi8dRKwxtxVYU8T_E4wYJE4lCQzkERgAUARcAN7ZngI,7441
132
- lionagi/protocols/generic/pile.py,sha256=SsdxIfDaIM1j6S6LuRPCTIJ86bZVeqlKkL_D1TGEQUQ,31446
133
+ lionagi/protocols/generic/pile.py,sha256=Nx4IkWDC5Tdykrw_uGrudgS6Yrz1v1Sykv8t74Deuic,31434
133
134
  lionagi/protocols/generic/processor.py,sha256=4Gkie1DxE0U-uZAdNBTuTibUlyeEGm_OyVlMXilCEm8,10115
134
- lionagi/protocols/generic/progression.py,sha256=3PjIBlPoj7jahy75ERbo9vHKVNU7fFl4be5ETNzphJU,15160
135
+ lionagi/protocols/generic/progression.py,sha256=OAirlukJ34rKRipv8MtG7PvvJRkq8nz-RIYB-Yi39Mo,15189
135
136
  lionagi/protocols/graph/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
136
137
  lionagi/protocols/graph/edge.py,sha256=cEbhqapsdJqHx5VhPwXwOkahfC7E7XZNbRqGixt_EFc,5229
137
- lionagi/protocols/graph/graph.py,sha256=H1kcI2XRY2nIWIx1HLQSQr9ozx0fa6dLHsjT-vgjNv8,10208
138
+ lionagi/protocols/graph/graph.py,sha256=jIhWx-_1PG54IdxmU89LX4mikIMxWJvrUSlxnEjpomk,10237
138
139
  lionagi/protocols/graph/node.py,sha256=DjsMB8CCbPesM45_3PAPPELbIl5Arlty-LDamYW09UI,3781
139
140
  lionagi/protocols/mail/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
140
141
  lionagi/protocols/mail/exchange.py,sha256=fKoaviOGoDGo2-kSg2_mOfRym6ZFtnIo_BTYlre39ZU,7258
@@ -147,10 +148,10 @@ lionagi/protocols/messages/action_request.py,sha256=Nsh6Nm6M1BvBOw3TzI5DvSuwH5ld
147
148
  lionagi/protocols/messages/action_response.py,sha256=v5ykwspVEBXYxgFCIgmhdvk8lR3ycxxQdbjwdVLK_w8,5401
148
149
  lionagi/protocols/messages/assistant_response.py,sha256=rWQsvElcUdF9KHkDLTNg_o-uzNl5DTcK066lszvCI0k,6412
149
150
  lionagi/protocols/messages/base.py,sha256=YcOtj-okN5ldbviPsulIDBAFaGRvqpmt7DTfgLYjpwA,2482
150
- lionagi/protocols/messages/instruction.py,sha256=I5FNvygcilHmfEv6nWdAsg6yAwB0BqXdXbFdfAIYExE,19574
151
+ lionagi/protocols/messages/instruction.py,sha256=tiznMvDAkuGzsUrh5hkCGKPmxOjZLfr8_zC4Rwzj7J4,19603
151
152
  lionagi/protocols/messages/manager.py,sha256=QpOIbQ6zVaBzhh7KkMvXdujB05vJK4waSaos14WwG_Q,17370
152
153
  lionagi/protocols/messages/message.py,sha256=ulTjKK4FSWTLFRbMbg8V8cEveKu_fhFnOaAyuVWCXbo,7864
153
- lionagi/protocols/messages/system.py,sha256=pagv9ClmKAEY81mJ0OQFwzK0znJ1dDTMT8aJ8iAX17I,4799
154
+ lionagi/protocols/messages/system.py,sha256=MX9bR76TbrY3a-d3akocDX3cFSYb9OD6lwP4HqvbFLg,4799
154
155
  lionagi/protocols/messages/templates/README.md,sha256=Ch4JrKSjd85fLitAYO1OhZjNOGKHoEwaKQlcV16jiUI,1286
155
156
  lionagi/protocols/messages/templates/action_request.jinja2,sha256=d6OmxHKyvvNDSK4bnBM3TGSUk_HeE_Q2EtLAQ0ZBEJg,120
156
157
  lionagi/protocols/messages/templates/action_response.jinja2,sha256=Mg0UxmXlIvtP_KPB0GcJxE1TP6lml9BwdPkW1PZxkg8,142
@@ -166,7 +167,7 @@ lionagi/service/endpoints/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQp
166
167
  lionagi/service/endpoints/base.py,sha256=RbBBQIbtNtkP1LT9U3ZrhL35SfmVIpaq-AGW8d538k4,18275
167
168
  lionagi/service/endpoints/chat_completion.py,sha256=9ltSQaKPH43WdEDW32_-f5x07I9hOU8g-T_PAG-nYsQ,2529
168
169
  lionagi/service/endpoints/match_endpoint.py,sha256=n7F9NoTXfUBL29HrDcFLF5AXYR8pcx_IumQ7BiJXC-w,1740
169
- lionagi/service/endpoints/rate_limited_processor.py,sha256=GkWK9XR3XNwn6qKUif6HMeqMJtO1E2Hq_tqGYai_wp8,4681
170
+ lionagi/service/endpoints/rate_limited_processor.py,sha256=umri0FofbyBSFdAQBEsviDB5K6N12LkRiXQgSOorGKg,4663
170
171
  lionagi/service/endpoints/token_calculator.py,sha256=MflqImGUr_1jh465hB7cUAaIPICBkjirvre1fWGXLrA,6161
171
172
  lionagi/service/providers/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
172
173
  lionagi/service/providers/anthropic_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
@@ -180,9 +181,9 @@ lionagi/service/providers/openrouter_/chat_completions.py,sha256=MRf4ZbMCgzNIL4g
180
181
  lionagi/service/providers/perplexity_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
181
182
  lionagi/service/providers/perplexity_/chat_completions.py,sha256=SsDbrtXwQsR4Yu2VMU43KfeS86QWI8UTNhDth5lNWNs,1055
182
183
  lionagi/session/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
183
- lionagi/session/branch.py,sha256=ogCp8ybyrm1bspmtovcvrzUmBh8Nu_Q5RBBu2uYAl6U,58678
184
- lionagi/session/session.py,sha256=A2PCG1BD1noMLtCJD3C_H7r-0GUQ_ru2szOhF1pOCtY,8976
185
- lionagi-0.7.2.dist-info/METADATA,sha256=Nr0nOloMvQhDTeDaFm5E538OuaH566Y_kuleyBbxfvU,22776
186
- lionagi-0.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
187
- lionagi-0.7.2.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
188
- lionagi-0.7.2.dist-info/RECORD,,
184
+ lionagi/session/branch.py,sha256=2KMMl-YVVfbgbz1qtyXpw3SrRZ5yAfoqm44s-gnbjyU,59319
185
+ lionagi/session/session.py,sha256=po6C7PnM0iu_ISHUo4PBzzQ61HFOgcsAUfPoO--eLak,8987
186
+ lionagi-0.7.4.dist-info/METADATA,sha256=dyNJj1KRT_rkMZgwaraOEfPCPd9GdxlLc5DJMaxzJpY,22768
187
+ lionagi-0.7.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
188
+ lionagi-0.7.4.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
189
+ lionagi-0.7.4.dist-info/RECORD,,