svoid eleu_chatBots_copyQAs(S sourceBotID, S destBotID, long... qaIDs) { virtual Concepts concepts = conceptsOfLoadedProgram_directRef(eleuBot(sourceBotID)); O dest = eleuBot(destBotID); if (concepts == null) fail("Source bot not found: " + sourceBotID); if (dest == null) fail("Dest bot not found: " + destBotID); for (long id : qaIDs) { virtual QA qa = call(concepts, 'getConcept, id); if (qa == null) continue with print("QA not found: " + id); if (shortClassNameNeq QA(qa)) continue with print("Not a QA: " + qa); print("Copying QA: " + id); call(dest, 'importQA, qa); } }