feat(llmobs): add experiment result export and pull from backend#16585
Draft
FouadWahabi wants to merge 1 commit intomainfrom
Draft
feat(llmobs): add experiment result export and pull from backend#16585FouadWahabi wants to merge 1 commit intomainfrom
FouadWahabi wants to merge 1 commit intomainfrom
Conversation
Codeowners resolved as |
Add experiment_result_as_dataframe() and experiment_result_to_csv() for exporting results. Store last result on Experiment.result property. Add LLMObs.pull_experiment_results() to fetch results from backend. Add experiment_get_events() to LLMObsExperimentsClient for paginated event fetching.
094ca79 to
fc8b6bb
Compare
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.
Summary
experiment_result_as_dataframe()andexperiment_result_to_csv()for exporting results.resultpropertyLLMObs.pull_experiment_results(experiment_id)to fetch results from backend viaGET /api/v2/llm-obs/v3/experiments/{id}/eventsExperimentResultformatTest plan
experiment_result_as_dataframe()produces correct DataFrame columnsexperiment_result_to_csv()writes valid CSV.resultproperty returns last run resultpull_experiment_results()fetches and parses backend response correctly