This repo now runs as a private Creator Studio platform (no public marketplace, no credits, no review workflow).
- Authenticated users create and manage private AI agents.
- Creator Studio supports RAG file uploads, web search, and optional code execution.
- Admins manage LLM provider configs and platform settings.
db(Postgres) onlocalhost:5435backend(FastAPI) onlocalhost:8001frontend(Vite) onlocalhost:3000
redis has been removed from the default stack.
docker compose up -d --remove-orphans
docker compose psOpen:
- Frontend:
http://localhost:3000 - Backend docs:
http://localhost:8001/docs
cd D:\Axeecom\Agent365\backend\agentgrid-backend
python -m venv venv
.\venv\Scripts\activate
pip install -e .
$env:PYTHONPATH="."
$env:DATABASE_URL="postgresql://postgres:postgres@localhost:5435/agent365"
.\venv\Scripts\python.exe -m alembic upgrade head
.\venv\Scripts\python.exe -m uvicorn app.main:app --host 0.0.0.0 --port 8001 --reloadcd D:\Axeecom\Agent365\frontend
npm installCreate frontend/.env:
VITE_API_URL=http://localhost:8001/api/v1Run:
npm run dev- Set
OPENAI_API_KEYfor AI features. - Postgres database name is
agent365in the default compose setup. - Code execution is optional and should use Docker in non-local environments (
CODE_EXECUTION_REQUIRE_DOCKER=true).
Seed data creates:
- 1 admin account (configurable via
ADMIN_EMAIL/ADMIN_PASSWORD) - 1 demo creator account (configurable via
DEMO_CREATOR_EMAIL/DEMO_CREATOR_PASSWORD)
Check backend/agentgrid-backend/seed_agents.py for current defaults.
GET http://localhost:8001/api/v1/healthreturns200.GET http://localhost:8001/api/v1/agents/returns404(removed marketplace endpoint).GET http://localhost:8001/creator-studio/api/agentsreturns401without auth.- Log in and land on
/studio.
- FEATURES.md - Complete feature guide including Agent Sharing, API reference, and troubleshooting
- GETTING_STARTED.md - Initial setup and installation
- ARCHITECTURE_DIAGRAM.md - System architecture overview
- IMPROVEMENTS.md - Platform improvements and enhancements
- COLLABORATOR_GUIDE.md - Team collaboration guide