You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -42,6 +44,10 @@ class Message(dict, metaclass=DictSyncMeta):
42
44
LMP=Union[OneTurn, MultiTurnLMP, ChatLMP]
43
45
InvocableLM=Callable[..., _lstr_generic]
44
46
47
+
fromdatetimeimporttimezone
48
+
fromsqlmodelimportField
49
+
fromtypingimportOptional
50
+
45
51
46
52
defutc_now() ->datetime:
47
53
"""
@@ -62,6 +68,16 @@ class SerializedLMPUses(SQLModel, table=True):
62
68
lmp_using_id: Optional[str] =Field(default=None, foreign_key="serializedlmp.lmp_id", primary_key=True, index=True) # ID of the LMP that is using the other LMP
0 commit comments