Free API access to AI language models for students and developers in developing countries. Seamlessly integrate with multiple LLMs through a unified, OpenAI-compatible interface.
A hosted version is available at ai.minoa.cat
- Free access - no credit card required
- OpenAI-compatible API endpoints
- Access to multiple model providers
- Automatic failover between providers
- Real-time health monitoring
- Privacy-focused with no data collection
- Clone the repository:
git clone https://github.com/m1noa/Sylph
cd Sylph
- Install dependencies:
npm install
- Configure environment:
cp .env.example .env
# Edit .env with your configuration
- Start the server:
# Development
npm run dev
# Production
npm start
The server will start on port 3000 by default. You can change this in your .env file.
Basic example:
curl https://ai.minoa.cat/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "hackclub/llama-3.3-70b-versatile",
"messages": [{"role": "user", "content": "Hello!"}]
}'
For full documentation and available models, visit:
Contributions are greatly appreciated! To contribute:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
Please ensure your code follows the existing style and includes appropriate tests.
If you find Sylph helpful, consider:
- Supporting the project at ai.minoa.cat/donate
- Sharing with others who might benefit
- Contributing code improvements
MIT License - See LICENSE for details.