Is their some way to add the document name to the gui display that prodigy is currently looking it.
to be more specific, I have a directory with txt files, I want to stream in the txt files and display the txt files names in the meta data?
Prodigy will display whatever is in the "meta"
dict of a task in the bottom right corner of the annotation card. So you can stream in data that looks like this:
{"text": "This is a text", {"meta": {"filename": "filename.txt"}}}
That should be pretty straightforward to generate from your directory of text files. You can also include other meta info about the files and data.
yep it works thank you