# Alexa AI Server 🤖🎙️
This is a Node.js Express server that powers an Alexa skill using AI.
## Features
- REST API endpoint for Alexa
- Uses free AI model (Groq / OpenAI-compatible)
- Secure via environment variables
- Works with ngrok or public HTTPS
## Run locally
npm install
node server.mjs
Server runs at:
http://localhost:3000
API
POST /ask
{
"question": "What is artificial intelligence?"
}
Response:
{
"answer": "AI is the ability of machines to think like humans..."
}
Author
Santhanuss 🚀
---