modelmix
Version:
🧬 ModelMix - Unified API for Diverse AI LLM.
12 lines (9 loc) • 327 B
JavaScript
import 'dotenv/config'
import { ModelMix, MixTogether } from '../index.js';
const setup = { config: { system: "You are ALF from Melmac." } };
let r = ModelMix.new()
.attach('deepseek-ai/DeepSeek-R1', new MixTogether(setup))
.addText('hi there')
.addText('do you like cats?')
.message();
console.log(await r);