π€ Assemble, configure, and deploy autonomous AI Agents in your browser. π€
π Short link Β Β β’Β Β π€ Contribute Β Β β’Β Β π¦ Twitter
AgentGPT allows you to configure and deploy Autonomous AI agents. Name your own custom AI and have it embark on any goal imaginable. It will attempt to reach the goal by thinking of tasks to do, executing them, and learning from the results π.
This platform is currently in beta, we are currently working on:
- Long term memory π§
- Web browsing π
- Interaction with websites and people π¨βπ©βπ¦
More Coming soon...
- β Bootstrapping: create-t3-app.
- β Framework: Nextjs 13 + Typescript.
- β Auth: Next-Auth.js
- β ORM: Prisma.
- β Database: Supabase.
- β Styling: TailwindCSS + HeadlessUI.
- β Typescript Schema Validation: Zod.
- β End-to-end typesafe API: tRPC.
π§ You will need Nodejs +16 (LTS recommended) installed.
- Fork this project:
- Clone the repository:
git clone [email protected]:YOU_USER/AgentGPT.git
- Install dependencies:
npm install
- Create a .env file with the following content:
π§ The environment variables must match the following schema.
# Deployment Environment:
NODE_ENV=development
# Next Auth config:
# Generate a secret with `openssl rand -base64 32`
NEXTAUTH_SECRET=changeme
NEXTAUTH_URL=http://localhost:3000
# Prisma
DATABASE_URL=file:./db.sqlite
# External APIs:
OPENAI_API_KEY=changeme
- Ready π₯³, now run:
# Create database migrations
npx prisma db push
# Run the project:
npm run dev