File name on Prodigy UI

Hi,
Is it possible to add the examples file name in the prodigy UI for manual annotation?

Thanks

Hi! The "meta" field in the tasks lets you include custom meta information that's displayed in the bottom right corner of the annotation card. So you could stream in data that looks like this:

{"text": "This is some text...", "meta": {"filename": "some_file.jsonl"}}

You could also use the same logic to display internal IDs etc.

That worked as well. Thank you :smile: