The simplest way to build an agent on Reminix. This template gives you a single prompt handler that accepts user input and returns an AI-generated response.
What's included
- Single prompt handler — processes user messages and returns responses
- Python setup — with the Reminix Python SDK
- Ready to deploy — push to GitHub and Reminix builds automatically
When to use this
Pick the Starter template when you want to:
- Prototype a new idea quickly
- Build a simple Q&A bot or assistant
- Learn the Reminix SDK basics before adding complexity
Project structure
├── src/
│ └── main.py # Agent entry point with prompt handler
├── requirements.txt
└── reminix.config.py # Reminix configuration
Quick start
After deploying, you can interact with your agent via the Reminix API or the built-in playground.
curl -X POST https://api.reminix.com/v1/agents/{agent-id}/run \
-H "Authorization: Bearer $REMINIX_API_KEY" \
-d '{"input": "Hello, agent!"}'