const axios = require('axios'); async function checkModels() { try { const response = await axios.get('https://gen.pollinations.ai/models'); console.log('Gen Models:', JSON.stringify(response.data, null, 2)); } catch (e) { console.log('Could not fetch gen models'); } } checkModels();