Debug agentops attribute error in trace #1214
Draft
+49
−92
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📥 Pull Request
📘 Description
Updated AgentOps documentation examples to reflect current SDK API usage, specifically:
agentops.trace(...)
used as a context manager withagentops.start_trace(...)
to resolveAttributeError
.agentops.start_session()
/agentops.end_session()
patterns toagentops.start_trace()
context managers.@agentops.trace
decorator import and usage.default_tags
at init andtags
instart_trace
.These changes ensure documentation accurately guides users on AgentOps tracing and session management.
🧪 Testing
The changes are documentation updates to align with the current AgentOps SDK API. The fix for the
AttributeError
was derived from understanding the SDK's intended usage ofagentops.trace
(decorator) vs.agentops.start_trace
(context manager). The updated examples reflect the correct and tested patterns for AgentOps integration.