Synthetic Nodal Intelligence

An attempt to create a different kind of machine learning model. Hecho en Puerto Rico por Radamés J. Valentín Reyes. Co engineered with Copilot, Gemini and Deepseek.

Train the model

If you run the function with the same input but different output the new output will also be stored.

teach(
  databaseEntry: englishDatabaseEntry,
  input: "What is a dog?",
  output: "A dog is a domesticated mammal, often kept as a pet or working animal.",
);

Test your model

try{
  List<String> inquireResponse = inquire(
    databaseEntry: englishDatabaseEntry, 
    input: "What is a c",
  );
  print(inquireResponse);
}catch(error){
  print(error);
}

Find the UUID of the node with the responses

String? objectUUID = findResponseNodeUUID(
  databaseEntry: englishDatabaseEntry, 
  input: "What is a phone?",
);