1// qwenService.js - Node.js service for Qwen via llama.cpp
2// Now uses llama.cpp HTTP API instead of Ollama
3const { callLlama } = require('./llamaCppService');
5// Backward compatibility wrapper
12async function callQwen(text, type = "rewrite", model = "qwen2.5:0.5b") {
13 return await callLlama(text, type, { model });
16module.exports = { callQwen };