!7 sS input = "the dog barked and ran away"; p { ai_alternativeSmartBot(); try (ParseEnv env = parse_start(input)) { // Make ideas int i = indexOfIC_fullWord(env.input, "and"); if (i >= 0) post("Suggest", "splitting at indices", struct(ll(i, i + l("and")))); // Harvest S idx = random(ai_texts("Suggest", "splitting at indices", "$X")); if (idx != null) { LL indices = safeUnstructureList(idx); print("Split to: " + sfu(splitStringAtIndices(indices))); ret; } print("No split found"); }