A no-code platform for creating config-driven AI business agents, powered by Gemini.
cd backend
python -m venv venv
venv\Scripts\activate # Windows
pip install -r requirements.txt
cp .env.example .env # Add your GEMINI_API_KEY
uvicorn main:app --reloadBackend runs at http://localhost:8000. API docs at http://localhost:8000/docs.
cd frontend
npm install # Already done by create-next-app
npm run devFrontend runs at http://localhost:3000.
| Type | Description | Knowledge |
|---|---|---|
support_qa |
Customer support Q&A agent | RAG over uploaded docs |
social_marketing |
Social media content generator | Business context in prompt |
One runtime, two templates.
Every agent = DB row + JSON config + optional files.
agent_type selects prompt template + knowledge strategy.
No code is generated per agent.
Agent-squared/
├── backend/ FastAPI + SQLite + Gemini services
│ ├── routers/ API endpoints
│ ├── services/ Gemini spec gen, chat, extraction, RAG
│ ├── templates/ Agent type configurations
│ └── db/ SQLAlchemy models
└── frontend/ Next.js App Router
└── src/app/ Pages: /, /build, /success, /a/[slug]