Hi everyone,
I’m trying to upload a dataset to LangSmith via the UI to evaluate a Named Entity Recognition (NER) model, but I consistently run into the same error: "you should specify at least an input key".
I have followed the documentation and tried several JSONL formats without success. My latest attempt uses a nested structure with both inputs and outputs, which seems correct for an NER task, but it still fails.
Here is a sample line from my .jsonl file:
{“inputs”: {“text”: “PODER JUDICIÁRIO JUSTIÇA DO TRABALHO Araújo Ltda. - Casa Grande Exmº. Senhor Desembargador Presidente, venho perante V. Exª requerer: […]”}, “outputs”: {“entities”: [{“text”: “Araújo Ltda. - Casa Grande”, “label”: “Organização”}, {“text”: “Diego Canto Melo”, “label”: “Pessoa”}, {“text”: “11/05/2023”, “label”: “Data”}, {“text”: “VARA DO TRABALHO DE JOÃO PESSOA”, “label”: “Organização”}]}}