Once you’ve created a label set, you can upload labels into Docent.
Copy
Ask AI
from docent.data_models.judge import Label# Create a label for a specific agent runlabel = Label( label_set_id=label_set_id, agent_run_id="your-agent-run-id", label_value={ "label": "match", "explanation": "The agent..." })client.add_label(collection_id="your-collection-id", label=label)