lionagi 0.7.1__py3-none-any.whl → 0.7.3__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/operations/_act/act.py +10 -3
- lionagi/operations/chat/chat.py +1 -6
- lionagi/operatives/action/function_calling.py +2 -1
- lionagi/operatives/action/tool.py +2 -1
- lionagi/operatives/models/field_model.py +2 -1
- lionagi/operatives/models/model_params.py +1 -1
- lionagi/operatives/models/note.py +2 -1
- lionagi/operatives/models/operable_model.py +2 -2
- lionagi/operatives/operative.py +1 -2
- lionagi/protocols/generic/pile.py +2 -3
- lionagi/protocols/generic/progression.py +2 -1
- lionagi/protocols/graph/graph.py +2 -1
- lionagi/protocols/messages/instruction.py +2 -1
- lionagi/protocols/messages/system.py +2 -2
- lionagi/service/endpoints/rate_limited_processor.py +1 -2
- lionagi/session/session.py +1 -1
- lionagi/utils.py +1 -1
- lionagi/version.py +1 -1
- {lionagi-0.7.1.dist-info → lionagi-0.7.3.dist-info}/METADATA +1 -1
- {lionagi-0.7.1.dist-info → lionagi-0.7.3.dist-info}/RECORD +22 -22
- {lionagi-0.7.1.dist-info → lionagi-0.7.3.dist-info}/WHEEL +0 -0
- {lionagi-0.7.1.dist-info → lionagi-0.7.3.dist-info}/licenses/LICENSE +0 -0
lionagi/operations/_act/act.py
CHANGED
@@ -7,9 +7,10 @@ from typing import TYPE_CHECKING
|
|
7
7
|
|
8
8
|
from pydantic import BaseModel
|
9
9
|
|
10
|
-
from lionagi.protocols.types import
|
10
|
+
from lionagi.protocols.types import Log
|
11
11
|
|
12
12
|
if TYPE_CHECKING:
|
13
|
+
from lionagi.operatives.types import ActionResponseModel
|
13
14
|
from lionagi.session.branch import Branch
|
14
15
|
|
15
16
|
|
@@ -17,7 +18,7 @@ async def _act(
|
|
17
18
|
branch: "Branch",
|
18
19
|
action_request: BaseModel | dict,
|
19
20
|
suppress_errors: bool = False,
|
20
|
-
) ->
|
21
|
+
) -> "ActionResponseModel":
|
21
22
|
|
22
23
|
_request = {}
|
23
24
|
|
@@ -35,7 +36,13 @@ async def _act(
|
|
35
36
|
try:
|
36
37
|
func_call = await branch._action_manager.invoke(_request)
|
37
38
|
except Exception as e:
|
38
|
-
|
39
|
+
content = {
|
40
|
+
"error": str(e),
|
41
|
+
"function": _request.get("function"),
|
42
|
+
"arguments": _request.get("arguments"),
|
43
|
+
"branch": str(branch.id),
|
44
|
+
}
|
45
|
+
branch._log_manager.log(Log(content=content))
|
39
46
|
if suppress_errors:
|
40
47
|
logging.error(
|
41
48
|
f"Error invoking action '{_request['function']}': {e}"
|
lionagi/operations/chat/chat.py
CHANGED
@@ -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 =
|
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
|
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,
|
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
|
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
|
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,
|
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
|
|
lionagi/operatives/operative.py
CHANGED
@@ -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,
|
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,
|
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
|
|
lionagi/protocols/graph/graph.py
CHANGED
@@ -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
|
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
|
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
|
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
|
lionagi/session/session.py
CHANGED
@@ -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.
|
1
|
+
__version__ = "0.7.3"
|
@@ -2,8 +2,8 @@ lionagi/__init__.py,sha256=sBS47lQGuXNAdfSoVLW8szKbCfDWrfAceMMUVYNK3IU,541
|
|
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
4
|
lionagi/settings.py,sha256=k9zRJXv57TveyfHO3Vr9VGiKrSwlRUUVKt5zf6v9RU4,1627
|
5
|
-
lionagi/utils.py,sha256=
|
6
|
-
lionagi/version.py,sha256=
|
5
|
+
lionagi/utils.py,sha256=X12H-O8Lx9tUOKGtjpoxHjRsKYHRqty0qD9i2W12kpI,73121
|
6
|
+
lionagi/version.py,sha256=G0rwkDLSytonr7idr8ma7KaTUnRCn3-Ripum70RSeh0,22
|
7
7
|
lionagi/libs/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
8
8
|
lionagi/libs/parse.py,sha256=tpEbmIRGuHhLCJlUlm6fjmqm_Z6XJLAXGNFHNuk422I,1011
|
9
9
|
lionagi/libs/file/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
@@ -50,12 +50,12 @@ lionagi/operations/ReAct/ReAct.py,sha256=ICQROuVqYhUMUyzXao7oTewp8YZsdk-jI9Bn5eJ
|
|
50
50
|
lionagi/operations/ReAct/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
51
51
|
lionagi/operations/ReAct/utils.py,sha256=0OhZhoc8QsTsMFo2Jmys1mgpnMwHsldKuLVSbev9uZM,994
|
52
52
|
lionagi/operations/_act/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
53
|
-
lionagi/operations/_act/act.py,sha256=
|
53
|
+
lionagi/operations/_act/act.py,sha256=HBp-sNwNigLDNkuEZqGU_98UCaJXPZsaokkFAXwOMn0,2454
|
54
54
|
lionagi/operations/brainstorm/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
55
55
|
lionagi/operations/brainstorm/brainstorm.py,sha256=88Cq2IBrUs5du9q_8rf_VmhLYBfGKJv4rCeDTcJ07_g,17196
|
56
56
|
lionagi/operations/brainstorm/prompt.py,sha256=f-Eh6pO606dT2TrX9BFv_einRDpYwFi6Gep9Strd1cM,610
|
57
57
|
lionagi/operations/chat/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
58
|
-
lionagi/operations/chat/chat.py,sha256=
|
58
|
+
lionagi/operations/chat/chat.py,sha256=Ji3covyt64EFoBFbvPhxAGl8bGMwRQqmHtb7tY9jP54,5229
|
59
59
|
lionagi/operations/communicate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
60
|
lionagi/operations/communicate/communicate.py,sha256=1PzBpzgATcAdBog0EUxtj5_uJGixNV93D4PYR12w_ec,2962
|
61
61
|
lionagi/operations/instruct/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
@@ -76,14 +76,14 @@ lionagi/operations/translate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
76
76
|
lionagi/operations/translate/translate.py,sha256=6eBVoQRarGEJ8Tfcl6Z__PLHQTTIbM5MaPVYNeKHRIs,1397
|
77
77
|
lionagi/operatives/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
78
78
|
lionagi/operatives/manager.py,sha256=pFGKSOIkXayHfDHCMJJwZXBhx3O02UlYK5mZ_-53AVg,190
|
79
|
-
lionagi/operatives/operative.py,sha256=
|
79
|
+
lionagi/operatives/operative.py,sha256=Pahhjlav-Y1rCYwUZkWNrw6nIOpR9zrqXwuHTYcbjMc,6734
|
80
80
|
lionagi/operatives/step.py,sha256=DevwisZc2q88ynUiiSu7VBEY2A_G4Q5iRLrVgVLHNJU,9843
|
81
81
|
lionagi/operatives/types.py,sha256=8krpGIeJL2GkO580ePOuAZfGc7vUVPIanemoA77tbVY,1697
|
82
82
|
lionagi/operatives/action/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
83
|
-
lionagi/operatives/action/function_calling.py,sha256=
|
83
|
+
lionagi/operatives/action/function_calling.py,sha256=dHWxnWj-YD2PkYoRO_iOI1dryb8tThuPDX1OMI0y8GM,4631
|
84
84
|
lionagi/operatives/action/manager.py,sha256=FXfWhQMSFE5qJNZPpgdz4ePvthLafZfnmak2PImCrsc,8824
|
85
85
|
lionagi/operatives/action/request_response_model.py,sha256=mCyKub_WoEttJ_mqLhGoOoPVBQHOhr7sswy_jN6-620,3378
|
86
|
-
lionagi/operatives/action/tool.py,sha256=
|
86
|
+
lionagi/operatives/action/tool.py,sha256=CVCNd154XDxRvinmfO_2y72RsCn3UfZEecY7QG2qIjE,5217
|
87
87
|
lionagi/operatives/action/utils.py,sha256=vUe7Aysuzbg16rAfe2Ttp5QUz5_L6mMedBVAWzGAHwk,4330
|
88
88
|
lionagi/operatives/forms/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
89
89
|
lionagi/operatives/forms/base.py,sha256=ALPREgOkRcY2wtRG0JpTXztlohkRjyCiwoleQfGCpSg,7207
|
@@ -98,10 +98,10 @@ lionagi/operatives/instruct/node.py,sha256=0g7g2jsLO8L8VlD-L1mFmjcFTwWy39moWCDtL
|
|
98
98
|
lionagi/operatives/instruct/prompts.py,sha256=g16IooxpAJfNvv1jdRe7nLQ28mO9UezRS2SDQE8Lnus,1729
|
99
99
|
lionagi/operatives/instruct/reason.py,sha256=1DYviNf5D_3DH0lnguXYGEyFycYzRjoyLob-BnIpmSA,1679
|
100
100
|
lionagi/operatives/models/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
101
|
-
lionagi/operatives/models/field_model.py,sha256=
|
102
|
-
lionagi/operatives/models/model_params.py,sha256=
|
103
|
-
lionagi/operatives/models/note.py,sha256=
|
104
|
-
lionagi/operatives/models/operable_model.py,sha256=
|
101
|
+
lionagi/operatives/models/field_model.py,sha256=yfRRBbfQ5llPGIt_QkyLrIrmNwNQ14aUXA-llHeER4M,6083
|
102
|
+
lionagi/operatives/models/model_params.py,sha256=UnugiT0GDFzB9igYeCvN6pcq01bqTpZuAHom0yCBSdk,9653
|
103
|
+
lionagi/operatives/models/note.py,sha256=KUaMf6j1BzbR_r7RCTYoCDagNbfdkIR6vAVyxj6xlmQ,9524
|
104
|
+
lionagi/operatives/models/operable_model.py,sha256=Br9vCo_Z3iqqE8Zdfy_n4fqu7xfIovyzzrhm4y99U1g,15573
|
105
105
|
lionagi/operatives/models/schema_model.py,sha256=-BeCwW_1Rle--w-f7MajbOYH7t_8SPWw0_qK0fpTsRg,666
|
106
106
|
lionagi/operatives/strategies/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
107
107
|
lionagi/operatives/strategies/base.py,sha256=cfZXUZYPypW-hFZJj7HDtTPc-x99XB6dO_S5os1srTk,1820
|
@@ -129,12 +129,12 @@ lionagi/protocols/generic/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQp
|
|
129
129
|
lionagi/protocols/generic/element.py,sha256=6RPUqs3FOdSC65QOwnfBD9yKVsWnmb878kmfas0m928,14169
|
130
130
|
lionagi/protocols/generic/event.py,sha256=SjR9N4Egr5_oqOBSKVsxQjsn6MlqNcwf48bee-qIT6Y,4879
|
131
131
|
lionagi/protocols/generic/log.py,sha256=xi8dRKwxtxVYU8T_E4wYJE4lCQzkERgAUARcAN7ZngI,7441
|
132
|
-
lionagi/protocols/generic/pile.py,sha256=
|
132
|
+
lionagi/protocols/generic/pile.py,sha256=Nx4IkWDC5Tdykrw_uGrudgS6Yrz1v1Sykv8t74Deuic,31434
|
133
133
|
lionagi/protocols/generic/processor.py,sha256=4Gkie1DxE0U-uZAdNBTuTibUlyeEGm_OyVlMXilCEm8,10115
|
134
|
-
lionagi/protocols/generic/progression.py,sha256=
|
134
|
+
lionagi/protocols/generic/progression.py,sha256=OAirlukJ34rKRipv8MtG7PvvJRkq8nz-RIYB-Yi39Mo,15189
|
135
135
|
lionagi/protocols/graph/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
136
136
|
lionagi/protocols/graph/edge.py,sha256=cEbhqapsdJqHx5VhPwXwOkahfC7E7XZNbRqGixt_EFc,5229
|
137
|
-
lionagi/protocols/graph/graph.py,sha256=
|
137
|
+
lionagi/protocols/graph/graph.py,sha256=jIhWx-_1PG54IdxmU89LX4mikIMxWJvrUSlxnEjpomk,10237
|
138
138
|
lionagi/protocols/graph/node.py,sha256=DjsMB8CCbPesM45_3PAPPELbIl5Arlty-LDamYW09UI,3781
|
139
139
|
lionagi/protocols/mail/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
140
140
|
lionagi/protocols/mail/exchange.py,sha256=fKoaviOGoDGo2-kSg2_mOfRym6ZFtnIo_BTYlre39ZU,7258
|
@@ -147,10 +147,10 @@ lionagi/protocols/messages/action_request.py,sha256=Nsh6Nm6M1BvBOw3TzI5DvSuwH5ld
|
|
147
147
|
lionagi/protocols/messages/action_response.py,sha256=v5ykwspVEBXYxgFCIgmhdvk8lR3ycxxQdbjwdVLK_w8,5401
|
148
148
|
lionagi/protocols/messages/assistant_response.py,sha256=rWQsvElcUdF9KHkDLTNg_o-uzNl5DTcK066lszvCI0k,6412
|
149
149
|
lionagi/protocols/messages/base.py,sha256=YcOtj-okN5ldbviPsulIDBAFaGRvqpmt7DTfgLYjpwA,2482
|
150
|
-
lionagi/protocols/messages/instruction.py,sha256=
|
150
|
+
lionagi/protocols/messages/instruction.py,sha256=tiznMvDAkuGzsUrh5hkCGKPmxOjZLfr8_zC4Rwzj7J4,19603
|
151
151
|
lionagi/protocols/messages/manager.py,sha256=QpOIbQ6zVaBzhh7KkMvXdujB05vJK4waSaos14WwG_Q,17370
|
152
152
|
lionagi/protocols/messages/message.py,sha256=ulTjKK4FSWTLFRbMbg8V8cEveKu_fhFnOaAyuVWCXbo,7864
|
153
|
-
lionagi/protocols/messages/system.py,sha256=
|
153
|
+
lionagi/protocols/messages/system.py,sha256=MX9bR76TbrY3a-d3akocDX3cFSYb9OD6lwP4HqvbFLg,4799
|
154
154
|
lionagi/protocols/messages/templates/README.md,sha256=Ch4JrKSjd85fLitAYO1OhZjNOGKHoEwaKQlcV16jiUI,1286
|
155
155
|
lionagi/protocols/messages/templates/action_request.jinja2,sha256=d6OmxHKyvvNDSK4bnBM3TGSUk_HeE_Q2EtLAQ0ZBEJg,120
|
156
156
|
lionagi/protocols/messages/templates/action_response.jinja2,sha256=Mg0UxmXlIvtP_KPB0GcJxE1TP6lml9BwdPkW1PZxkg8,142
|
@@ -166,7 +166,7 @@ lionagi/service/endpoints/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQp
|
|
166
166
|
lionagi/service/endpoints/base.py,sha256=RbBBQIbtNtkP1LT9U3ZrhL35SfmVIpaq-AGW8d538k4,18275
|
167
167
|
lionagi/service/endpoints/chat_completion.py,sha256=9ltSQaKPH43WdEDW32_-f5x07I9hOU8g-T_PAG-nYsQ,2529
|
168
168
|
lionagi/service/endpoints/match_endpoint.py,sha256=n7F9NoTXfUBL29HrDcFLF5AXYR8pcx_IumQ7BiJXC-w,1740
|
169
|
-
lionagi/service/endpoints/rate_limited_processor.py,sha256=
|
169
|
+
lionagi/service/endpoints/rate_limited_processor.py,sha256=umri0FofbyBSFdAQBEsviDB5K6N12LkRiXQgSOorGKg,4663
|
170
170
|
lionagi/service/endpoints/token_calculator.py,sha256=MflqImGUr_1jh465hB7cUAaIPICBkjirvre1fWGXLrA,6161
|
171
171
|
lionagi/service/providers/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
172
172
|
lionagi/service/providers/anthropic_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
@@ -181,8 +181,8 @@ lionagi/service/providers/perplexity_/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZK
|
|
181
181
|
lionagi/service/providers/perplexity_/chat_completions.py,sha256=SsDbrtXwQsR4Yu2VMU43KfeS86QWI8UTNhDth5lNWNs,1055
|
182
182
|
lionagi/session/__init__.py,sha256=v8vNyJVIVj8_Oz9RJdVe6ZKUQMYTgDh1VQpnr1KdLaw,112
|
183
183
|
lionagi/session/branch.py,sha256=ogCp8ybyrm1bspmtovcvrzUmBh8Nu_Q5RBBu2uYAl6U,58678
|
184
|
-
lionagi/session/session.py,sha256=
|
185
|
-
lionagi-0.7.
|
186
|
-
lionagi-0.7.
|
187
|
-
lionagi-0.7.
|
188
|
-
lionagi-0.7.
|
184
|
+
lionagi/session/session.py,sha256=po6C7PnM0iu_ISHUo4PBzzQ61HFOgcsAUfPoO--eLak,8987
|
185
|
+
lionagi-0.7.3.dist-info/METADATA,sha256=DRvNYxsLZQBHfGy4niyl48KxbI7eB7z2YbhabbtJRD0,22776
|
186
|
+
lionagi-0.7.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
187
|
+
lionagi-0.7.3.dist-info/licenses/LICENSE,sha256=VXFWsdoN5AAknBCgFqQNgPWYx7OPp-PFEP961zGdOjc,11288
|
188
|
+
lionagi-0.7.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|