Spaces:
Sleeping
Sleeping
File size: 323 Bytes
7408a5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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();
|