Generative agents 编译运行

部署比较简单,参考 github 的说明做就可以。下面做简要说明。

〇. 准备

  1. python 环境安装,建议版本 3.9.12。推荐使用 conda 安装环境
ini 复制代码
conda create -n genagent python=3.9.12 pip
conda activate genagent
  1. 申请 openai 的 api-key

platform.openai.com/settings/or...

  1. 下载代码

git clone https://github.com/joonspk-research/generative_agents.git

网络问题可以试试:gitclone.com/github.com/...

  1. 创建配置文件,在 reverie/backend_server目录下创建 utils.py,内容如下:
ini 复制代码
# 替换你的 api-key 
openai_api_key = "<Your OpenAI API>"
# Put your name
key_owner = "<Name>"

maze_assets_loc = "../../environment/frontend_server/static_dirs/assets"
env_matrix = f"{maze_assets_loc}/the_ville/matrix"
env_visuals = f"{maze_assets_loc}/the_ville/visuals"

fs_storage = "../../environment/frontend_server/storage"
fs_temp_storage = "../../environment/frontend_server/temp_storage"

collision_block_id = "32125"

# Verbose 
debug = True
  1. 安装依赖库,代码根目录执行 pip install -r requirements.txt

一. 启动

  1. 启动 environment 服务,系统是一个 Django 服务,默认端口是 8000,需要检查系统不要占用。
bash 复制代码
cd environment/frontend_server
python manage.py runserver

启动完成后,打开浏览器访问 http://localhost:8000,看到 Your environment server is up and running表示启动成功了。

  1. 启动 simulation 服务
bash 复制代码
cd reverie/backend_server
python reverie.py
# 启动完成后控制台会显示,Enter the name of the forked simulation: 
# 输入下面的脚本表示启动 3 个人物角色,有很多个模板,后面看代码的时候再解释。
base_the_ville_isabella_maria_klaus
# 接下来会显示 "Enter the name of the new simulation: "
# 随便输入一个名字就好
test-simulation
# 然后控制台会显示如下信息。
Enter option:
  1. 运行和保存 Simulation

浏览器打开 http://localhost:8000/simulator_home,就可以看到一个小镇的地图了,下面有 3 个角色列表。地图可以用键盘方向键移动。到现在所有的环境都已经准备好了,下面就可以开始模拟多 agnent 互动了。

在刚才的控制台 Enter option:中输入命令:

bash 复制代码
# 100,表示运行 100 步,每步 10s
run 100
# 开始运行后,地图上的 agent 就会开始移动了,结束后控制台又会显示
Enter option:
# 还有两个命令
# 不保存退出
exit
# 保存退出,保存的 simulation 下次启动时可以继续加载,比如我们这次创建的 simulation 叫 test-simulation
fin		
  1. 重放之前保存的 simulation

直接在浏览器打开 http://localhost:8000/replay/<simulation-name>/<starting-time-step>

  1. 演示 simulation

上面的重放的 simulation 文件包含了调试信息等内容,没有做压缩,如果要做演示,可以提前压缩文件。执行 reverie\compress_sim_storage.py的 compress 函数可以压缩文件,用于后续演示。

用浏览器访问呢 http://localhost:8000/demo/<simulation-name>/<starting-time-step>/<simulation-speed>打开演示文件

二. FAQ

  1. 没办法直接访问 openai 怎么办?
    如果没有 openai 访问条件,可以直接运行源代码中提供的 simulation 运行,查看效果。
  2. 有演示环境吗?
    25个角色的演示版本地址:https://reverie.herokuapp.com/arXiv_Demo/
相关推荐
语落心生20 分钟前
阿里开源AgentScope多智能体框架解析系列(六)第6章:工具系统(Tool & Toolkit)
agent
m0_726965983 小时前
RAG源代码笔记JAVA-高级RAG
笔记·ai·agent·rag
AI大模型6 小时前
免费自学 AI?这 10 个 GitHub 宝藏项目就够了!建议收藏
langchain·llm·agent
AlanHou9 小时前
AI 智能体从入门到进阶再到落地完整教程
人工智能·agent
wumingxiaoyao10 小时前
AI - Agent 到底怎么“接模型”?怎么认证?公司网关/本地模型怎么接?
agent·gemini·litellm·adk·ai model
致Great11 小时前
使用 GRPO 和 OpenEnv 微调小型语言模型实现浏览器控制
数据库·人工智能·深度学习·语言模型·自然语言处理·agent·智能体
gentle coder11 小时前
【Prompt】 提示词工程(持续更新中~)
ai·prompt·agent·提示词工程·#广告顾问
ㄣ知冷煖★1 天前
【Google系列】AI智能体技术白皮书
人工智能·agent
语落心生1 天前
阿里开源AgentScope多智能体框架解析系列(十)第10章:中断机制
agent