import { Evaluator, Templates } from "@future-agi/ai-evaluation";
const evaluator = new Evaluator();
const result = await evaluator.evaluate(
"eval_ranking",
{
input: "What is the solar system?",
context: [
"The solar system consists of the Sun and celestial objects bound to it",
"Our solar system formed 4.6 billion years ago"
]
},
{
modelName: "turing_flash"
}
);
console.log(result);