async function get_ner_val_data()

in src/js/MLSuggest_inference.js [46:55]


  async function get_ner_val_data() {
    const response = await fetch(NER_VAL_DATA);
    if (!response.ok) {
      throw new Error(`Failed to fetch data: ${response.statusText}`);
    }
  
    // Parse the JSON response
    const data = await response.json();
    return data.queries;
  }