Replay experiment PoC: local server + replay-case annotation (stock-watchlist-agent) - #81
Draft
ebrevan wants to merge 1 commit into
Draft
Replay experiment PoC: local server + replay-case annotation (stock-watchlist-agent)#81ebrevan wants to merge 1 commit into
ebrevan wants to merge 1 commit into
Conversation
test-apps/stock-watchlist-agent: - replay_poc.py: local Flask server (:8787) that runs a production trace's case as an LLM Obs Experiment against the current local code. - orchestrator.py: record the replay case (metadata.replay_input + metadata.replay_output) on the root span every run, so traces are replayable. Pairs with web-ui #328867 (the Replay trace button). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Throwaway PoC for the Replay experiments feature — pairs with DataDog/web-ui#328867 (the "Replay trace" button). Two changes under
test-apps/stock-watchlist-agent:replay_poc.py— a local Flask server (http://localhost:8787) the Replay button calls. It turns a production trace's case into a one-record LLM Obs Dataset and runs an LLM Obs Experiment whose task re-runs the current local agent code, scored by the app's evaluators, and returns the experiment URL.src/agents/orchestrator.py— records the replay case (metadata.replay_input+metadata.replay_output) on the root span on every run, so any production trace is replayable.Run the local server (to test the Replay button)
Notes:
.venv/bin/python3.12explicitly — repopythonmay resolve to an older version.Once instrumented, every future trace will be replayable
Produce a replayable trace
python -m src.main AAPL GOOGL NVDA # one run → a trace carrying replay_input/replay_outputAfter this you can continue with the steps on the FE PR.