docs: add Rewind to ecosystem integrations#2869
Closed
risjai wants to merge 1 commit intoopenai:mainfrom
Closed
Conversation
3e7f7c6 to
b555ae0
Compare
Rewind is a time-travel debugger for AI agents — it records every LLM call and tool execution via a TracingProcessor, then lets you fork timelines, replay from failure (cached steps + live re-execution), and diff the results. Integration: `pip install rewind-agent[agents]` + `rewind_agent.init()` auto-registers the tracing processor. Zero config needed. Docs: https://github.com/agentoptics/rewind/blob/master/docs/openai-agents-sdk.md
b555ae0 to
9d5b57e
Compare
Member
|
Thanks for sharing this. However, the page lists only the integrations that support tracing interface and your one does not have the functionality. If you build something with tracing, please feel free to create a new PR. |
Author
|
Thanks for the feedback! We've updated our integration to properly implement the tracing interface:
from agents.tracing import add_trace_processor
from rewind_agent.openai_agents import RewindTracingProcessor
from rewind_agent.store import Store
store = Store()
session_id, timeline_id = store.create_session("my-agent")
processor = RewindTracingProcessor(store, session_id, timeline_id)
add_trace_processor(processor)Maps Updated integration docs: https://github.com/agentoptics/rewind/blob/master/docs/openai-agents-sdk.md Published on PyPI: |
This comment was marked as off-topic.
This comment was marked as off-topic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Adds Rewind to the ecosystem integrations list in the tracing documentation.
What is Rewind?
Rewind is a time-travel debugger for AI agents. It records every LLM call, tool execution, and handoff — then lets you:
rewind assertin CIIntegration
Zero config — auto-registers a
TracingProcessorviaadd_trace_processor():Install:
pip install rewind-agent[agents]Links