Spaces:
Sleeping
Sleeping
| const axios = require('axios'); | |
| async function checkImageModels() { | |
| try { | |
| const response = await axios.get('https://image.pollinations.ai/models'); | |
| console.log('Image Models:', response.data); | |
| } catch (e) { | |
| console.log('Error checking image models:', e.message); | |
| } | |
| } | |
| checkImageModels(); | |