准备步骤
可以到AgentGPT官网体验下。
官网地址:https://agentgpt.reworkd.ai/zh
GitHub:https://github.com/reworkd/AgentGPT
API Key:https://platform.openai.com/account/api-keys
然后就是在本地部署AgentGpt,输入自己的API Key,就可以使用了,不过免费送的key,4月1日已经过期了,可惜体验不了AgentGpt了。要不,得开通ChatGPT plus ,然后再使用API Key?
API key 过期
下面就是怎么在Ubuntu系统环境下部署AgentGpt
1、git克隆项目到Ubuntu
git clone https://github.com/reworkd/AgentGPT.git
2、安装依赖项
cd AgentGPT
npm install
3、创建.env,并配置相关配置项
# Deployment Environment:
NODE_ENV=development
# Next Auth config:
# Generate a secret with `openssl rand -base64 32`
NEXTAUTH_SECRET=changeme
NEXTAUTH_URL=http://localhost:3000
DATABASE_URL=file:./db.sqlite
# Your open api key
OPENAI_API_KEY=changeme
4、可以sqlite
./prisma/useSqlite.sh
5、运行AgentGpt
npx prisma db push
npm run dev
# 后台运行
nohup npm run dev &
6、浏览器输入http://127.0.0.1:3000
本作品采用知识共享署名-相同方式共享 4.0 国际许可协议进行许可。
暂无评论
要发表评论,您必须先 登录