AI LegionLLM 支持的自主代理平台
AI Legion 是一个可以共同完成任务的自主代理框架。
设置
至少需要 Node 10。
npm install
将项目根目录下的 .env.template 文件重命名为 .env 并将您的 Open AI 密钥添加进去:
OPENAI_API_KEY=... # obtain from https://platform.openai.com/account/api-keys
# the following are needed for the agent to be able to search the web:
GOOGLE_SEARCH_ENGINE_ID=... # create a custom search engine at https://cse.google.com/cse/all
GOOGLE_API_KEY=... # obtain from https://console.cloud.google.com/apis/credentials
还需要为您的 Google Cloud 帐户启用 Google 自定义搜索 API,例如
https://console.cloud.google.com/apis/library/customsearch.googleapis.com
运行
启动程序:
npm run start [# of agents] [gpt-3.5-turbo|gpt-4]
通过控制台与代理交互,键入的任何内容都将作为消息发送给当前的所有代理。
评论