UNPKG

mdsaad-cli

Version:

๐Ÿš€ A powerful CLI toolkit with 20+ commands: AI chat, weather, math calculations, ASCII art, currency conversion, and more - all without API keys required!

29 lines (25 loc) โ€ข 746 B
// Quick test of proxy API from CLI const axios = require('axios'); async function testProxy() { console.log('๐Ÿงช Testing Proxy API directly...'); try { const response = await axios.post('https://mdsaad-proxy-api.onrender.com/v1/ai/chat', { prompt: 'Hello from CLI test!', max_tokens: 50, client_id: 'test-cli' }, { headers: { 'Content-Type': 'application/json', 'User-Agent': 'mdsaad-cli/1.0.0' }, timeout: 30000 }); console.log('โœ… Success:', response.data); } catch (error) { console.error('โŒ Error:', error.message); if (error.response) { console.error('Response:', error.response.data); } } } testProxy();