environmental preparation
安装GraphAgent需要以下步骤:首先确保系统已安装Python 3.9(推荐使用conda管理环境)。通过conda create --name LLMGraph python=3.9
创建专用虚拟环境。
具体流程
- Get Code: Use
git clone https://github.com/Ji-Cather/GraphAgent.git
Download Project - Installation of dependencies:需单独安装AgentScope库并锁定1c993f9版本;然后执行
pip install -r requirements.txt
- API Configuration: Modification
default_model_configs.json
文件,添加OpenAI或VLLM的API密钥 - Data preparation:下载官方提供的示例数据集(包含推文、电影评分等)
caveat
建议使用16GB以上内存设备,大规模图生成需要高性能硬件支持。首次运行前务必验证API密钥有效性,否则无法调用LLM服务。
This answer comes from the articleGAG: Generating a Social Relationship Graph Using a Large Model to Simulate Human BehaviorThe