Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 706 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 706 Bytes

Reproducing Results: Multi-Agent Coonsensus Seeking via Large Language Models

Reproducing the results of Westlake Intelligent Robotics' Consensus LLM Paper

Prerequisites

  • Make sure you have Python installed
  • This project has a few dependencies, install them with pip install -r requirements.txt
  • You'll also need one or more valid OpenAI API keys. When you have them in hand, create a file titled secrets.yml and add them in the following format:
    api_keys:
        0: "sk-YourFirstAPIKeyHere"
        1: "sk-YourSecondAPIKeyHere"
        2: "sk-YourThirdAPIKeyHere"