lite-agent 0.14.0__py3-none-any.whl → 0.14.1__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.
Potentially problematic release.
This version of lite-agent might be problematic. Click here for more details.
lite_agent/context.py
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import TYPE_CHECKING, Generic, TypeVar
|
|
5
|
+
from typing import TYPE_CHECKING, Any, Generic, TypeVar
|
|
6
6
|
|
|
7
7
|
from pydantic import BaseModel
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
10
|
from lite_agent.types import NewMessage
|
|
11
|
+
else:
|
|
12
|
+
# Runtime: use Any to avoid circular import issues
|
|
13
|
+
NewMessage = Any
|
|
11
14
|
|
|
12
15
|
T = TypeVar("T")
|
|
13
16
|
|
|
@@ -3,7 +3,7 @@ lite_agent/agent.py,sha256=gMn-NeQxl0298uKmlJph_c9WP3QN8WeKMEEDuv5RdVw,18681
|
|
|
3
3
|
lite_agent/chat_display.py,sha256=bSJvYmrhc6xdSTyF8Tg3wiydnl4aL9R30QfkijDx8O8,47390
|
|
4
4
|
lite_agent/client.py,sha256=-9BXLhAp3bGJsdKJ02lLpPJeHQKyHKQwhebZ6WCYh_k,9988
|
|
5
5
|
lite_agent/constants.py,sha256=_xIDdQwaJrWk8N_62o-KYEo3jj1waPJ0ZOd3hHybKNo,718
|
|
6
|
-
lite_agent/context.py,sha256=
|
|
6
|
+
lite_agent/context.py,sha256=Igh6SCtcynzg95jWRUp2ljQp_TmirRwTSRneMpNzzpo,1392
|
|
7
7
|
lite_agent/loggers.py,sha256=XkNkdqwD_nQGfhQJ-bBWT7koci_mMkNw3aBpyMhOICw,57
|
|
8
8
|
lite_agent/message_transfers.py,sha256=N9ViK7Gxqqa1sd3V_hkNuQ9fUipg7M95l-sVBBG2Id4,5357
|
|
9
9
|
lite_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,6 +30,6 @@ lite_agent/utils/message_builder.py,sha256=J-yycL9pXSO9MbgC5NEGqvoP1LC2Nxe9r2YRW
|
|
|
30
30
|
lite_agent/utils/message_converter.py,sha256=5HmNncTl71TD2M_6Ezz1Tnfavzna8DQYb4-D47Du7mA,9165
|
|
31
31
|
lite_agent/utils/message_state_manager.py,sha256=rFUyqyd_7NdJRtyqsAWGcfwrDIlD6gK2dBDSDx1eGBs,5766
|
|
32
32
|
lite_agent/utils/metrics.py,sha256=RzOEhCWxbLmmIEkzaxOJ6tAdthI8dv2Foc98Lq8afOQ,1915
|
|
33
|
-
lite_agent-0.14.
|
|
34
|
-
lite_agent-0.14.
|
|
35
|
-
lite_agent-0.14.
|
|
33
|
+
lite_agent-0.14.1.dist-info/METADATA,sha256=qrYXCtrk3T5Q6er8RVUmBe33RHFULkTKMj8dBndMDD8,3538
|
|
34
|
+
lite_agent-0.14.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
35
|
+
lite_agent-0.14.1.dist-info/RECORD,,
|
|
File without changes
|