Data & Session Management

Gain complete control over your workspace lifecycle. Seamlessly export your current session logs for deep external analysis, or import existing datasets to instantly restore previous system states and configurations without data loss.

Export Data

Download your current workspace state.

Import Session

Replace current session with new data.

Importing will clear all existing session data
Click to upload file
Supports .json or .csv

Format Specification

Schema reference for imported files.

Advanced ImportFull system state with strict metric & candidate requirements.
strict_backup.json
{
  "instances": {
    "question": {
      "question": "What is the primary function of the mitochondria?"
    },
    "answers": [
      {
        "answer": "Cellular respiration"
      }
    ],
    "hints": [
      {
        "hint": "It is found in animal cells but not typically in chloroplasts.",
        "metrics": [
          {
            "name": "relevance",
            "value": 0.4
          },
          {
            "name": "readability",
            "value": 1
          },
          {
            "name": "answer-leakage",
            "value": 0
          },
          {
            "name": "familiarity",
            "value": 0.9
          },
          {
            "name": "convergence",
            "value": 0.33,
            "metadata": {
              "scores": {
                "Cellular respiration": 1,
                "Photosynthesis": 0,
                "Protein synthesis": 1
              }
            }
          }
        ],
        "entities": [
          {
            "text": "chloroplasts",
            "type": "BIO",
            "start": 35,
            "end": 47
          }
        ]
      }
    ],
    "candidates_full": [
      {
        "text": "Cellular respiration",
        "is_groundtruth": true,
        "is_eliminated": false
      },
      {
        "text": "Photosynthesis",
        "is_groundtruth": false,
        "is_eliminated": true
      },
      {
        "text": "Protein synthesis",
        "is_groundtruth": false,
        "is_eliminated": true
      }
    ]
  }
}

Strict Validation Rules

  • Structure: Must use instances key containing question data directly.
  • Metrics: Each hint requires exactly 5 metrics: relevance, readability, answer-leakage, familiarity, convergence.
  • Convergence: The convergence metric must include a metadata.scores object.
  • Candidates: Minimum 2 candidates. Exactly one must have "is_groundtruth": true.