π€ Assemble, configure, and deploy autonomous AI Agents in your browser. π€
π Short link Β Β β’Β Β π€ Contribute
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 π¨βπ©βπ¦
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.
# Next Auth Secrets
NODE_ENV=production
NEXTAUTH_SECRET=
NEXTAUTH_URL=http://localhost:3000
# Next Auth config:
NEXTAUTH_SECRET=
NEXTAUTH_URL=
# Database URLs:
DATABASE_URL=
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
- Ready π₯³, now run:
# Create database migrations
npx prisma db push
# Run the project:
npm run dev