pollinations-bot / check_models.js
Antigravity
Update models and features
7408a5f
raw
history blame contribute delete
323 Bytes
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();