reworkd / AgentGPT
- среда, 12 апреля 2023 г. в 00:14:13
🤖 Assemble, configure, and deploy autonomous AI Agents in your browser.
Join us in fueling the development of AgentGPT, an open-source project pushing the boundaries of AI autonomy! We're facing challenges in covering the operational costs
By sponsoring this free, open-source project, you not only have the opportunity to have your avatar/logo featured below, but also get the exclusive chance to chat with the founders!
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:
More Coming soon...
🚧 You will need Nodejs +16 (LTS recommended) installed.
git clone git@github.com:YOU_USER/AgentGPT.git
npm install
🚧 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
# Create database migrations
npx prisma db push
# Run the project:
npm run dev