njbbaer / dialogue-director

Make ChatGPT talk to itself

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dialogue Director

This project is in rapid development and subject to change.

Dialogue Director is a Python-based application that facilitates conversations between multiple ChatGPT agents. The goal of this project is to create engaging multi-agent dialogue using a structured configuration file to define the agents, their prompts, and other parameters.

Usage

  1. Install dependencies:
pip install -r requirements.txt
  1. Run tests:
python -m unittest
  1. Run the application:
python dialogue_director.py example.yml
  • Where example.yml is the path to a configuration file.

Configuration

The configuration file format is subject to change.

Dialoge Director is configured with a YAML file which defines the properties of the conversation.

parameters:
  ...
agents:
  ...
messages:
  ...

See example.yml for a full example.

Parameters

The parameters section defines model parameters that will be passed to GPT. See the OpenAI documentation for a full list.

parameters:
  model: "gpt-3.5-turbo"  # Default
  temperature: 1.0        # Default

Agents

The agents section defines the dialogue agents and their prompts. The key is the agent's name, and the value is a sub-dictionary of prompts.

  • prompt specifies the system prompt that is used to generate the agent's response.
agents:
  ALICE:
    prompt: |-
      You are Alice and are having a conversation with Bob.
  BOB:
    prompt: |-
      You are Bob and are having a conversation with Alice.

Messages

The messages section defines the initial set of messages to start the dialogue. The key is the agent's name, and the value is the message it sent.

messages:
  - ALICE: |-
      Hello Bob, how are you?
  - BOB: |-
      I'm well Alice, thanks for asking. How are you?

About

Make ChatGPT talk to itself

License:MIT License


Languages

Language:Python 100.0%