const { getLlmRegistry, initLlmRegistry } = require('/data/ai/audio/server/dist/services/llm/provider.registry'); initLlmRegistry(); const reg = getLlmRegistry(); const list = reg.listEnabled(); console.log('NODES:', list.length); for (const n of list) { console.log(' -', n.provider.vendor, '| name=', n.provider.name, '| apiKey-end=', (n.provider._apiKey || '').slice(-12), '| hasModel(MiniMax-M2.7)=', n.provider.hasModel('MiniMax-M2.7')); }