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 +6 -6
- lionagi/_types.py +2 -0
- 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/branch.py +18 -0
- lionagi/session/session.py +1 -1
- lionagi/utils.py +1 -1
- lionagi/version.py +1 -1
- {lionagi-0.7.2.dist-info → lionagi-0.7.4.dist-info}/METADATA +2 -2
- {lionagi-0.7.2.dist-info → lionagi-0.7.4.dist-info}/RECORD +24 -23
- {lionagi-0.7.2.dist-info → lionagi-0.7.4.dist-info}/WHEEL +0 -0
- {lionagi-0.7.2.dist-info → lionagi-0.7.4.dist-info}/licenses/LICENSE +0 -0
lionagi/__init__.py
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
#
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
4
4
|
|
5
|
-
from
|
6
|
-
from
|
7
|
-
from
|
8
|
-
from
|
9
|
-
from
|
10
|
-
from
|
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
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/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
|
# -------------------------------------------------------------------------
|
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.4"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: lionagi
|
3
|
-
Version: 0.7.
|
4
|
-
Summary: An
|
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=
|
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=
|
6
|
-
lionagi/version.py,sha256=
|
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=
|
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=
|
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=
|
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=
|
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=
|
102
|
-
lionagi/operatives/models/model_params.py,sha256=
|
103
|
-
lionagi/operatives/models/note.py,sha256=
|
104
|
-
lionagi/operatives/models/operable_model.py,sha256=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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=
|
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/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,,
|
File without changes
|
File without changes
|