UNPKG

modelmix

Version:

🧬 ModelMix - Unified API for Diverse AI LLM.

17 lines (13 loc) • 582 B
import 'dotenv/config' import { ModelMix } from '../index.js'; await ModelMix.new().gpt41nano() .addImageFromUrl('https://pbs.twimg.com/media/F6-GsjraAAADDGy?format=jpg') .addText('describe') .stream((data) => { console.log(data.message); }); await ModelMix.new().haiku35() .addImageFromUrl('https://pbs.twimg.com/media/F6-GsjraAAADDGy?format=jpg') .addText('describe') .stream((data) => { console.log(data.message); }); await ModelMix.new().sonar() .addText('Who is the president of salvador?') .stream((data) => { console.log(data.message); });