Skip to content

Conversation

@atucker
Copy link

@atucker atucker commented Jun 28, 2025

Adds tables to the run overview tab.
Screenshot 2025-06-28 at 10 51 47 AM

Still needs a bit of work, and I should do a run-through to clean things up because mostly Claude wrote it, but I just wanted to double-check if this would be hard to do.

To log a table, log an artifact ending with csv
run.log_artifact("test.csv", name="table.csv")

Relevant code to log this table

with open("test.csv", "w") as f:
    f.write("Column 1, Column 2, Column 3\n")
    f.write("1, 2, 3\n")
    f.write("1, 4, 9\n")
    
run.set_artifacts_uri("file:///Users/aaron/far/aim_demo/artifacts")
run.log_artifact("test.csv", name="table.csv")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants