We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cebfa05 commit d29ced6Copy full SHA for d29ced6
agentops/legacy/__init__.py
@@ -87,6 +87,9 @@ def end_session(session: Session) -> None:
87
from agentops.sdk.decorators.utility import _finalize_span
88
_finalize_span(session.span, session.token)
89
90
+def end_all_sessions():
91
+ pass
92
+
93
94
def ToolEvent(*args, **kwargs) -> None:
95
"""
@@ -119,11 +122,16 @@ def LLMEvent(*args, **kwargs) -> None:
119
122
120
123
return None
121
124
125
+def track_agent(*args, **kwargs):
126
+ """@deprecated"""
127
128
129
__all__ = [
130
"start_session",
131
"end_session",
132
"ToolEvent",
133
"ErrorEvent",
134
"ActionEvent",
135
+ "track_agent",
136
+ "end_all_sessions"
137
]
0 commit comments