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
Legacy approach using `agentops.start_session(default_tags=["development", "testing", "claude-3"])` is deprecated and will be removed in v4.0. Use `agentops.start_trace()` instead.
31
+
</Note>
32
+
29
33
## Tag Use Cases
30
34
31
35
Tags can be used for various purposes:
@@ -35,39 +39,39 @@ Tags can be used for various purposes:
35
39
Tag sessions based on their environment:
36
40
37
41
```python
38
-
tags=["production"] # or ["development", "staging", "testing"]
42
+
default_tags=["production"] # or ["development", "staging", "testing"]
39
43
```
40
44
41
45
### Feature Tracking
42
46
43
47
Tag sessions related to specific features or components:
0 commit comments